-
Notifications
You must be signed in to change notification settings - Fork 104
/
nextflow_schema.json
46 lines (46 loc) · 1.58 KB
/
nextflow_schema.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "https://raw.githubusercontent.com/nextflow-io/rnaseq-nf/master/nextflow_schema.json",
"title": "rnaseq-nf pipeline parameters",
"description": "Proof of concept of a RNA-seq pipeline implemented with Nextflow",
"type": "object",
"definitions": {
"input_output_options": {
"title": "Input/output options",
"type": "object",
"fa_icon": "fas fa-terminal",
"description": "Define where the pipeline should find input data and save output data.",
"properties": {
"outdir": {
"type": "string",
"format": "directory-path",
"description": "The output directory where the results will be saved. You have to use absolute paths to storage on Cloud infrastructure.",
"fa_icon": "fas fa-folder-open",
"default": "results"
},
"reads": {
"type": "string",
"description": "The input read-pair files",
"fa_icon": "fas fa-folder-open",
"default": "${projectDir}/data/ggal/ggal_gut_{1,2}.fq"
},
"transcriptome": {
"type": "string",
"description": "The input transcriptome file",
"fa_icon": "fas fa-folder-open",
"default": "${projectDir}/data/ggal/ggal_1_48850000_49020000.Ggal71.500bpflank.fa"
},
"multiqc": {
"type": "string",
"fa_icon": "fas fa-folder-open",
"default": "${projectDir}/multiqc"
}
}
}
},
"allOf": [
{
"$ref": "#/definitions/input_output_options"
}
]
}