mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-10 20:23:10 +00:00
Merge pull request #44 from drpatelh/master
Change test directory name to input for FastQC
This commit is contained in:
commit
45cc9ede3e
4 changed files with 2 additions and 2 deletions
|
@ -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)
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue