Skip to content

Commit

Permalink
Do not enable conda by default
Browse files Browse the repository at this point in the history
  • Loading branch information
BobLiterman committed Jan 22, 2025
1 parent 8f381d8 commit b7cbd6a
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 14 deletions.
21 changes: 11 additions & 10 deletions conf/profiles.config
Original file line number Diff line number Diff line change
Expand Up @@ -20,18 +20,14 @@ profiles {
params.mash_module = "/nfs/software/modules/mash/2.3"
params.trim_name = "_contigs_skesa"
}
csp2_galaxy {
csp2_reedling {
conda.enabled = true
conda.useMicromamba = true
conda.cacheDir = "${projectDir}/CSP2_env"
process.conda = "${projectDir}/conf/CSP2.yaml"

process.queue = "ondemand-small"

executor.$slurm.exitReadTimeout = 120000
process.conda = "${projectDir}/conf/CSP2.yaml"

process.executor = 'slurm'
params.cores = 1
params.cores = 48
params.python_module = ""
params.mummer_module = ""
params.skesa_module = ""
Expand All @@ -40,14 +36,18 @@ profiles {
params.mash_module = ""
params.trim_name = ""
}
csp2_reedling {
csp2_galaxy {
conda.enabled = true
conda.useMicromamba = true
conda.cacheDir = "${projectDir}/CSP2_env"
process.conda = "${projectDir}/conf/CSP2.yaml"
process.conda = "${projectDir}/conf/CSP2.yaml"

process.queue = "ondemand-small"

executor.$slurm.exitReadTimeout = 120000

process.executor = 'slurm'
params.cores = 48
params.cores = 1
params.python_module = ""
params.mummer_module = ""
params.skesa_module = ""
Expand All @@ -56,4 +56,5 @@ profiles {
params.mash_module = ""
params.trim_name = ""
}

}
5 changes: 1 addition & 4 deletions nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,10 @@
----------------------------------------------------------------------------------------
*/

// Enable conda
conda.enabled = true

// Import profile settings
includeConfig "conf/profiles.config"

// CPU/memory settings
// CPU/memory settings (Required for Galaxy)
process {
withLabel: 'mummerMem' {
task_name = 'CSP2-MUMmer'
Expand Down

0 comments on commit b7cbd6a

Please sign in to comment.