Merge pull request #44 from drpatelh/master

Change test directory name to input for FastQC
This commit is contained in:
Felix Krueger 2020-07-15 15:17:52 +02:00 committed by GitHub
commit 45cc9ede3e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 2 additions and 2 deletions

View file

@ -11,7 +11,7 @@ include { FASTQC } from '../main.nf'
* Test if FASTQC runs with single-end data
*/
workflow test_single_end {
input_files = Channel.fromPath("data/test_single_end.fastq.gz")
input_files = Channel.fromPath("input/test_single_end.fastq.gz")
.map {f -> [f.baseName, true, f]}
FASTQC(input_files)
}
@ -20,7 +20,7 @@ workflow test_single_end {
* Test if FASTQC runs with paired end data
*/
workflow test_paired_end {
input_files = Channel.fromFilePairs("data/test_R{1,2}.fastq.gz")
input_files = Channel.fromFilePairs("input/test_R{1,2}.fastq.gz")
.map {f -> [f[0], false, f[1]]}
FASTQC(input_files)
}