xsra 0.2.29

A performant and storage-efficient CLI tool to extract sequences from an SRA archive with support for FASTA, FASTQ, and BINSEQ outputs.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Library interface for xsra
// This allows integration tests to access the internal modules

// Re-export constants needed by modules
pub const BUFFER_SIZE: usize = 1024 * 1024;
pub const RECORD_CAPACITY: usize = 1024;

pub mod cli;
pub mod describe;
pub mod dump;
pub mod output;
pub mod prefetch;
pub mod recode;
pub mod utils;