segul 0.18.1

An ultrafast and memory efficient alignment tool for phylogenomics
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
mod utils;

#[test]
fn test_version() {
    use clap::crate_version;
    let version = crate_version!();
    utils::segul(utils::create_tmp_dir().unwrap().path())
        .arg("-V")
        .assert()
        .success()
        .stdout(predicates::str::contains(version));
}