Skip to content

Commit 7d08e42

Browse files
committed
refactor tests
1 parent fd642a6 commit 7d08e42

29 files changed

Lines changed: 67 additions & 67 deletions

Makefile

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ all : clean test
55

66
clean:
77
rm -rf output
8-
#rm -rf work
8+
rm -rf work
99
rm -f report.html*
1010
rm -f timeline.html*
1111
rm -f trace.txt*
@@ -14,14 +14,14 @@ clean:
1414
rm -rf .nextflow*
1515

1616
test:
17-
bash tests/run_test_0.sh
18-
bash tests/run_test_1.sh
19-
bash tests/run_test_2.sh
20-
bash tests/run_test_3.sh
21-
bash tests/run_test_4.sh
22-
bash tests/run_test_5.sh
23-
bash tests/run_test_6.sh
24-
bash tests/run_test_7.sh
25-
bash tests/run_test_8.sh
26-
bash tests/run_test_10.sh
27-
bash tests/run_test_11.sh
17+
bash test/scripts/run_test_0.sh
18+
bash test/scripts/run_test_1.sh
19+
bash test/scripts/run_test_2.sh
20+
bash test/scripts/run_test_3.sh
21+
bash test/scripts/run_test_4.sh
22+
bash test/scripts/run_test_5.sh
23+
bash test/scripts/run_test_6.sh
24+
bash test/scripts/run_test_7.sh
25+
bash test/scripts/run_test_8.sh
26+
bash test/scripts/run_test_10.sh
27+
bash test/scripts/run_test_11.sh

nextflow.config

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ profiles {
88
conda { params.enable_conda = true }
99
debug { process.beforeScript = 'echo $HOSTNAME' }
1010
test {
11-
params.reference = "$baseDir/test_data/ucsc.hg19.minimal.fasta"
12-
params.input_vcfs = "$baseDir/test_data/test_input.txt"
11+
params.reference = "$baseDir/test/data/ucsc.hg19.minimal.fasta"
12+
params.input_vcfs = "$baseDir/test/data/test_input.txt"
1313
params.cpus = 1
1414
params.memory = "3g"
1515
timeline.enabled = false

0 commit comments

Comments
 (0)