Skip to content

Commit

Permalink
fix prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
ggabernet committed Apr 3, 2022
1 parent bced39f commit 6f77684
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 45 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
- [#150](https://github.com/nf-core/airrflow/pull/150) Added option to search for reverse primers.
- [#159](https://github.com/nf-core/airrflow/pull/159) Template update to nf-core tools v2.3.1, v2.3.1
- [#161](https://github.com/nf-core/airrflow/pull/161) Add option to skip clustering sequences in the UMI workflow

### `Fixed`

- [#150](https://github.com/nf-core/airrflow/pull/150): Fixed cprimer start position, when cprimer in R2 reads.
Expand Down
55 changes: 10 additions & 45 deletions nextflow_schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,21 +10,15 @@
"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": {
"subworkflow": {
"type": "string",
"default": "bcellmagic",
"fa_icon": "fas fa-project-diagram",
"hidden": true,
"description": "Specify the subworkflow to be executed.",
"enum": [
"bcellmagic",
"reveal"
]
"enum": ["bcellmagic", "reveal"]
},
"input": {
"type": "string",
Expand Down Expand Up @@ -57,12 +51,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": ["specific_pcr_umi", "specific_pcr", "dt_5p_race", "dt_5p_race_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 @@ -99,10 +88,7 @@
"type": "string",
"default": "human",
"description": "Species to perform Igblast. Choose from: human, mouse.",
"enum": [
"human",
"mouse"
]
"enum": ["human", "mouse"]
}
},
"help_text": "",
Expand Down Expand Up @@ -141,10 +127,7 @@
"default": "R1",
"fa_icon": "fas fa-dna",
"description": "Indicate if C region primers are in the R1 or R2 reads.",
"enum": [
"R1",
"R2"
]
"enum": ["R1", "R2"]
},
"primer_revpr": {
"type": "boolean",
Expand All @@ -171,10 +154,7 @@
"default": "R1",
"description": "Indicate if UMI indices are recorded in the R1 (default) or R1 fastq file.",
"help_text": "The pipeline requires UMI barcodes for identifying unique transcripts. These barcodes are typically read from an index file but sometimes can be provided merged with the start of the R1 or R2 reads. If provided in an additional index file, set the `--index_file` parameter, if provided merged with the R1 or R2 reads, set the `--umi_position` parameter to R1 or R2, respectively.",
"enum": [
"R1",
"R2"
],
"enum": ["R1", "R2"],
"fa_icon": "fas fa-barcode"
},
"umi_length": {
Expand Down Expand Up @@ -220,12 +200,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", "trim", "tag"],
"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 @@ -448,14 +423,7 @@
"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 @@ -552,10 +520,7 @@
"description": "Whether to apply the chimera removal filter"
},
"threshold": {
"type": [
"string",
"number"
],
"type": ["string", "number"],
"default": "auto",
"description": "Use `auto` to automatically set a threshold to identify clonally related sequences. Set"
},
Expand Down Expand Up @@ -615,4 +580,4 @@
"$ref": "#/definitions/subworkflow_reveal"
}
]
}
}

0 comments on commit 6f77684

Please sign in to comment.