Skip to content

Commit

Permalink
hotfix: Add skip_preprocess flag to schema
Browse files Browse the repository at this point in the history
Signed-off-by: jvfe <[email protected]>
  • Loading branch information
jvfe committed Mar 31, 2024
1 parent 7d8e5da commit f651578
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions docs/params.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ Choose to skip pipeline steps
| `skip_functional` | Skip functional annotation | `boolean` | | | |
| `skip_host_removal` | Skip host removal | `boolean` | | | |
| `skip_microview` | Skip MicroView report | `boolean` | | | |
| `skip_preprocess` | Skip Preprocessing steps | `boolean` | | | |

## Decontamination

Expand Down
1 change: 1 addition & 0 deletions nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ params {
maximum_evalue = 0.0001

// Skips
skip_preprocess = false
skip_host_removal = false
skip_classification = false
skip_functional = false
Expand Down
5 changes: 5 additions & 0 deletions nextflow_schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,11 @@
"type": "boolean",
"fa_icon": "fas fa-glasses",
"description": "Skip MicroView report"
},
"skip_preprocess": {
"type": "boolean",
"description": "Skip Preprocessing steps",
"fa_icon": "fas fa-cut"
}
},
"fa_icon": "fas fa-angle-double-right"
Expand Down

0 comments on commit f651578

Please sign in to comment.