Skip to content

Commit

Permalink
Update examples
Browse files Browse the repository at this point in the history
Signed-off-by: Paolo Di Tommaso <[email protected]>
  • Loading branch information
pditommaso committed Oct 13, 2023
1 parent 56eba4c commit f4a38f7
Show file tree
Hide file tree
Showing 10 changed files with 8 additions and 19 deletions.
2 changes: 1 addition & 1 deletion example-bonus/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ wave {
fusion {
enabled = true
exportStorageCredentials = true
}
docker {
enabled = true
envWhitelist = 'AWS_ACCESS_KEY_ID,AWS_SECRET_ACCESS_KEY'
}
```

Expand Down
2 changes: 1 addition & 1 deletion example-bonus/nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ wave {

fusion {
enabled = true
exportStorageCredentials = true
}

docker {
enabled = true
envWhitelist = 'AWS_ACCESS_KEY_ID,AWS_SECRET_ACCESS_KEY'
}

workDir = 's3://nextflow-ci/work'
1 change: 0 additions & 1 deletion example-gke/nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,4 @@ k8s {
namespace = 'wave-demo'
serviceAccount = 'wave-sa'
pod.nodeSelector = 'iam.gke.io/gke-metadata-server-enabled=true'
debug.yaml = true
}
2 changes: 1 addition & 1 deletion example-googlebatch/nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ params {

process {
executor = 'google-batch'
container = 'quay.io/nextflow/rnaseq-nf:v1.1'
container = 'quay.io/nextflow/rnaseq-nf:v1.2'
scratch = true
}

Expand Down
1 change: 0 additions & 1 deletion example-spack/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ on-demand and provision for the pipeline execution.
```
docker {
enabled = true
runOptions = '-u $(id -u):$(id -g)'
}
wave {
Expand Down
1 change: 0 additions & 1 deletion example-spack/nextflow.config
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
docker {
enabled = true
runOptions = '-u $(id -u):$(id -g)'
}

wave {
Expand Down
4 changes: 2 additions & 2 deletions example6/nextflow.config
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
process {
container = 'quay.io/nextflow/rnaseq-nf:v1.1'
container = 'quay.io/nextflow/rnaseq-nf:v1.2'
}

params {
Expand All @@ -9,11 +9,11 @@ params {

docker {
enabled = true
envWhitelist = 'AWS_ACCESS_KEY_ID,AWS_SECRET_ACCESS_KEY'
}

fusion {
enabled = true
exportStorageCredentials = true
}

workDir = 's3://nextflow-ci/wave'
Expand Down
5 changes: 1 addition & 4 deletions example7/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,6 @@ to provision the pipeline containers on-demand, by using the Conda recipes defin
wave {
enabled = true
strategy = 'conda,container'
build.conda.commands = [
'USER root',
'RUN apt-get update -y && apt-get install -y procps'
]
}
docker {
Expand All @@ -25,6 +21,7 @@ docker {
fusion {
enabled = true
exportStorageCredentials = true
}
```

Expand Down
7 changes: 1 addition & 6 deletions example7/nextflow.config
Original file line number Diff line number Diff line change
@@ -1,19 +1,14 @@
plugins {
id 'nf-wave'
}

wave {
enabled = true
strategy = 'conda,container'
build.conda.basePackages = 'conda-forge::procps-ng'
}

docker {
enabled = true
envWhitelist = 'AWS_ACCESS_KEY_ID,AWS_SECRET_ACCESS_KEY'
}

fusion {
enabled = true
exportStorageCredentials = true
}

2 changes: 1 addition & 1 deletion example8/nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ k8s {

process {
executor = 'k8s'
container = 'quay.io/nextflow/rnaseq-nf:v1.1'
container = 'quay.io/nextflow/rnaseq-nf:v1.2'
scratch = true
}

Expand Down

0 comments on commit f4a38f7

Please sign in to comment.