39 breaking releases

new 0.40.0 May 8, 2024
0.38.0 Mar 28, 2024
0.35.0 Dec 14, 2023
0.34.0 Nov 14, 2023
0.3.0 Jul 30, 2021

#1299 in Parser implementations

Download history 705/week @ 2024-01-22 503/week @ 2024-01-29 708/week @ 2024-02-05 499/week @ 2024-02-12 385/week @ 2024-02-19 908/week @ 2024-02-26 709/week @ 2024-03-04 911/week @ 2024-03-11 561/week @ 2024-03-18 610/week @ 2024-03-25 632/week @ 2024-04-01 586/week @ 2024-04-08 769/week @ 2024-04-15 650/week @ 2024-04-22 553/week @ 2024-04-29 422/week @ 2024-05-06

2,426 downloads per month
Used in 34 crates (6 directly)

MIT license

360KB
8K SLoC

noodles

crates.io Docs.rs CI status

noodles attempts to provide correct implementations of libraries for handling various bioinformatics file formats. It currently supports BAM 1.6, BCF 2.2, BED, BGZF, CRAM 3.0/3.1, CSI, FASTA, FASTQ, GFF3, GTF 2.2, htsget 1.3, refget 2.0, SAM 1.6, tabix, and VCF 4.3/4.4.

Usage

noodles is published on crates.io. Early versions can be used in projects, but keep in mind that the API is still considered experimental.

noodles is split into multiple crates by file format. For convenience, a top-level meta crate named noodles can be added to your project's dependency list; and formats, listed as features. For example, to work with the BAM format, add the noodles crate and enable the bam feature.

cargo add noodles --features bam

Each enabled feature can then be imported by its re-exported name, e.g.,

use noodles::bam;

Feature flags

Individual crates may have optional features that can be enabled using feature flags.

  • async: Enables asynchronous I/O with Tokio. (BAM, BCF, BGZF, CRAM, CSI, FASTA, FASTQ, SAM, tabix, and VCF)
  • libdeflate: Use libdeflate to encode and decode DEFLATE streams. (BGZF and CRAM)

Examples

Each crate may have its own examples directory, and all examples are runnable as an application. After cloning the repository, run cargo run --release --example for a list of available examples. Use the example name as the option argument and append program arguments to the command, e.g.,

cargo run --release --example bam_write > sample.bam
cargo run --release --example bam_read_header sample.bam

lib.rs:

noodles-tabix handles the reading and writing of the tabix format.

A tabix (TBI) is an index file typically used to allow random access of an accompanied file that is

  1. bgzipped,
  2. tab-delimited,
  3. grouped by reference sequence name, and
  4. coordinate sorted by start position.

It can be used to find relevant records for a given genomic region.

Examples

Read a tabix file

use noodles_tabix as tabix;
let index = tabix::read("sample.vcf.gz.tbi")?;

Dependencies

~2.2–4MB
~70K SLoC