File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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} "
Original file line number Diff line number Diff 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:
Original file line number Diff line number Diff 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} "
Original file line number Diff line number Diff 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} "
Original file line number Diff line number Diff line change 2121*/
2222
2323nextflow. enable. dsl = 2
24- version = ' 2.9.1 '
24+ version = ' 2.9.2 '
2525
2626// universal params go here, change default value as needed
2727params. publish_dir = " " // set to empty string will disable publishDir
Original file line number Diff line number Diff line change 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 ,
Original file line number Diff line number Diff line change 2525*/
2626
2727nextflow. enable. dsl = 2
28- version = ' 2.9.1 '
28+ version = ' 2.9.2 '
2929
3030// universal params go here, change default value as needed
3131params. max_retries = 5 // set to 0 will disable retry
You can’t perform that action at this time.
0 commit comments