Skip to content

Commit

Permalink
Merge pull request #6 from artic-network/dev
Browse files Browse the repository at this point in the history
Bump to 1.0.12
  • Loading branch information
rmcolq authored Nov 11, 2024
2 parents 6de92b4 + 3996299 commit 266ab8f
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 1 deletion.
2 changes: 2 additions & 0 deletions main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,8 @@ process squirrel {
extra += " -bf bg.fa"
if ( params.outgroups )
extra += " --outgroups ${params.outgroups}"
if ( params.extra_flags )
extra += " ${params.extra_flags}"

"""
export XDG_CACHE_HOME=\$PWD/.cache
Expand Down
3 changes: 2 additions & 1 deletion nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ params {
additional_background = null
default_additional_background = "data/empty.fa"
outgroups = null
extra_flags = null

wf {
example_cmd = [
Expand All @@ -64,7 +65,7 @@ manifest {
description = 'Some QUIck Rearranging to Resolve Evolutionary Links.'
mainScript = 'main.nf'
nextflowVersion = '>=20.10.0'
version = '1.0.10'
version = '1.0.12'
}

executor {
Expand Down
6 changes: 6 additions & 0 deletions nextflow_schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,12 @@
"title": "Concatenate CDS ",
"description": "Concatenate coding sequences for each genome, separated by `NNN`.",
"help_text": "Default: write out as separate records."
},
"extra_flags": {
"type": "string",
"title": "Extra flags ",
"description": "Additional command line arguments to be passed to squirrel.",
"help_text": ""
}
}
},
Expand Down

0 comments on commit 266ab8f

Please sign in to comment.