Skip to content

Commit

Permalink
update dragonfly and bactopia-py versions
Browse files Browse the repository at this point in the history
  • Loading branch information
rpetit3 committed Jun 2, 2023
1 parent 208a8c2 commit f7611ad
Show file tree
Hide file tree
Showing 6 changed files with 30 additions and 4 deletions.
2 changes: 1 addition & 1 deletion data/conda/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ requirements:
- pip
- python >3.8
run:
- bactopia-py >=1.0.2
- bactopia-py >=1.0.3
- conda >=22.11.0
- coreutils
- mamba >=1.1.0
Expand Down
6 changes: 3 additions & 3 deletions modules/local/bactopia/assembler/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ RESOURCES = get_resources(workflow.profile, params.max_memory, params.max_c
options = initOptions(params.options ? params.options : [:], 'assembler')
options.ignore = [".fastq.gz"]
options.btype = options.btype ?: "main"
conda_tools = "bioconda::bactopia-assembler=1.0.1"
conda_tools = "bioconda::bactopia-assembler=1.0.2"
conda_name = conda_tools.replace("=", "-").replace(":", "-").replace(" ", "-")
conda_env = file("${params.condadir}/${conda_name}").exists() ? "${params.condadir}/${conda_name}" : conda_tools

Expand All @@ -15,8 +15,8 @@ process ASSEMBLER {

conda (params.enable_conda ? conda_env : null)
container "${ workflow.containerEngine == 'singularity' && !params.singularity_pull_docker_container ?
'https://depot.galaxyproject.org/singularity/bactopia-assembler:1.0.1--hdfd78af_0' :
'quay.io/biocontainers/bactopia-assembler:1.0.1--hdfd78af_0' }"
'https://depot.galaxyproject.org/singularity/bactopia-assembler:1.0.2--hdfd78af_0' :
'quay.io/biocontainers/bactopia-assembler:1.0.2--hdfd78af_0' }"

input:
tuple val(meta), path(fq), path(extra)
Expand Down
3 changes: 3 additions & 0 deletions modules/nf-core/snippy/core/params.config
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,7 @@ This file includes default values for shared parameters.
params {
// Snippy Parameters
maxhap = 100
mask = null
mask_char = "X"
snippy_core_opts = null
}
16 changes: 16 additions & 0 deletions modules/nf-core/snippy/core/params.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,22 @@
"description": "Largest haplotype to decompose",
"default": 100,
"fa_icon": "fas fa-angle-double-down"
},
"mask": {
"type": "string",
"description": "BED file of sites to mask",
"fa_icon": "fas fa-angle-double-down"
},
"mask_char": {
"type": "string",
"description": "Masking character",
"default": "X",
"fa_icon": "fas fa-angle-double-down"
},
"snippy_core_opts": {
"type": "string",
"description": "Extra options in quotes for snippy-core",
"fa_icon": "fas fa-italic"
}
}
}
Expand Down
1 change: 1 addition & 0 deletions modules/nf-core/snippy/run/params.config
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,5 @@ params {
maxsoft = 10
bwaopt = null
fbopt = null
snippy_opts = null
}
6 changes: 6 additions & 0 deletions modules/nf-core/snippy/run/params.json
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,12 @@
"type": "string",
"description": "Extra Freebayes options, eg. --theta 1E-6 --read-snp-limit 2",
"fa_icon": "fas fa-italic"
},
"snippy_opts": {
"type": "string",
"description": "Extra options in quotes for Snippy",
"fa_icon": "fas fa-italic",
"hidden": false
}
}
}
Expand Down

0 comments on commit f7611ad

Please sign in to comment.