Skip to content

Commit 5d79bcb

Browse files
authored
Merge pull request #51 from icgc-argo-workflows/song-score-upload@2.9.2
[release]
2 parents 2ebb385 + 5f29548 commit 5d79bcb

7 files changed

Lines changed: 11 additions & 3 deletions

File tree

process/score_upload.nf

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,8 @@ process scoreUpload {
3636

3737
if (workflow.containerEngine == "singularity") {
3838
containerOptions "--bind \$(pwd):/score-client/logs"
39+
} else if (workflow.containerEngine == "docker") {
40+
containerOptions "-v \$(pwd):/score-client/logs"
3941
}
4042

4143
tag "${analysis_id}"

process/song_manifest.nf

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,8 @@ process songManifest {
3939

4040
if (workflow.containerEngine == "singularity") {
4141
containerOptions "--bind \$(pwd):/song-client/logs"
42+
} else if (workflow.containerEngine == "docker") {
43+
containerOptions "-v \$(pwd):/song-client/logs"
4244
}
4345

4446
input:

process/song_publish.nf

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,8 @@ process songPublish {
3535

3636
if (workflow.containerEngine == "singularity") {
3737
containerOptions "--bind \$(pwd):/song-client/logs"
38+
} else if (workflow.containerEngine == "docker") {
39+
containerOptions "-v \$(pwd):/song-client/logs"
3840
}
3941

4042
tag "${analysis_id}"

process/song_submit.nf

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,8 @@ process songSubmit {
3535

3636
if (workflow.containerEngine == "singularity") {
3737
containerOptions "--bind \$(pwd):/song-client/logs"
38+
} else if (workflow.containerEngine == "docker") {
39+
containerOptions "-v \$(pwd):/song-client/logs"
3840
}
3941

4042
tag "${study_id}"

song-score-upload/main.nf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
*/
2222

2323
nextflow.enable.dsl = 2
24-
version = '2.9.1'
24+
version = '2.9.2'
2525

2626
// universal params go here, change default value as needed
2727
params.publish_dir = "" // set to empty string will disable publishDir

song-score-upload/pkg.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "song-score-upload",
3-
"version": "2.9.1",
3+
"version": "2.9.2",
44
"description": "SONG/SCORE upload",
55
"main": "main.nf",
66
"deprecated": false,

song-score-upload/tests/checker.nf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
*/
2626

2727
nextflow.enable.dsl = 2
28-
version = '2.9.1'
28+
version = '2.9.2'
2929

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

0 commit comments

Comments
 (0)