48 breaking releases

0.49.0 Feb 6, 2025
0.47.0 Jan 19, 2025
0.46.0 Dec 12, 2024
0.45.0 Oct 22, 2024
0.2.0 Jul 30, 2021

#1033 in Parser implementations

Download history 933/week @ 2024-10-25 785/week @ 2024-11-01 702/week @ 2024-11-08 577/week @ 2024-11-15 887/week @ 2024-11-22 803/week @ 2024-11-29 1045/week @ 2024-12-06 1063/week @ 2024-12-13 600/week @ 2024-12-20 337/week @ 2024-12-27 1242/week @ 2025-01-03 1521/week @ 2025-01-10 1827/week @ 2025-01-17 1883/week @ 2025-01-24 2664/week @ 2025-01-31 3271/week @ 2025-02-07

9,953 downloads per month
Used in 62 crates (6 directly)

MIT license

265KB
6K SLoC

noodles-fasta handles and reading and writing of the FASTA format.

FASTA is a text format with no formal specification and only has de facto rules. It typically consists of a list of records, each with a definition on the first line and a sequence in the following lines.

The definition starts with a > (greater than) character, and directly after it is the reference sequence name. Optionally, whitespace may be used a delimiter for an extra description or metadata of the sequence. For example,

 reference sequence name
 | |
>sq0 LN:13
     |   |
     description

The sequence is effectively a byte array of characters representing a base. It is typically hard wrapped at an arbitrary width. For example, the following makes up the sequence ACGTNACTGG.

ACGT
NACT
GG

Examples

Read all records in a FASTA file

use noodles_fasta as fasta;

let mut reader = File::open("reference.fa")
    .map(BufReader::new)
    .map(fasta::io::Reader::new)?;

for result in reader.records() {
    let record = result?;
    // ...
}

Dependencies

~1.4–7.5MB
~50K SLoC