[][src]Crate multi_seq_align

stability-experimental

A crate to manipulate multiple sequences alignments in Rust.

Instead of storing aligned sequences as multiple strings, multi_seq_align stores bases or residues in Alignment using a list of characters, like a matrix. This allows easy access to specific rows and columns of the alignment.

Usage

let mut kappa_casein_fragments_alignment = Alignment::with_sequences(
    &[
        b"PAPISKWQSMP".to_vec(),
        b"HAQIPQRQYLP".to_vec(),
        b"PAQILQWQVLS".to_vec(),
    ],
)?;

// Let's extract a column of this alignment
assert_eq!(
    kappa_casein_fragments_alignment.nth_position(6).unwrap(),
    [&b'W', &b'R', &b'W']
);

// But we also have the aligned sequence for the Platypus
// Let's add it to the original alignment
kappa_casein_fragments_alignment.add(
    b"EHQRP--YVLP".to_vec(),
)?;

// the new aligned sequence has a gap at the 6th position
assert_eq!(
    kappa_casein_fragments_alignment.nth_position(6).unwrap(),
    [&b'W', &b'R', &b'W', &b'-']
);

// We can also loop over each position of the alignment
for aas in kappa_casein_fragments_alignment.iter_positions() {
    println!("{:?}", aas);
    assert_eq!(aas.len(), 4); // 4 sequences
}

Here I instancied an alignment using u8, but Alignment works on generics like numbers, custom or third-party structs.

Features

  • Create Alignment from one or multiple aligned sequences at once (see add() and with_sequences()).
  • Extract columns of the alignment (see iter_positions() and iter_sequences(). This crate is currently in early stage development. I wouldn't recommend using it in production but I am interested in possible ideas to further the developemt of this project. Quite some work needs toi be done to improve the API and make it easy to use in other project.

Ideas

  • Computation of conservation scores
  • Identification of conserved sites
  • Computation of consensus sequence
  • Collapse / trim alignment
  • Serialisation / Deserialisation of alignment files
  • Extract sub-alignments
    • positions
    • motifs

Optimisation

My goal is to reduce the footprint of this crate, there is ome work to do to achieve it. The code will eventually be optimised to be faster and to better use memory.

Structs

Alignment

An alignment of DNA or amino acids sequences