add nextflow d30e48d
This commit is contained in:
19
nextflow/validation/test-readspair.nf
Normal file
19
nextflow/validation/test-readspair.nf
Normal file
@@ -0,0 +1,19 @@
|
||||
workflow {
|
||||
reads_pair()
|
||||
reads_pair
|
||||
.out.view()
|
||||
.collect()
|
||||
.subscribe { assert it.name == ['test.R1.fastq','test.R2.fastq'] }
|
||||
}
|
||||
|
||||
process reads_pair {
|
||||
output:
|
||||
file("reads/*")
|
||||
|
||||
script:
|
||||
"""
|
||||
mkdir reads
|
||||
touch reads/test.R1.fastq reads/test.R2.fastq
|
||||
"""
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user