-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathsomalier.nimble
More file actions
25 lines (18 loc) · 1.07 KB
/
somalier.nimble
File metadata and controls
25 lines (18 loc) · 1.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#import somalierpkg/version as _
version = "0.3.2" #somalierVersion
author = "Brent Pedersen"
description = "sample-swap checking directly on BAMs/CRAMs for cancer data"
license = "MIT"
# Dependencies
requires "https://github.com/brentp/zip#dev"
requires "nim >= 1.2.0", "hts >= 0.3.20", "https://github.com/brentp/pedfile >= 0.0.3", "https://github.com/brentp/hileup", "argparse >=0.10.1 & < 0.10.2", "lapper", "arraymancer <= 0.7.32"
requires "https://github.com/brentp/slivar#head"
srcDir = "src"
bin = @["somalier"]
task test, "run the tests":
exec "nim c -d:useSysAssert -d:useGcAssert --lineDir:on --debuginfo -r tests/test_groups"
exec "nim c -d:useSysAssert -d:useGcAssert --lineDir:on --debuginfo -r tests/test_format_float_clean"
exec "nim c -d:useSysAssert -d:useGcAssert --lineDir:on --debuginfo -r tests/test_concordance.nim"
exec "nim c -d:useSysAssert -d:useGcAssert --lineDir:on --debuginfo tests/test_contamination.nim"
exec "DYLD_FALLBACK_LIBRARY_PATH=/opt/homebrew/lib ./tests/test_contamination"
exec "bash tests/functional-tests.sh"