fqtk 0.2.0

A toolkit for working with FASTQ files.
Documentation
1
2
3
4
5
6
7
8
use anyhow::Result;
use enum_dispatch::enum_dispatch;

#[enum_dispatch]
pub trait Command {
    #[allow(clippy::missing_errors_doc)]
    fn execute(&self) -> Result<()>;
}