nj 0.0.22

Neighbor-Joining phylogenetic tree inference. Auto-detects DNA/protein, supports multiple substitution models and bootstrap.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
all: lib cli

lib:
	CARGO_TARGET_DIR=target cargo build --release

cli:
	CARGO_TARGET_DIR=target cargo build --release --features cli --bin nj

test:
	CARGO_TARGET_DIR=target cargo test
	CARGO_TARGET_DIR=target cargo test --features cli

clean:
	CARGO_TARGET_DIR=target cargo clean