Skip to content

Commit

Permalink
revert format changes done by prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
danlu1 committed Mar 25, 2024
1 parent 7eb949c commit 2ecf8db
Showing 1 changed file with 14 additions and 36 deletions.
50 changes: 14 additions & 36 deletions nextflow_schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": [
"step",
"outdir"
],
"required": ["step", "outdir"],
"properties": {
"step": {
"type": "string",
Expand Down Expand Up @@ -79,7 +76,7 @@
"fa_icon": "fas fa-clock",
"description": "Estimate interval size.",
"help_text": "Intervals are parts of the chopped up genome used to speed up preprocessing and variant calling. See `--intervals` for more info. \n\nChanging this parameter, changes the number of intervals that are grouped and processed together. Bed files from target sequencing can contain thousands or small intervals. Spinning up a new process for each can be quite resource intensive. Instead it can be desired to process small intervals together on larger nodes. \nIn order to make use of this parameter, no runtime estimate can be present in the bed file (column 5). ",
"default": 200000.0
"default": 200000
},
"no_intervals": {
"type": "boolean",
Expand Down Expand Up @@ -225,11 +222,7 @@
"type": "string",
"default": "bwa-mem",
"fa_icon": "fas fa-puzzle-piece",
"enum": [
"bwa-mem",
"bwa-mem2",
"dragmap"
],
"enum": ["bwa-mem", "bwa-mem2", "dragmap"],
"description": "Specify aligner to be used to map reads to reference genome.",
"help_text": "`Sarek` will build missing indices automatically if not provided. Set `--bwa false` if indices should be (re-)built.\nIf `DragMap` is selected as aligner, it is recommended to skip baserecalibration with `--skip_tools baserecalibrator`. See [here](https://gatk.broadinstitute.org/hc/en-us/articles/4407897446939--How-to-Run-germline-single-sample-short-variant-discovery-in-DRAGEN-mode) for more info.\n",
"hidden": true
Expand Down Expand Up @@ -281,23 +274,23 @@
},
"ascat_min_base_qual": {
"type": "number",
"default": 20.0,
"default": 20,
"fa_icon": "fas fa-greater-than",
"description": "Overwrite Ascat min base quality required for a read to be counted.",
"hidden": true,
"help_text": "For more details see [here](https://raw.githubusercontent.com/VanLoo-lab/ascat/master/man/ASCAT-manual.pdf)"
},
"ascat_min_counts": {
"type": "number",
"default": 10.0,
"default": 10,
"fa_icon": "fas fa-align-center",
"description": "Overwrite Ascat minimum depth required in the normal for a SNP to be considered.",
"hidden": true,
"help_text": "For more details, see [here](https://raw.githubusercontent.com/VanLoo-lab/ascat/master/man/ASCAT-manual.pdf)."
},
"ascat_min_map_qual": {
"type": "number",
"default": 35.0,
"default": 35,
"fa_icon": "fas fa-balance-scale-left",
"description": "Overwrite Ascat min mapping quality required for a read to be counted.",
"hidden": true,
Expand Down Expand Up @@ -341,23 +334,23 @@
},
"cf_contamination": {
"type": "number",
"default": 0.0,
"default": 0,
"fa_icon": "fas fa-broom",
"description": "Design known contamination value for Control-FREEC",
"hidden": true,
"help_text": "Details, see [ControlFREEC manual](http://boevalab.inf.ethz.ch/FREEC/tutorial.html)."
},
"cf_minqual": {
"type": "number",
"default": 0.0,
"default": 0,
"fa_icon": "fas fa-greater-than",
"hidden": true,
"description": "Minimal sequencing quality for a position to be considered in BAF analysis.",
"help_text": "Details, see [ControlFREEC manual](http://boevalab.inf.ethz.ch/FREEC/tutorial.html)."
},
"cf_mincov": {
"type": "number",
"default": 0.0,
"default": 0,
"fa_icon": "fas fa-align-center",
"hidden": true,
"description": "Minimal read coverage for a position to be considered in BAF analysis.",
Expand All @@ -380,7 +373,7 @@
},
"cnvkit_reference": {
"type": "string",
"default": "None",
"default": null,
"fa_icon": "fas fa-file",
"help_text": "https://cnvkit.readthedocs.io/en/stable/pipeline.html?highlight=reference.cnn#batch",
"description": "Copy-number reference for CNVkit",
Expand Down Expand Up @@ -540,11 +533,7 @@
"type": "string",
"default": "vcf",
"description": "VEP output-file format.",
"enum": [
"json",
"tab",
"vcf"
],
"enum": ["json", "tab", "vcf"],
"help_text": "Sets the format of the output-file from VEP. Available formats: json, tab and vcf.",
"fa_icon": "fas fa-table",
"hidden": true
Expand All @@ -567,14 +556,10 @@
"ascat_genome": {
"type": "string",
"fa_icon": "fa-solid fa-text",
"default": "None",
"default": null,
"description": "ASCAT genome.",
"help_text": "If you use AWS iGenomes, this has already been set for you appropriately.\n\nMust be set to run ASCAT, either hg19 or hg38. If you use AWS iGenomes, this has already been set for you appropriately.",
"enum": [
"None",
"hg19",
"hg38"
],
"enum": ["None", "hg19", "hg38"],
"hidden": true
},
"ascat_alleles": {
Expand Down Expand Up @@ -942,14 +927,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": {
Expand Down

0 comments on commit 2ecf8db

Please sign in to comment.