tidyvcf 0.7.3

command-line tool to convert VCF files to tab/comma separated tables
Documentation
1
2
3
4
5
6
use std::error::Error;

fn main() -> Result<(), Box<dyn Error>> {
    tidyvcf::tidyvcf()?;
    Ok(())
}