Skip to content

Commit ac2fcae

Browse files
committed
Fix linting
1 parent 8102aa3 commit ac2fcae

File tree

2 files changed

+5
-20
lines changed

2 files changed

+5
-20
lines changed

.prettierignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ results/
66
.DS_Store
77
testing/
88
testing*
9-
*.pyc
9+
*.pyc

nextflow_schema.json

Lines changed: 4 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,7 @@
1010
"type": "object",
1111
"fa_icon": "fas fa-terminal",
1212
"description": "Define where the pipeline should find input data and save output data.",
13-
"required": [
14-
"outdir"
15-
],
13+
"required": ["outdir"],
1614
"properties": {
1715
"input": {
1816
"type": "string",
@@ -368,19 +366,13 @@
368366
"default": "star_salmon",
369367
"description": "Specifies the alignment algorithm to use - available options are 'star_salmon', 'star_rsem' and 'hisat2'.",
370368
"fa_icon": "fas fa-map-signs",
371-
"enum": [
372-
"star_salmon",
373-
"star_rsem",
374-
"hisat2"
375-
]
369+
"enum": ["star_salmon", "star_rsem", "hisat2"]
376370
},
377371
"pseudo_aligner": {
378372
"type": "string",
379373
"description": "Specifies the pseudo aligner to use - available options are 'salmon'. Runs in addition to '--aligner'.",
380374
"fa_icon": "fas fa-hamburger",
381-
"enum": [
382-
"salmon"
383-
]
375+
"enum": ["salmon"]
384376
},
385377
"bam_csi_index": {
386378
"type": "boolean",
@@ -616,14 +608,7 @@
616608
"description": "Method used to save pipeline results to output directory.",
617609
"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.",
618610
"fa_icon": "fas fa-copy",
619-
"enum": [
620-
"symlink",
621-
"rellink",
622-
"link",
623-
"copy",
624-
"copyNoFollow",
625-
"move"
626-
],
611+
"enum": ["symlink", "rellink", "link", "copy", "copyNoFollow", "move"],
627612
"hidden": true
628613
},
629614
"email_on_fail": {

0 commit comments

Comments
 (0)