fastars 0.1.0

Ultra-fast QC and trimming for short and long reads
Documentation
//! # Fastars
//!
//! Ultra-fast QC and trimming for short and long reads.
//!
//! Fastars provides efficient FASTQ processing with:
//! - Quality control metrics collection
//! - Adapter and quality trimming
//! - Read filtering
//! - JSON and HTML report generation
//!
//! ## Example
//!
//! ```no_run
//! use fastars::pipeline;
//!
//! // Pipeline usage will be documented once implemented
//! ```

pub mod cli;
pub mod correction;
pub mod filter;
pub mod io;
pub mod merge;
pub mod pipeline;
pub mod qc;
pub mod report;
pub mod trim;
pub mod umi;

#[cfg(test)]
mod tests {
    #[test]
    fn test_lib_compiles() {
        // Basic compilation test
        assert!(true);
    }
}