rsomics-bam-quickcheck 0.1.0

Quickly validate a BAM file's BGZF framing and header magic — Rust port of samtools quickcheck
Documentation
1
2
3
4
5
6
7
8
9
10
mod cli;

use std::process::ExitCode;

use clap::Parser;
use rsomics_common::Tool;

fn main() -> ExitCode {
    cli::Cli::parse().run()
}