fastq_rs 0.0.2

Multi purpose fastq toolkit.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use std::path::PathBuf;
use thiserror::Error;

#[derive(Debug, Error)]
pub enum AppError {
    #[error("PathBuf conversion error: {0}")]
    PathBufConversionError(PathBuf),

    #[error("Invalid sampling factor: {0}")]
    InvalidSamplingError(f32),

    #[error("File does not exist: {0}")]
    FileDoesNotExistError(PathBuf),

    #[error("Invalid file extension: {0}")]
    InvalidFileExtension(PathBuf),
}