nohuman 0.5.0

Remove human reads from a sequencing run
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
PROJECT := "nohuman"

# run clippy to check for linting issues
lint:
    cargo clippy --all-features --all-targets -- -D warnings

# run all tests
test:
    cargo test -v --all-targets --no-fail-fast
    cargo test -v --doc --no-fail-fast

# get coverage with tarpaulin
coverage:
    cargo tarpaulin -t 300 -- --test-threads 1