mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-13 05:13:09 +00:00
Update agrvate to latest version (#728)
The new version of agrvate fixes an issue where sample names with a `.` (dot) in there names caused the name to be truncated https://github.com/VishnuRaghuram94/AgrVATE/releases/tag/v1.0.1 Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com>
This commit is contained in:
parent
0d53a34eed
commit
8e9d6cd5e4
1 changed files with 3 additions and 3 deletions
|
@ -11,11 +11,11 @@ process AGRVATE {
|
|||
mode: params.publish_dir_mode,
|
||||
saveAs: { filename -> saveFiles(filename:filename, options:params.options, publish_dir:getSoftwareName(task.process), meta:meta, publish_by_meta:['id']) }
|
||||
|
||||
conda (params.enable_conda ? "bioconda::agrvate=1.0" : null)
|
||||
conda (params.enable_conda ? "bioconda::agrvate=1.0.1" : null)
|
||||
if (workflow.containerEngine == 'singularity' && !params.singularity_pull_docker_container) {
|
||||
container "https://depot.galaxyproject.org/singularity/agrvate:1.0--hdfd78af_0"
|
||||
container "https://depot.galaxyproject.org/singularity/agrvate:1.0.1--hdfd78af_0"
|
||||
} else {
|
||||
container "quay.io/biocontainers/agrvate:1.0--hdfd78af_0"
|
||||
container "quay.io/biocontainers/agrvate:1.0.1--hdfd78af_0"
|
||||
}
|
||||
|
||||
input:
|
||||
|
|
Loading…
Reference in a new issue