Skip to content

Commit

Permalink
add enable_conda to remove warnings on runtime
Browse files Browse the repository at this point in the history
  • Loading branch information
Jessica Rowell authored and Jessica Rowell committed Mar 18, 2024
1 parent b713db8 commit 34c9861
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
1 change: 1 addition & 0 deletions conf/test_params.config
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ params {
docker_container = 'staphb/tostadas:latest'
docker_container_vadr = 'staphb/vadr:latest'
docker_container_bakta = 'quay.io/biocontainers/bakta:1.8.2--pyhdfd78af_0'
enable_conda = false
/*
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
ANNOTATION SUBWORKFLOW
Expand Down
10 changes: 4 additions & 6 deletions nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -73,9 +73,7 @@ params {
docker_container = 'staphb/tostadas:latest'
docker_container_vadr = 'staphb/vadr:latest'
scicomp = false
run_conda = false
run_docker = false
run_singularity = false
enable_conda = false

// cleanup subworkflow
cleanup = false
Expand Down Expand Up @@ -166,7 +164,7 @@ profiles {

// run docker + specify settings
conda {
enable_conda = true
params.enable_conda = true
conda.enabled = true
docker.enabled = false
singularity.enabled = false
Expand All @@ -181,7 +179,7 @@ profiles {
params.run_singularity = false
}
docker {
enable_conda = false
params.enable_conda = false
docker.enabled = true
docker.userEmulation = true
singularity.enabled = false
Expand All @@ -202,10 +200,10 @@ profiles {
}
}
singularity {
params.enable_conda = false
singularity.enabled = true
singularity.autoMounts = true
docker.enabled = false
enable_conda = false
podman.enabled = false
shifter.enabled = false
charliecloud.enabled = false
Expand Down

0 comments on commit 34c9861

Please sign in to comment.