add nextflow d30e48d
This commit is contained in:
7
nextflow/validation/wave-tests/example2/demo.nf
Normal file
7
nextflow/validation/wave-tests/example2/demo.nf
Normal file
@@ -0,0 +1,7 @@
|
||||
include { hello } from './modules/foo'
|
||||
|
||||
workflow {
|
||||
hello()
|
||||
}
|
||||
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
FROM alpine
|
||||
|
||||
RUN apk update && apk add bash cowsay \
|
||||
--update-cache \
|
||||
--repository https://alpine.global.ssl.fastly.net/alpine/edge/community \
|
||||
--repository https://alpine.global.ssl.fastly.net/alpine/edge/main \
|
||||
--repository https://dl-3.alpinelinux.org/alpine/edge/testing
|
||||
@@ -0,0 +1,8 @@
|
||||
process hello {
|
||||
debug true
|
||||
script:
|
||||
"""
|
||||
cowsay Hello Summit!
|
||||
"""
|
||||
}
|
||||
|
||||
5
nextflow/validation/wave-tests/example2/nextflow.config
Normal file
5
nextflow/validation/wave-tests/example2/nextflow.config
Normal file
@@ -0,0 +1,5 @@
|
||||
docker {
|
||||
enabled = true
|
||||
}
|
||||
|
||||
|
||||
2
nextflow/validation/wave-tests/example2/run.sh
Normal file
2
nextflow/validation/wave-tests/example2/run.sh
Normal file
@@ -0,0 +1,2 @@
|
||||
$NXF_CMD run demo.nf -with-wave
|
||||
|
||||
Reference in New Issue
Block a user