Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update KrakenUniq version to the latest #3873

Merged
merged 2 commits into from
Sep 27, 2023
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
6 changes: 3 additions & 3 deletions modules/nf-core/krakenuniq/build/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ process KRAKENUNIQ_BUILD {
tag "$meta.id"
label 'process_medium'

conda "bioconda::krakenuniq=1.0.2"
conda "bioconda::krakenuniq=1.0.4"
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
'https://depot.galaxyproject.org/singularity/krakenuniq:1.0.2--pl5321h19e8d03_0':
'biocontainers/krakenuniq:1.0.2--pl5321h19e8d03_0' }"
'https://depot.galaxyproject.org/singularity/krakenuniq:1.0.4--pl5321h19e8d03_0':
'biocontainers/krakenuniq:1.0.4--pl5321h19e8d03_0' }"

input:
tuple val(meta), path(custom_library_dir, stageAs: "library/*"), path(custom_taxonomy_dir, stageAs: "taxonomy"), path(custom_seqid2taxid)
Expand Down
6 changes: 3 additions & 3 deletions modules/nf-core/krakenuniq/download/main.nf
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
process KRAKENUNIQ_DOWNLOAD {
label 'process_low'

conda "bioconda::krakenuniq=1.0.2"
conda "bioconda::krakenuniq=1.0.4"
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
'https://depot.galaxyproject.org/singularity/krakenuniq:1.0.2--pl5321h19e8d03_0':
'biocontainers/krakenuniq:1.0.2--pl5321h19e8d03_0' }"
'https://depot.galaxyproject.org/singularity/krakenuniq:1.0.4--pl5321h19e8d03_0':
'biocontainers/krakenuniq:1.0.4--pl5321h19e8d03_0' }"

input:
val pattern
Expand Down
6 changes: 3 additions & 3 deletions modules/nf-core/krakenuniq/preloadedkrakenuniq/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ process KRAKENUNIQ_PRELOADEDKRAKENUNIQ {
tag "$meta.id"
label 'process_high'

conda "bioconda::krakenuniq=1.0.2"
conda "bioconda::krakenuniq=1.0.4"
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
'https://depot.galaxyproject.org/singularity/krakenuniq:1.0.2--pl5321h19e8d03_0':
'biocontainers/krakenuniq:1.0.2--pl5321h19e8d03_0' }"
'https://depot.galaxyproject.org/singularity/krakenuniq:1.0.4--pl5321h19e8d03_0':
'biocontainers/krakenuniq:1.0.4--pl5321h19e8d03_0' }"

input:
tuple val(meta), path(fastqs)
Expand Down
2 changes: 1 addition & 1 deletion modules/nf-core/krakenuniq/preloadedkrakenuniq/meta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ input:
type: directory
description: KrakenUniq database
- ram_chunk_size:
type: val
type: string
description: Amount of maximum amount of RAM each chunk of database that should be loaded at any one time
pattern: "*GB"
- save_output_fastqs:
Expand Down
Loading