test(fastqc): Remove input symlinks

Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com>
This commit is contained in:
Edmund Miller 2020-11-24 14:16:20 -06:00 committed by Edmund Miller
parent 1fd97e8804
commit 2e56022e31
4 changed files with 2 additions and 5 deletions

View file

@ -1 +0,0 @@
../../../../tests/data/fastq/rna/test_R1.fastq.gz

View file

@ -1 +0,0 @@
../../../../tests/data/fastq/rna/test_R2.fastq.gz

View file

@ -1 +0,0 @@
../../data/fastq/rna/test_single_end.fastq.gz

View file

@ -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 )
}