add nextflow d30e48d
This commit is contained in:
13
nextflow/validation/wave-tests/example1/demo.nf
Normal file
13
nextflow/validation/wave-tests/example1/demo.nf
Normal file
@@ -0,0 +1,13 @@
|
||||
process foo {
|
||||
container 'docker.io/pditommaso/my-secret-container:latest'
|
||||
debug true
|
||||
|
||||
script:
|
||||
"""
|
||||
my-secret-script.sh
|
||||
"""
|
||||
}
|
||||
|
||||
workflow {
|
||||
foo()
|
||||
}
|
||||
4
nextflow/validation/wave-tests/example1/nextflow.config
Normal file
4
nextflow/validation/wave-tests/example1/nextflow.config
Normal file
@@ -0,0 +1,4 @@
|
||||
docker {
|
||||
enabled = true
|
||||
}
|
||||
|
||||
1
nextflow/validation/wave-tests/example1/run.sh
Normal file
1
nextflow/validation/wave-tests/example1/run.sh
Normal file
@@ -0,0 +1 @@
|
||||
$NXF_CMD run demo.nf -with-wave
|
||||
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
|
||||
|
||||
13
nextflow/validation/wave-tests/example3/demo.nf
Normal file
13
nextflow/validation/wave-tests/example3/demo.nf
Normal file
@@ -0,0 +1,13 @@
|
||||
process cow {
|
||||
debug true
|
||||
conda 'cowpy=1.1.5'
|
||||
|
||||
script:
|
||||
'''
|
||||
echo cowpy 'Hello Spack'
|
||||
'''
|
||||
}
|
||||
|
||||
workflow {
|
||||
cow()
|
||||
}
|
||||
9
nextflow/validation/wave-tests/example3/nextflow.config
Normal file
9
nextflow/validation/wave-tests/example3/nextflow.config
Normal file
@@ -0,0 +1,9 @@
|
||||
wave {
|
||||
enabled = true
|
||||
strategy = ['conda']
|
||||
build.repository = 'docker.io/pditommaso/wave-tests'
|
||||
}
|
||||
|
||||
docker {
|
||||
enabled = true
|
||||
}
|
||||
2
nextflow/validation/wave-tests/example3/run.sh
Normal file
2
nextflow/validation/wave-tests/example3/run.sh
Normal file
@@ -0,0 +1,2 @@
|
||||
$NXF_CMD run demo.nf -with-wave
|
||||
|
||||
13
nextflow/validation/wave-tests/example4/demo.nf
Normal file
13
nextflow/validation/wave-tests/example4/demo.nf
Normal file
@@ -0,0 +1,13 @@
|
||||
process cow {
|
||||
debug true
|
||||
conda 'https://prefix.dev/envs/pditommaso/wave/conda-lock.yml'
|
||||
|
||||
script:
|
||||
'''
|
||||
echo cowpy 'Hello Spack'
|
||||
'''
|
||||
}
|
||||
|
||||
workflow {
|
||||
cow()
|
||||
}
|
||||
2
nextflow/validation/wave-tests/example4/run.sh
Normal file
2
nextflow/validation/wave-tests/example4/run.sh
Normal file
@@ -0,0 +1,2 @@
|
||||
$NXF_CMD run demo.nf -with-wave
|
||||
|
||||
13
nextflow/validation/wave-tests/example6/nextflow.config
Normal file
13
nextflow/validation/wave-tests/example6/nextflow.config
Normal file
@@ -0,0 +1,13 @@
|
||||
docker {
|
||||
enabled = true
|
||||
envWhitelist = 'AWS_ACCESS_KEY_ID,AWS_SECRET_ACCESS_KEY'
|
||||
}
|
||||
|
||||
fusion {
|
||||
enabled = true
|
||||
}
|
||||
|
||||
wave {
|
||||
build.template = 'conda/pixi:v1'
|
||||
}
|
||||
|
||||
7
nextflow/validation/wave-tests/example6/run-aws.sh
Normal file
7
nextflow/validation/wave-tests/example6/run-aws.sh
Normal file
@@ -0,0 +1,7 @@
|
||||
$NXF_CMD run \
|
||||
rnaseq-nf \
|
||||
-profile batch,s3-data \
|
||||
-with-wave \
|
||||
-with-fusion \
|
||||
-process.scratch false
|
||||
|
||||
7
nextflow/validation/wave-tests/example6/run-gcp.sh
Normal file
7
nextflow/validation/wave-tests/example6/run-gcp.sh
Normal file
@@ -0,0 +1,7 @@
|
||||
$NXF_CMD run \
|
||||
rnaseq-nf \
|
||||
-profile google-batch,gs-data \
|
||||
-with-wave \
|
||||
-with-fusion \
|
||||
-process.scratch false
|
||||
|
||||
5
nextflow/validation/wave-tests/example6/run.sh
Normal file
5
nextflow/validation/wave-tests/example6/run.sh
Normal file
@@ -0,0 +1,5 @@
|
||||
$NXF_CMD run \
|
||||
rnaseq-nf \
|
||||
-with-wave \
|
||||
-w s3://nextflow-ci/wave
|
||||
|
||||
Reference in New Issue
Block a user