galah 0.5.0

Microbial genome dereplicator
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use bird_tool_utils::external_command_checker::*;

pub fn check_for_dependencies() {
    check_for_fastani();
}

pub fn check_for_fastani() {
    self::check_for_external_command_presence("fastaANI", "which fastANI")
        .expect("Failed to find installed fastANI");
    self::default_version_check("fastANI", "1.31", false, None)
        .expect("Failed to find sufficient version of fastANI");
}