#bam #bioinformatics #sequencing #htslib #pileup

rust-htslib

This library provides HTSlib bindings and a high level Rust API for reading and writing BAM files

60 releases (breaking)

0.46.0 Feb 22, 2024
0.44.1 Jun 21, 2023
0.42.0 Mar 30, 2023
0.40.2 Oct 13, 2022
0.3.1 Mar 23, 2015

#11 in Biology

Download history 451/week @ 2024-01-03 761/week @ 2024-01-10 808/week @ 2024-01-17 639/week @ 2024-01-24 762/week @ 2024-01-31 721/week @ 2024-02-07 841/week @ 2024-02-14 857/week @ 2024-02-21 930/week @ 2024-02-28 865/week @ 2024-03-06 890/week @ 2024-03-13 861/week @ 2024-03-20 885/week @ 2024-03-27 978/week @ 2024-04-03 669/week @ 2024-04-10 653/week @ 2024-04-17

3,329 downloads per month
Used in fewer than 39 crates

MIT license

790KB
18K SLoC

Crates.io Crates.io Crates.io docs.rs GitHub Workflow Status Coverage Status

HTSlib bindings for Rust

This library provides HTSlib bindings and a high level Rust API for reading and writing BAM files.

To clone this repository, issue

$ git clone --recursive https://github.com/rust-bio/rust-htslib.git

ensuring that the HTSlib submodule is fetched, too. If you only want to use the library, there is no need to clone the repository. Go on to the Usage section in this case.

Requirements

rust-htslib comes with pre-built bindings to htslib for Mac and Linux. You will need a C toolchain compatible with the cc crate. The build script for this crate will automatically build a link htslib.

Usage

Add this to your Cargo.toml:

[dependencies]
rust-htslib = "*"

By default rust-htslib links to bzip2-sys and lzma-sys for full CRAM support. If you do not need CRAM support, or you do need to support CRAM files with these compression methods, you can deactivate these features to reduce you dependency count:

[dependencies]
rust-htslib = { version = "*", default-features = false }

rust-htslib has optional support for serde, to allow (de)serialization of bam::Record via any serde-supported format.

Http access to files is available with the curl feature.

Beta-level S3 and Google Cloud Storge support is available with the s3 and gcs features.

rust-htslib can optionally use bindgen to generate bindings to htslib. This can slow down the build substantially. Enabling the bindgen feature will cause hts-sys to use a create a binding file for your architecture. Pre-built bindings are supplied for Mac and Linux. The bindgen feature on Windows is untested - please file a bug if you need help.

[dependencies]
rust-htslib = { version = "*", features = ["serde_feature"] }

For more information, please see the docs.

Alternatives

There's noodles by Michael Macias which implements a large part of htslib's C functionality in pure Rust (still experimental though).

Authors

For other contributors, see here.

License

Licensed under the MIT license https://opensource.org/licenses/MIT. This project may not be copied, modified, or distributed except according to those terms. Some test files are taken from https://github.com/samtools/htslib.

Dependencies

~13–25MB
~396K SLoC