Skip to content

Commit

Permalink
Merge pull request #51 from icgc-argo-workflows/[email protected]
Browse files Browse the repository at this point in the history
[release]
  • Loading branch information
edsu7 authored Jan 6, 2023
2 parents 2ebb385 + 5f29548 commit 5d79bcb
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 3 deletions.
2 changes: 2 additions & 0 deletions process/score_upload.nf
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,8 @@ process scoreUpload {

if (workflow.containerEngine == "singularity") {
containerOptions "--bind \$(pwd):/score-client/logs"
} else if (workflow.containerEngine == "docker") {
containerOptions "-v \$(pwd):/score-client/logs"
}

tag "${analysis_id}"
Expand Down
2 changes: 2 additions & 0 deletions process/song_manifest.nf
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,8 @@ process songManifest {

if (workflow.containerEngine == "singularity") {
containerOptions "--bind \$(pwd):/song-client/logs"
} else if (workflow.containerEngine == "docker") {
containerOptions "-v \$(pwd):/song-client/logs"
}

input:
Expand Down
2 changes: 2 additions & 0 deletions process/song_publish.nf
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,8 @@ process songPublish {

if (workflow.containerEngine == "singularity") {
containerOptions "--bind \$(pwd):/song-client/logs"
} else if (workflow.containerEngine == "docker") {
containerOptions "-v \$(pwd):/song-client/logs"
}

tag "${analysis_id}"
Expand Down
2 changes: 2 additions & 0 deletions process/song_submit.nf
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,8 @@ process songSubmit {

if (workflow.containerEngine == "singularity") {
containerOptions "--bind \$(pwd):/song-client/logs"
} else if (workflow.containerEngine == "docker") {
containerOptions "-v \$(pwd):/song-client/logs"
}

tag "${study_id}"
Expand Down
2 changes: 1 addition & 1 deletion song-score-upload/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
*/

nextflow.enable.dsl = 2
version = '2.9.1'
version = '2.9.2'

// universal params go here, change default value as needed
params.publish_dir = "" // set to empty string will disable publishDir
Expand Down
2 changes: 1 addition & 1 deletion song-score-upload/pkg.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "song-score-upload",
"version": "2.9.1",
"version": "2.9.2",
"description": "SONG/SCORE upload",
"main": "main.nf",
"deprecated": false,
Expand Down
2 changes: 1 addition & 1 deletion song-score-upload/tests/checker.nf
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
*/

nextflow.enable.dsl = 2
version = '2.9.1'
version = '2.9.2'

// universal params go here, change default value as needed
params.max_retries = 5 // set to 0 will disable retry
Expand Down

0 comments on commit 5d79bcb

Please sign in to comment.