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
538a6002
Commit
538a6002
authored
Oct 08, 2021
by
Ludovic Legrand
Browse files
amelioration du texte de log
parent
bc05b720
Changes
3
Hide whitespace changes
Inline
Side-by-side
Nextflow/03workflow_module/module.Nworkflow.nf
View file @
538a6002
...
...
@@ -27,5 +27,7 @@ workflow gzipw {
workflow {
gunzipw(chanFastq)
gunzipw.out.outfile.view { "[gunzip sub-workflow output] " + it }
gzipw(gunzipw.out.outfile)
}
Nextflow/03workflow_module/module.simple.nf
View file @
538a6002
...
...
@@ -6,4 +6,5 @@ chanFastq = Channel.fromFilePairs( './rawdata/dev/control/SRR*_{1,2}.fastq.gz',
workflow {
gunzip(chanFastq)
gunzip.out.outfile.view { "[process output] " + it }
}
Nextflow/03workflow_module/module/gzip/main.nf
View file @
538a6002
nextflow.enable.dsl=2
process gunzip {
publishDir('result')
publishDir('result
/module/gunzip
')
tag("${id}")
input:
...
...
@@ -11,6 +11,7 @@ process gunzip {
path('*.fastq', emit: outfile)
script:
println("[module gunzip] fastqID: $id")
"""
#!/usr/bin/env bash
gzip -kcd ${reads[0]} > ${id}.R1.fastq
...
...
@@ -19,7 +20,7 @@ touch myfile
}
process gzip {
publishDir('result')
publishDir('result
/module/gzip
')
tag("${id}")
input:
...
...
@@ -29,6 +30,7 @@ process gzip {
path('*.fastq.gz')
script:
println("[module gzip] fastq: $reads")
"""
#!/usr/bin/env bash
gzip -kc ${reads} > ${reads}.gz
...
...
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