Skip to content

Commit

Permalink
Merge branch 'master' into update-syntax-docs
Browse files Browse the repository at this point in the history
  • Loading branch information
christopher-hakkaart authored Dec 18, 2024
2 parents 9110cfc + fc2ac7d commit ddf5cbf
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions docs/snippets/your-first-script.nf
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ process splitLetters {
output:
path 'chunk_*'

script:
"""
printf '${params.str}' | split -b 6 - chunk_
"""
Expand All @@ -16,6 +17,7 @@ process convertToUpper {
output:
stdout

script:
"""
cat $x | tr '[a-z]' '[A-Z]'
"""
Expand Down

0 comments on commit ddf5cbf

Please sign in to comment.