Skip to content
This repository has been archived by the owner on Apr 19, 2023. It is now read-only.

Move cellranger container path to cellranger config #320

Merged
merged 1 commit into from
Mar 22, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 5 additions & 8 deletions conf/vsc.config
Original file line number Diff line number Diff line change
@@ -1,14 +1,11 @@
params {
sc {
cellranger {
container = 'file:///staging/leuven/res_00001/software/vsn_containers/vibsinglecellnf-cellranger-5.0.1.img'
}
}
}

singularity {
enabled = true
autoMounts = true
runOptions = '--cleanenv -H $PWD -B /ddn1,/staging,/data,${VSC_SCRATCH}'
cacheDir = '/staging/leuven/res_00001/software/vsn_containers/'
}

vsc {
enabled = true
}

10 changes: 6 additions & 4 deletions nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,9 @@ profiles {
vpcx {
includeConfig 'conf/vpcx.config'
}
vsc {
includeConfig 'conf/vsc.config'
}
min {
includeConfig 'conf/min.config'
}
Expand Down Expand Up @@ -462,10 +465,6 @@ profiles {
includeConfig 'conf/test__compute_resources.config'
}

vsc {
includeConfig 'conf/vsc.config'
}

}


Expand All @@ -488,4 +487,7 @@ dag {
min {
enabled = false
}
vsc {
enabled = false
}

10 changes: 10 additions & 0 deletions src/cellranger/conf/base.config
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,16 @@ params {
}
}

if(vsc && vsc.enabled) {
params {
sc {
cellranger {
container = 'file:///staging/leuven/res_00001/software/vsn_containers/vibsinglecellnf-cellranger-5.0.1.img'
}
}
}
}

// define computing resources via process labels
process {
withLabel: 'compute_resources__cellranger_mkfastq' {
Expand Down