mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2025-01-18 02:46:13 -05: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 = []
|
def input = []
|
||||||
input = [ [ id:'test', single_end:true ], // meta map
|
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 )
|
FASTQC_SE ( input )
|
||||||
}
|
}
|
||||||
|
@ -25,7 +25,7 @@ workflow test_paired_end {
|
||||||
def input = []
|
def input = []
|
||||||
input = [ [ id:'test', single_end:false ], // meta map
|
input = [ [ id:'test', single_end:false ], // meta map
|
||||||
[ file("${launchDir}/tests/data/fastq/rna/test_R1.fastq.gz", checkIfExists: true),
|
[ 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 )
|
FASTQC_PE ( input )
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue