Update software/fastqc/test/main.nf

Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com>
This commit is contained in:
Gregor Sturm 2020-07-15 12:48:21 +02:00 committed by GitHub
parent 9d7cece077
commit 01a926866e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -13,7 +13,6 @@ include { FASTQC } from '../main.nf'
workflow test_single_end {
input_files = Channel.fromPath("data/test_single_end.fastq.gz")
.map {f -> [f.baseName, f]}
input_files.view()
FASTQC(input_files)
}