From d74004af17ab65c5c5cf2b545b807b4c4845f85b Mon Sep 17 00:00:00 2001 From: ggabernet Date: Wed, 27 Apr 2022 15:59:06 +0200 Subject: [PATCH] fix prettier --- modules.json | 2 +- nextflow_schema.json | 55 ++++++++------------------------------------ 2 files changed, 11 insertions(+), 46 deletions(-) diff --git a/modules.json b/modules.json index f24e58b5..0317fdc3 100644 --- a/modules.json +++ b/modules.json @@ -14,4 +14,4 @@ } } } -} \ No newline at end of file +} diff --git a/nextflow_schema.json b/nextflow_schema.json index dffb0281..90733faa 100644 --- a/nextflow_schema.json +++ b/nextflow_schema.json @@ -10,10 +10,7 @@ "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", @@ -21,10 +18,7 @@ "fa_icon": "fas fa-project-diagram", "hidden": true, "description": "Specify the subworkflow to be executed.", - "enum": [ - "bcellmagic", - "reveal" - ] + "enum": ["bcellmagic", "reveal"] }, "input": { "type": "string", @@ -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": { @@ -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": "", @@ -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", @@ -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": { @@ -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" }, @@ -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": { @@ -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" }, @@ -616,4 +581,4 @@ "$ref": "#/definitions/subworkflow_reveal" } ] -} \ No newline at end of file +}