rustqc 0.2.1

Fast RNA-seq QC in a single pass: dupRadar, featureCounts, 8 RSeQC tools, preseq, samtools stats, and Qualimap — reimplemented in Rust
1
2
3
4
5
6
7
8
9
10
11
12
//! RNA-Seq quality control and analysis modules.
//!
//! Contains dupRadar duplication rate analysis, featureCounts-compatible output,
//! and RSeQC tool reimplementations.

pub mod bam_flags;
pub mod cpp_rng;
pub mod dupradar;
pub mod featurecounts;
pub mod preseq;
pub mod qualimap;
pub mod rseqc;