Skip to content

Commit

Permalink
add optional boostrap tree output for gubbins
Browse files Browse the repository at this point in the history
  • Loading branch information
rpetit3 committed Apr 25, 2024
1 parent 60b8053 commit 9a532ac
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 0 deletions.
1 change: 1 addition & 0 deletions modules/nf-core/gubbins/main.nf
Expand Up @@ -29,6 +29,7 @@ process GUBBINS {
tuple val(meta), path("*.branch_base_reconstruction.embl.gz"), emit: embl_branch
tuple val(meta), path("*.final_tree.tre") , emit: tree
tuple val(meta), path("*.node_labelled.final_tree.tre") , emit: tree_labelled
tuple val(meta), path("*.final_bootstrapped_tree.tre") , emit: bootstrap_tree, optional: true
path "*.{log,err}" , optional: true, emit: logs
path ".command.*" , emit: nf_logs
path "versions.yml" , emit: versions
Expand Down
4 changes: 4 additions & 0 deletions modules/nf-core/gubbins/meta.yml
Expand Up @@ -62,5 +62,9 @@ output:
type: file
description: Recombination removed RAxML phylogenetic tree (nodes labelled)
pattern: "*.{node_labelled.final_tree.tre}"
- bootstrap_tree:
type: file
description: Recombination removed RAxML phylogenetic tree with bootstrap values
pattern: "*.{final_tree.tre}"
authors:
- "@avantonder"
1 change: 1 addition & 0 deletions modules/nf-core/mlst/params.config
Expand Up @@ -9,4 +9,5 @@ params {
mincov = 10
minscore = 50
nopath = false
mlst_db = ""
}
6 changes: 6 additions & 0 deletions modules/nf-core/mlst/params.json
Expand Up @@ -41,6 +41,12 @@
"default": false,
"description": "Strip filename paths from FILE column",
"fa_icon": "fas fa-expand-arrows-alt"
},
"mlst_db": {
"type": "string",
"default": "",
"description": "A custom MLST database to use. Contents should be within a directory called 'mlstdb'",
"fa_icon": "fas fa-expand-arrows-alt"
}
}
}
Expand Down

0 comments on commit 9a532ac

Please sign in to comment.