fastqrab-steps 0.9.1

Pipeline building blocks for fastqrab: read transformations, filters, reports, and demultiplexing
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
mod by_numeric_tag;
mod by_tag;
mod empty;
mod head;
mod reservoir_sample;
mod sample;
mod skip;
mod tag_matches;

// Re-export all public structs
pub use by_numeric_tag::{ByNumericTag, PartialByNumericTag};
pub use by_tag::{ByTag, PartialByTag};
pub use empty::{Empty, PartialEmpty};
pub use head::{Head, PartialHead};
pub use reservoir_sample::{PartialReservoirSample, ReservoirSample};
pub use sample::{PartialSample, Sample};
pub use skip::{PartialSkip, Skip};
pub use tag_matches::{PartialTagMatches, TagMatches};