hts_sys/
lib.rs

1#![allow(non_upper_case_globals)]
2#![allow(non_camel_case_types)]
3#![allow(non_snake_case)]
4#![allow(clippy::all)]
5#![allow(improper_ctypes)]
6//! This module exposes the raw [HTSlib](https://github.com/samtools/htslib) bindings for reading and writing
7//! genomics file formats like SAM, BAM, CRAM, VCF, BCF and tabix.
8//! Instead of using this crate directly, it is recommended to use [rust-htslib](https://docs.rs/rust-htslib)
9//! instead, which has a more idiomatic and high-level API and builds on top of this crate.
10
11#[cfg(feature = "bzip2")]
12extern crate bzip2_sys;
13#[cfg(feature = "curl")]
14extern crate curl_sys;
15#[cfg(feature = "libdeflate")]
16extern crate libdeflate_sys;
17extern crate libz_sys;
18#[cfg(feature = "lzma")]
19extern crate lzma_sys;
20
21// include on-the-fly generated bindings
22include!(concat!(env!("OUT_DIR"), "/bindings.rs"));