Skip to content

Commit

Permalink
unpin bioperl in prokka module
Browse files Browse the repository at this point in the history
  • Loading branch information
rpetit3 committed Apr 7, 2024
1 parent a7e2c15 commit f0f3b32
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions modules/nf-core/prokka/main.nf
Expand Up @@ -2,7 +2,7 @@
include { initOptions; saveFiles } from '../../../lib/nf/functions'
options = initOptions(params.containsKey("options") ? params.options : [:], 'prokka')
options.btype = options.btype ?: "main"
conda_tools = "bioconda::prokka=1.14.6 bioconda::perl-bioperl=1.7.2"
conda_tools = "bioconda::prokka=1.14.6"
conda_name = conda_tools.replace("=", "-").replace(":", "-").replace(" ", "-")
conda_env = file("${params.condadir}/${conda_name}").exists() ? "${params.condadir}/${conda_name}" : conda_tools

Expand All @@ -12,8 +12,8 @@ process PROKKA {

conda (params.enable_conda ? conda_env : null)
container "${ workflow.containerEngine == 'singularity' && !params.singularity_pull_docker_container ?
'https://depot.galaxyproject.org/singularity/prokka:1.14.6--pl526_0' :
'quay.io/biocontainers/prokka:1.14.6--pl526_0' }"
'https://depot.galaxyproject.org/singularity/prokka:1.14.6--pl5321hdfd78af_5' :
'quay.io/biocontainers/prokka:1.14.6--pl5321hdfd78af_5' }"

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

0 comments on commit f0f3b32

Please sign in to comment.