8 unstable releases (3 breaking)

0.4.0-alpha Dec 13, 2023
0.3.2 Nov 10, 2023
0.3.1 Oct 22, 2023
0.3.0 Jun 26, 2023
0.1.0 Nov 1, 2021

#25 in Biology

Download history 3/week @ 2024-02-23 2/week @ 2024-03-01 171/week @ 2024-03-08 19/week @ 2024-03-15 7/week @ 2024-03-29

168 downloads per month

MIT license

345KB
8K SLoC

SigAlign

A Similarity-Guided Alignment Algorithm

License Crates.io docs.rs docs PyPI DOI

What is SigAlign?

SigAlign is a library for biological sequence alignment. Its output is defined explicitly and simply based on:

  1. Minimum Length (MinL): Alignments must exceed this threshold.
  2. Maximum Penalty per Length (MaxP): Alignments must not exceed this penalty, calculated using a gap-affine scoring scheme which includes penalties for mismatch, gap-open, and gap-extend.

Purpose

  • SigAlign is designed for:
    1. Rapidly Identifying Highly Similar Alignments: Quickly pinpoints alignments above defined cutoffs: MinL and MaxP.
    2. Simplified Parameters: Hides technical detail, focusing on parameters with biological semantics.
    3. Easy Customization: Offers a small number of easy-to-understand parameters, adaptable for various applications.
  • SigAlign is not intended for:
    1. Global Optimum Finding: Does not exclusively aim for the highest scoring alignments, particularly in cases of low similarity.
    2. Specialized Applications: Not pre-optimized for specific tasks such as read mapping or clustering.

Quick Start

For Rust developer

  • As a Rust library, SigAlign can take advantage of the most abundant features in Rust. SigAlign is a package registered in crate.io and can be added using cargo in the project directory: cargo add sigalign
  • Example for Quick Scratch
use sigalign::{Aligner, Reference};

// (1) Build `Reference`
let fasta =
br#">target_1
ACACAGATCGCAAACTCACAATTGTATTTCTTTGCCACCTGGGCATATACTTTTTGCGCCCCCTCATTTA
>target_2
TCTGGGGCCATTGTATTTCTTTGCCAGCTGGGGCATATACTTTTTCCGCCCCCTCATTTACGCTCATCAC"#;
let reference = Reference::from_fasta(&fasta[..]).unwrap();

// (2) Make `Aligner`
let mut aligner = Aligner::new(
    4,    // mismatch penalty
    6,    // gap-open penalty
    2,    // gap-extend penalty
    50,   // minimum length
    0.2,  // maximum penalty per length
    true, // is local alignment (false for semi-global alignment)
    None, // maximum number of alignments per query (None for unlimited)
).unwrap();

// (3) Align query to reference
let query = b"CAAACTCACAATTGTATTTCTTTGCCAGCTGGGCATATACTTTTTCCGCCCCCTCATTTAACTTCTTGGA";
let result = aligner.align_query(&reference, query);
println!("{:#?}", result);

For Python developer

  • If you're a Python developer, you can make use of the Python bindings for SigAlign. You can use the pip the python package manager to install the package: pip install sigalign
  • Here is a quick start example:
from sigalign import Reference, Aligner

# (1) Construct `Reference`
reference = Reference.from_fasta_file("./YOUR_REFERENCE.fa")

# (2) Initialize `Aligner`
aligner = Aligner(4, 6, 2, 50, 0.2)

# (3) Execute Alignment
query = "CAAACTCACAATTGTATTTCTTTGCCAGCTGGGCATATACTTTTTCCGCCCCCTCATTTAACTTCTTGGA"
results = aligner.align_query(reference, query)

# (4) Display Results
for target_result in results:
    print(f"# Target index: {target_result.index}")
    for idx, alignment in enumerate(target_result.alignments):
        print(f"  - Result: {idx+1}")
        print(f"    - Penalty: {alignment.penalty}")
        print(f"    - Length: {alignment.length}")
        print(f"    - Query position: {alignment.query_position}")
        print(f"    - Target position: {alignment.target_position}")
  • For a detailed guide on how to use SigAlign in Python including a more comprehensive tutorial, please refer to the sigalign-py subdirectory README.

For Web developer

  • SigAlign offers a WebAssembly (WASM) build, opening up the potential for web-based applications. While it is not currently available through package managers such as npm, plans for web support are in the pipeline.
  • An exemplary WASM implementation can be found within the example directory. Below is a TypeScript example showcasing SigAlign's application via this WASM wrapper:
import init, { Reference, Aligner, type AlignmentResult } from '../wasm/sigalign_demo_wasm';

async function run() {
    await init();

    // (1) Construct `Reference`
    const fasta: string = `>target_1
ACACAGATCGCAAACTCACAATTGTATTTCTTTGCCACCTGGGCATATACTTTTTGCGCCCCCTCATTTA
>target_2
TCTGGGGCCATTGTATTTCTTTGCCAGCTGGGGCATATACTTTTTCCGCCCCCTCATTTACGCTCATCAC`;
    
    const reference: Reference = await Reference.build(fasta);
    
    // (2) Initialize `Aligner`
    const aligner: Aligner = new Aligner(
        4,    // Mismatch penalty
        6,    // Gap-open penalty
        2,    // Gap-extend penalty
        50,   // Minimum aligned length
        0.2,  // Maximum penalty per length
    );

    // (3) Execute Alignment
    const query: string = "CAAACTCACAATTGTATTTCTTTGCCAGCTGGGCATATACTTTTTCCGCCCCCTCATTTAACTTCTTGGA";
    const result: AlignmentResult = await aligner.alignment(query, reference);

    // (4) Parse and Display Results
    const parsedJsonObj = JSON.parse(result.to_json());
    console.log(parsedJsonObj);
}

run();
  • To gain further insight into web-based implementation of SigAlign, visit the SigAlign tour page. This page utilizes the WASM wrapper exemplified above.

License

SigAlign is released under the MIT License. Please refer to the LICENSE file in the repository for the full text.

Citation

SigAlign is detailed in our academic paper, which is currently under the publication process. Once published, the complete citation information will be provided here.

Dependencies

~19MB
~335K SLoC