Skip to content

Commit

Permalink
Added monochromeLogs parameter to suppress warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
GallVp committed Oct 8, 2024
1 parent e4b0df5 commit 21e90d1
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### `Fixed`

1. Now using `${meta.id}_trim` as prefix for `FASTQC` files
2. Added `monochromeLogs` parameter to suppress warnings

### `Dependencies`

Expand Down
1 change: 1 addition & 0 deletions docs/parameters.md
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,7 @@ Less common options for the pipeline, typically set in a config file.
| `plaintext_email` | Send plain-text email instead of HTML. | `boolean` | | | True |
| `max_multiqc_email_size` | File size limit when attaching MultiQC reports to summary emails. | `string` | 25.MB | | True |
| `monochrome_logs` | Do not use coloured log outputs. | `boolean` | | | True |
| `monochromeLogs` | Do not use coloured log outputs. | `boolean` | | | True |
| `hook_url` | Incoming hook URL for messaging service | `string` | | | True |
| `validate_params` | Boolean whether to validate parameters against the schema at runtime | `boolean` | True | | True |
| `validationShowHiddenParams` | Show all params when using `--help` | `boolean` | | | True |
Expand Down
1 change: 1 addition & 0 deletions nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ params {
email_on_fail = null
plaintext_email = false
monochrome_logs = false
monochromeLogs = false
hook_url = null
help = false
version = false
Expand Down
6 changes: 6 additions & 0 deletions nextflow_schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -444,6 +444,12 @@
"fa_icon": "fas fa-palette",
"hidden": true
},
"monochromeLogs": {
"type": "boolean",
"fa_icon": "fas fa-palette",
"description": "Do not use coloured log outputs.",
"hidden": true
},
"hook_url": {
"type": "string",
"description": "Incoming hook URL for messaging service",
Expand Down

0 comments on commit 21e90d1

Please sign in to comment.