mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-13 05:13:09 +00:00
Add basedir
This commit is contained in:
parent
75e7e1573c
commit
111b1505fa
1 changed files with 3 additions and 2 deletions
|
@ -15,7 +15,7 @@ workflow test_single_end {
|
|||
|
||||
def input = []
|
||||
input = [ [ id:'test', single_end:true ],
|
||||
[ file('input/test_single_end.fastq.gz', checkIfExists: true) ] ]
|
||||
[ file("${baseDir}/input/test_single_end.fastq.gz", checkIfExists: true) ] ]
|
||||
|
||||
FASTQC ( input, [ publish_dir:'test_single_end' ] )
|
||||
}
|
||||
|
@ -27,7 +27,8 @@ workflow test_paired_end {
|
|||
|
||||
def input = []
|
||||
input = [ [ id:'test', single_end:false ],
|
||||
[ file('input/test_R1.fastq.gz', checkIfExists: true), file('input/test_R2.fastq.gz', checkIfExists: true) ] ]
|
||||
[ file("${baseDir}/input/test_R1.fastq.gz", checkIfExists: true),
|
||||
file("${baseDir}/input/test_R2.fastq.gz", checkIfExists: true) ] ]
|
||||
|
||||
FASTQC ( input, [ publish_dir:'test_paired_end' ] )
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue