noodles 0.110.0

Bioinformatics I/O libraries
Documentation
//! **noodles** attempts to provide specification-compliant (when applicable) 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.

#[cfg(feature = "bam")]
#[doc(inline)]
pub use noodles_bam as bam;

#[cfg(feature = "bcf")]
#[doc(inline)]
pub use noodles_bcf as bcf;

#[cfg(feature = "bed")]
#[doc(inline)]
pub use noodles_bed as bed;

#[cfg(feature = "bgzf")]
#[doc(inline)]
pub use noodles_bgzf as bgzf;

#[cfg(feature = "core")]
#[doc(inline)]
pub use noodles_core as core;

#[cfg(feature = "cram")]
#[doc(inline)]
pub use noodles_cram as cram;

#[cfg(feature = "csi")]
#[doc(inline)]
pub use noodles_csi as csi;

#[cfg(feature = "fasta")]
#[doc(inline)]
pub use noodles_fasta as fasta;

#[cfg(feature = "fastq")]
#[doc(inline)]
pub use noodles_fastq as fastq;

#[cfg(feature = "gff")]
#[doc(inline)]
pub use noodles_gff as gff;

#[cfg(feature = "gtf")]
#[doc(inline)]
pub use noodles_gtf as gtf;

#[cfg(feature = "htsget")]
#[doc(inline)]
pub use noodles_htsget as htsget;

#[cfg(feature = "refget")]
#[doc(inline)]
pub use noodles_refget as refget;

#[cfg(feature = "sam")]
#[doc(inline)]
pub use noodles_sam as sam;

#[cfg(feature = "tabix")]
#[doc(inline)]
pub use noodles_tabix as tabix;

#[cfg(feature = "vcf")]
#[doc(inline)]
pub use noodles_vcf as vcf;