diff --git a/tests/fastqc/input/test_R1.fastq.gz b/tests/fastqc/input/test_R1.fastq.gz deleted file mode 120000 index e7b4b614..00000000 --- a/tests/fastqc/input/test_R1.fastq.gz +++ /dev/null @@ -1 +0,0 @@ -../../../../tests/data/fastq/rna/test_R1.fastq.gz \ No newline at end of file diff --git a/tests/fastqc/input/test_R2.fastq.gz b/tests/fastqc/input/test_R2.fastq.gz deleted file mode 120000 index 5b7b57a3..00000000 --- a/tests/fastqc/input/test_R2.fastq.gz +++ /dev/null @@ -1 +0,0 @@ -../../../../tests/data/fastq/rna/test_R2.fastq.gz \ No newline at end of file diff --git a/tests/fastqc/input/test_single_end.fastq.gz b/tests/fastqc/input/test_single_end.fastq.gz deleted file mode 120000 index 7d0654e1..00000000 --- a/tests/fastqc/input/test_single_end.fastq.gz +++ /dev/null @@ -1 +0,0 @@ -../../data/fastq/rna/test_single_end.fastq.gz \ No newline at end of file diff --git a/tests/fastqc/main.nf b/tests/fastqc/main.nf index b6fd5dbc..6d25e53d 100644 --- a/tests/fastqc/main.nf +++ b/tests/fastqc/main.nf @@ -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 ) }