-
Notifications
You must be signed in to change notification settings - Fork 2
/
nextflow_schema.json
43 lines (43 loc) · 1.53 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
{
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "https://raw.githubusercontent.com/./master/nextflow_schema.json",
"title": ". pipeline parameters",
"description": "",
"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 samplesheet.",
"required": ["indir", "outdir"],
"properties": {
"indir": {
"type": "string",
"format": "directory-path",
"description": "The input directory where fastq files are located. You have to use absolute paths to storage on Cloud infrastructure."
},
"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"
},
"genome": {
"type": "string"
},
"fasta": {
"type": "string"
},
"bwaindex": {
"type": "string"
}
}
}
},
"allOf": [
{
"$ref": "#/definitions/input_output_options"
}
]
}