Skip to content

Commit 1ffb96c

Browse files
committed
first commit
1 parent c006fbb commit 1ffb96c

File tree

4 files changed

+38
-1
lines changed

4 files changed

+38
-1
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,5 @@ build
1010
/validation/.nextflow.log
1111
/validation/.nextflow.log.*
1212
/validation/*.db
13-
/validation/*.db.wal
13+
/validation/*.db.wal
14+
/node_modules/

validation/main.nf

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
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+
}

validation/nextflow.config

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
plugins {
2+
id "nf-cachebrowser@0.0.1"
3+
}
4+

validation/two.nf

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
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+
}

0 commit comments

Comments
 (0)