Skip to content

Commit

Permalink
Merge branch 'dev' into merge-template-updates
Browse files Browse the repository at this point in the history
  • Loading branch information
ggabernet authored Dec 22, 2023
2 parents 58f09e6 + 4222d35 commit 8b1ebdb
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 3 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](http://semver.org/spec/v2.0.0.
### `Fixed`

- Removed optional output from FilterQuality to not fail silently
- clonal_threshold is validated to be 'auto' or number greater than zero

### `Dependencies`

Expand Down
15 changes: 12 additions & 3 deletions nextflow_schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
"type": "string",
"fa_icon": "fas fa-flask",
"description": "Protocol used for the V(D)J amplicon sequencing library generation.",
"enum": ["specific_pcr_umi", "specific_pcr", "dt_5p_race", "dt_5p_race_umi"],
"enum": ["dt_5p_race", "dt_5p_race_umi", "specific_pcr", "specific_pcr_umi"],
"help_text": "Available protocols are:\n- `specific_pcr_umi`: RT-PCR using transcript-specific primers containing UMIs.\n- `specific_pcr`: RT-PCR using transcript-specific primers.\n- `dt_5p_race_umi`: 5\u2019-RACE PCR using oligo-dT primers and template switch primers containing UMI.\n- `dt_5p_race`: 5\u2019-RACE PCR (i.e. RT is followed by a template switch (TS) step) using oligo-dT primers."
},
"race_linker": {
Expand Down Expand Up @@ -167,7 +167,6 @@
},
"adapter_fasta": {
"type": "string",
"default": "None",
"fa_icon": "fas fa-file",
"description": "Fasta file with adapter sequences to be trimmed."
},
Expand Down Expand Up @@ -235,7 +234,7 @@
"type": "string",
"default": "cut",
"description": "Masking mode for the pRESTO MaskPrimer step. Available: cut, mask, trim, tag.",
"enum": ["cut", "mask", "trim", "tag"],
"enum": ["cut", "mask", "tag", "trim"],
"help_text": "The primer masking modes will perform the following actions:\n\n* `cut`: remove both the primer region and the preceding sequence.\n* `mask`: replace the primer region with Ns and remove the preceding sequence.\n* `trim`: remove the region preceding the primer, but leave the primer region intact.\n* `tag`: leave the input sequence unmodified.",
"fa_icon": "fas fa-mask"
},
Expand Down Expand Up @@ -335,6 +334,16 @@
"default": "",
"properties": {
"clonal_threshold": {
"oneOf": [
{
"type": "string",
"enum": ["auto"]
},
{
"type": "number",
"minimum": 0
}
],
"type": ["string", "number"],
"default": "auto",
"fa_icon": "fab fa-pagelines",
Expand Down

0 comments on commit 8b1ebdb

Please sign in to comment.