Skip to content

Commit

Permalink
Add enable_prokka to schema and patch changes to Prokka module (will …
Browse files Browse the repository at this point in the history
…be reverted when module PR merged)
  • Loading branch information
Jim Downie committed Dec 19, 2024
1 parent 62bf7a4 commit 9693dd7
Show file tree
Hide file tree
Showing 3 changed files with 85 additions and 24 deletions.
3 changes: 2 additions & 1 deletion modules.json
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,8 @@
"prokka": {
"branch": "master",
"git_sha": "666652151335353eef2fcd58880bcef5bc2928e1",
"installed_by": ["modules"]
"installed_by": ["modules"],
"patch": "modules/nf-core/prokka/prokka.diff"
},
"pyrodigal": {
"branch": "master",
Expand Down
55 changes: 55 additions & 0 deletions modules/nf-core/prokka/prokka.diff

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

51 changes: 28 additions & 23 deletions nextflow_schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -117,24 +117,6 @@
}
}
},
"pipeline_options": {
"title": "Pipeline options",
"type": "object",
"description": "General options relating to pipeline operation.",
"default": "",
"properties": {
"enable_summary": {
"type": "boolean",
"default": true,
"description": "Produce a final summary file about each genome bin."
},
"collate_bins": {
"type": "boolean",
"default": true,
"description": "For post-binning steps, collate all bins together so they operate as a single group. May save time when working with small numbers of bins."
}
}
},
"bin_qc_options": {
"title": "Bin QC options",
"type": "object",
Expand All @@ -152,13 +134,18 @@
"description": "Enable QC using CheckM2."
},
"checkm2_db_version": {
"type": "string",
"default": 5571251,
"type": "number",
"default": 5571251.0,
"description": "If no local CheckM2 database provided, the Zenodo record ID of a CheckM2 database to download."
},
"checkm2_local_db": {
"type": "string",
"description": "Path to a local diamond database file for CheckM2."
},
"enable_prokka": {
"type": "boolean",
"default": true,
"description": "Enable non-coding RNA annotation of genome bins using Prokka."
}
}
},
Expand Down Expand Up @@ -212,6 +199,24 @@
}
}
},
"pipeline_options": {
"title": "Pipeline options",
"type": "object",
"description": "General options relating to pipeline operation.",
"default": "",
"properties": {
"enable_summary": {
"type": "boolean",
"default": true,
"description": "Produce a final summary file about each genome bin."
},
"collate_bins": {
"type": "boolean",
"default": true,
"description": "For post-binning steps, collate all bins together so they operate as a single group. May save time when working with small numbers of bins."
}
}
},
"institutional_config_options": {
"title": "Institutional config options",
"type": "object",
Expand Down Expand Up @@ -344,15 +349,15 @@
{
"$ref": "#/$defs/bin_refinement_options"
},
{
"$ref": "#/$defs/pipeline_options"
},
{
"$ref": "#/$defs/bin_qc_options"
},
{
"$ref": "#/$defs/bin_taxonomy_options"
},
{
"$ref": "#/$defs/pipeline_options"
},
{
"$ref": "#/$defs/institutional_config_options"
},
Expand Down

0 comments on commit 9693dd7

Please sign in to comment.