Skip to content

Commit 67afbd0

Browse files
committed
updated score/song .nf
- changed singularity mount to `task/process` directory
1 parent b8953b0 commit 67afbd0

5 files changed

Lines changed: 4 additions & 4 deletions

File tree

.DS_Store

6 KB
Binary file not shown.

process/score_upload.nf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ process scoreUpload {
3535
container "${ params.score_container ?: params.container}:${params.score_container_version ?: params.container_version}"
3636

3737
if (workflow.containerEngine == "singularity") {
38-
containerOptions "--bind ${workDir}:/score-client/logs"
38+
containerOptions "--bind \$(pwd):/score-client/logs"
3939
}
4040

4141
tag "${analysis_id}"

process/song_manifest.nf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ process songManifest {
3838
tag "${analysis_id}"
3939

4040
if (workflow.containerEngine == "singularity") {
41-
containerOptions "--bind ${workDir}:/song-client/logs"
41+
containerOptions "--bind \$(pwd):/song-client/logs"
4242
}
4343

4444
input:

process/song_publish.nf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ process songPublish {
3434
container "${ params.song_container ?: params.container}:${params.song_container_version ?: params.container_version}"
3535

3636
if (workflow.containerEngine == "singularity") {
37-
containerOptions "--bind ${workDir}:/song-client/logs"
37+
containerOptions "--bind \$(pwd):/song-client/logs"
3838
}
3939

4040
tag "${analysis_id}"

process/song_submit.nf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ process songSubmit {
3434
container "${ params.song_container ?: params.container}:${params.song_container_version ?: params.container_version}"
3535

3636
if (workflow.containerEngine == "singularity") {
37-
containerOptions "--bind ${workDir}:/song-client/logs"
37+
containerOptions "--bind \$(pwd):/song-client/logs"
3838
}
3939

4040
tag "${study_id}"

0 commit comments

Comments
 (0)