Skip to content

Commit

Permalink
bump mobsuite to v3.1.8
Browse files Browse the repository at this point in the history
  • Loading branch information
rpetit3 committed Feb 7, 2024
1 parent f611976 commit 70b4c4e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions modules/nf-core/mobsuite/recon/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ include { get_resources; initOptions; saveFiles } from '../../../../lib/nf/funct
RESOURCES = get_resources(workflow.profile, params.max_memory, params.max_cpus)
options = initOptions(params.containsKey("options") ? params.options : [:], 'mobsuite')
options.btype = options.btype ?: "tools"
conda_tools = "bioconda::mob_suite=3.1.7"
conda_tools = "bioconda::mob_suite=3.1.8"
conda_name = conda_tools.replace("=", "-").replace(":", "-").replace(" ", "-")
conda_env = file("${params.condadir}/${conda_name}").exists() ? "${params.condadir}/${conda_name}" : conda_tools

Expand All @@ -13,8 +13,8 @@ process MOBSUITE_RECON {

conda (params.enable_conda ? conda_env : null)
container "${ workflow.containerEngine == 'singularity' && !params.singularity_pull_docker_container ?
'https://depot.galaxyproject.org/singularity/mob_suite:3.1.7--pyh7cba7a3_0' :
'quay.io/biocontainers/mob_suite:3.1.7--pyh7cba7a3_0' }"
'https://depot.galaxyproject.org/singularity/mob_suite:3.1.8--pyhdfd78af_1' :
'quay.io/biocontainers/mob_suite:3.1.8--pyhdfd78af_1' }"

input:
tuple val(meta), path(fasta)
Expand Down

0 comments on commit 70b4c4e

Please sign in to comment.