Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
nextflow
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Gael Yvert
nextflow
Commits
0e7aa0a2
Commit
0e7aa0a2
authored
6 years ago
by
gael
Browse files
Options
Downloads
Patches
Plain Diff
bonjour.nf: now 2 processes
parent
0e80d240
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/bonjour.nf
+19
-2
19 additions, 2 deletions
src/bonjour.nf
with
19 additions
and
2 deletions
src/bonjour.nf
+
19
−
2
View file @
0e7aa0a2
/* test process */
process
write_bonjour
{
publishDir
"results/tests/"
,
mode:
'copy'
process
write_bonjour
_cava
{
/*
publishDir "results/tests/", mode: 'copy'
*/
output:
file
"message.txt"
into
parole
...
...
@@ -9,5 +9,22 @@ file "message.txt" into parole
script:
"""
echo bonjour > message.txt
echo ca va >> message.txt
"""
}
/* another process */
process
last_line
{
publishDir
"results/tests/"
,
mode:
'copy'
input:
file
textfile
from
parole
output:
file
"line.txt"
into
lastline
script:
"""
tail -1 ${textfile} > line.txt
"""
}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment