Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
inter_CATI_omics
Hackathon_octobre2021
atelier_repro
Commits
9c2a39f0
Commit
9c2a39f0
authored
Oct 08, 2021
by
Ludovic Legrand
Browse files
amelioration de view
parent
43d87ce6
Changes
2
Hide whitespace changes
Inline
Side-by-side
Nextflow/01channel/channel.fromFilePairs.dsl1.nf
View file @
9c2a39f0
Channel.fromFilePairs( './rawdata/dev/control/SRR*_{1,2}.fastq.gz', size: 2, checkIfExists: true).into {chanFastq1 ; chanFastq2}
chanFastq1.view
()
chanFastq2.view
()
chanFastq1.view
{ it -> "[chanFastq1] $it" }
chanFastq2.view
{ it -> "[chanFastq2] $it" }
Nextflow/01channel/channel.fromFilePairs.nf
View file @
9c2a39f0
nextflow.enable.dsl=2
chanFastq = Channel.fromFilePairs( './rawdata/dev/control/SRR*_{1,2}.fastq.gz', size: 2, checkIfExists: true)
chanFastq.view
()
chanFastq.view
()
chanFastq.view
{ it -> "[chanFastq] view1: $it" }
chanFastq.view
{ it -> "[chanFastq] view2: $it" }
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment