mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-12-22 02:58:17 +00:00
test(fastqc): Remove input symlinks
Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com>
This commit is contained in:
parent
1fd97e8804
commit
2e56022e31
4 changed files with 2 additions and 5 deletions
|
@ -1 +0,0 @@
|
|||
../../../../tests/data/fastq/rna/test_R1.fastq.gz
|
|
@ -1 +0,0 @@
|
|||
../../../../tests/data/fastq/rna/test_R2.fastq.gz
|
|
@ -1 +0,0 @@
|
|||
../../data/fastq/rna/test_single_end.fastq.gz
|
|
@ -12,7 +12,7 @@ workflow test_single_end {
|
|||
|
||||
def input = []
|
||||
input = [ [ id:'test', single_end:true ], // meta map
|
||||
[ file("${projectDir}/input/test_single_end.fastq.gz", checkIfExists: true) ] ]
|
||||
[ file("${launchDir}/tests/data/fastq/rna/test_single_end.fastq.gz", checkIfExists: true) ] ]
|
||||
|
||||
FASTQC_SE ( input )
|
||||
}
|
||||
|
@ -25,7 +25,7 @@ workflow test_paired_end {
|
|||
def input = []
|
||||
input = [ [ id:'test', single_end:false ], // meta map
|
||||
[ file("${launchDir}/tests/data/fastq/rna/test_R1.fastq.gz", checkIfExists: true),
|
||||
file("${projectDir}/../data/fastq/rna/test_R2.fastq.gz", checkIfExists: true) ] ]
|
||||
file("${launchDir}/tests/data/fastq/rna/test_R2.fastq.gz", checkIfExists: true) ] ]
|
||||
|
||||
FASTQC_PE ( input )
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue