Skip to content

Commit 09d56ef

Browse files
committed
Fixed with mr file for size issues
1 parent 00ef1d3 commit 09d56ef

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

tests/software/preseq/main.nf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ workflow test_preseq_single_end {
1313

1414
def input = []
1515
input = [ [ id:'test', single_end:true ], // meta map
16-
[ file("${launchDir}/tests/data/bed/A.bed", checkIfExists: true) ]]
16+
[ file('https://github.com/smithlabcode/preseq/raw/master/data/SRR1003759_5M_subset.mr', checkIfExists: true), ] ]
1717
PRESEQ_LCEXTRAP_SE ( input )
1818
}
1919

@@ -25,7 +25,7 @@ workflow test_preseq_paired_end {
2525

2626
def input = []
2727
input = [ [ id:'test', single_end:false ], // meta map
28-
[ file("${launchDir}/tests/data/bed/A.bed", checkIfExists: true) ]]
28+
[ file('https://github.com/smithlabcode/preseq/raw/master/data/SRR1003759_5M_subset.mr', checkIfExists: true), ] ]
2929

3030
PRESEQ_LCEXTRAP_PE ( input )
3131
}

tests/software/preseq/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
files:
88
- path: output/test_preseq_single_end/test.ccurve.txt
9-
md5sum: 5253ffcfd4b6162851631efdbfe16f92
9+
md5sum: 76ae04c8eaf19c94e3210bb69da38498
1010
- path: output/test_preseq_single_end/test.command.log
1111

1212
- name: Run preseq paired-end lcextrap
@@ -17,5 +17,5 @@
1717

1818
files:
1919
- path: output/test_preseq_paired_end/test.ccurve.txt
20-
md5sum: 66b339780630fc1aa72dcfbd0a4490fd
20+
md5sum: 2836d2fabd2213f097fd7063db550276
2121
- path: output/test_preseq_paired_end/test.command.log

0 commit comments

Comments
 (0)