File tree Expand file tree Collapse file tree 4 files changed +38
-1
lines changed Expand file tree Collapse file tree 4 files changed +38
-1
lines changed Original file line number Diff line number Diff line change 10
10
/validation /.nextflow.log
11
11
/validation /.nextflow.log. *
12
12
/validation /* .db
13
- /validation /* .db.wal
13
+ /validation /* .db.wal
14
+ /node_modules /
Original file line number Diff line number Diff line change
1
+
2
+ process sayHello {
3
+ input:
4
+ val name
5
+ output:
6
+ stdout
7
+
8
+ script:
9
+ """
10
+ echo '$name '
11
+ """
12
+ }
13
+
14
+ workflow{
15
+ channel. of(' jorge' ,' raffaella' ) | sayHello | view
16
+ }
Original file line number Diff line number Diff line change
1
+ plugins {
2
+ id " nf-cachebrowser@0.0.1"
3
+ }
4
+
Original file line number Diff line number Diff line change
1
+
2
+ process sayHello {
3
+ input:
4
+ val name
5
+ output:
6
+ stdout
7
+
8
+ script:
9
+ """
10
+ echo hi $name
11
+ """
12
+ }
13
+
14
+ workflow{
15
+ channel. of(' jorge' ,' raffaella' ) | sayHello | view
16
+ }
You can’t perform that action at this time.
0 commit comments