Skip to content

Commit d4c9ea8

Browse files
committed
Added nextflow.config and updated script
1 parent a3c65a1 commit d4c9ea8

File tree

4 files changed

+11
-6
lines changed

4 files changed

+11
-6
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
.git
2+
.nextflow*
3+
work/

circle.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,5 @@ general:
1212
test:
1313
override:
1414
- curl -fsSL get.nextflow.io | bash
15-
- ./nextflow run .
15+
- ./nextflow run .
16+
- ./nextflow run . -with-docker

main.nf

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ cheers = Channel.from 'Bonjour', 'Ciao', 'Hello', 'Hola'
55

66
process sayHello {
77
input:
8-
val x from cheers
9-
10-
"""
11-
echo '$x world!'
12-
"""
8+
val x from cheers
9+
script:
10+
"""
11+
echo '$x world!'
12+
"""
1313
}

nextflow.config

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
process.container = 'nextflow/bash'

0 commit comments

Comments
 (0)