Skip to content

Commit

Permalink
docs: Add host removal to schema
Browse files Browse the repository at this point in the history
  • Loading branch information
jvfe committed Mar 24, 2024
1 parent 6bc6f2c commit e2d74d3
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 5 deletions.
1 change: 1 addition & 0 deletions docs/params.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ Choose to skip pipeline steps
| `skip_classification` | Skip taxonomic classification | `boolean` | | | |
| `skip_alignment` | Skip alignment | `boolean` | | | |
| `skip_functional` | Skip functional annotation | `boolean` | | | |
| `skip_host_removal` | Skip host removal | `boolean` | | | |

## Decontamination

Expand Down
29 changes: 24 additions & 5 deletions nextflow_schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,10 @@
"type": "object",
"fa_icon": "fas fa-terminal",
"description": "Define where the pipeline should find input data and save output data.",
"required": ["input", "outdir"],
"required": [
"input",
"outdir"
],
"properties": {
"input": {
"type": "string",
Expand Down Expand Up @@ -66,6 +69,11 @@
"type": "boolean",
"fa_icon": "fas fa-database",
"description": "Skip functional annotation"
},
"skip_host_removal": {
"type": "boolean",
"description": "Skip host removal",
"fa_icon": "fab fa-ioxhost"
}
},
"fa_icon": "fas fa-angle-double-right"
Expand Down Expand Up @@ -136,7 +144,9 @@
"description": "Run Kraken2 classifier"
}
},
"required": ["kaiju_db"],
"required": [
"kaiju_db"
],
"fa_icon": "fab fa-pagelines"
},
"functional": {
Expand Down Expand Up @@ -170,7 +180,9 @@
"description": "Maximum evalue of a match to be used for annotation"
}
},
"required": ["id_mapping"],
"required": [
"id_mapping"
],
"fa_icon": "fas fa-gavel"
},
"assembly": {
Expand Down Expand Up @@ -278,7 +290,14 @@
"description": "Method used to save pipeline results to output directory.",
"help_text": "The Nextflow `publishDir` option specifies which intermediate files should be saved to the output directory. This option tells the pipeline what method should be used to move these files. See [Nextflow docs](https://www.nextflow.io/docs/latest/process.html#publishdir) for details.",
"fa_icon": "fas fa-copy",
"enum": ["symlink", "rellink", "link", "copy", "copyNoFollow", "move"],
"enum": [
"symlink",
"rellink",
"link",
"copy",
"copyNoFollow",
"move"
],
"hidden": true
},
"email_on_fail": {
Expand Down Expand Up @@ -394,4 +413,4 @@
"$ref": "#/definitions/generic_options"
}
]
}
}

0 comments on commit e2d74d3

Please sign in to comment.