Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
tbg
backmap_workflow
Commits
26e7d963
Commit
26e7d963
authored
Feb 17, 2021
by
Raphael Müller
Browse files
added process for writing results to file
parent
0445d4d2
Changes
1
Hide whitespace changes
Inline
Side-by-side
nextflow/backmap.nf
View file @
26e7d963
...
...
@@ -630,6 +630,16 @@ if (coverageHistogram) {
return
result
}.
set
{
chResults
}
chResults
.
view
()
process
results2File
{
cpus
1
input:
val
results
from
chResults
.
collect
()
output:
file
"${prefix}.results.txt"
into
chResultFile
script:
"""
echo '${results.join('\n')}' > ${prefix}.results.txt
"""
}
}
//fi: genomeSizeEstimation
}
//fi: coverageHistogram
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