-
Notifications
You must be signed in to change notification settings - Fork 2
/
template.json
43 lines (43 loc) · 895 Bytes
/
template.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
{
"properties": {
"output": {
"title": "Output Location (s3://)",
"type": "string"
},
"fastq_list": {
"default": "test-single/fastq-list.txt",
"title": "FASTQ list (.txt)",
"type": "string"
},
"sample_information": {
"default": "test-single/sample-information.csv",
"title": "Manifest (.csv)",
"type": "string"
},
"index_file_type": {
"default": "single",
"title": "Index strategy",
"type": "string",
"enum": [
"single",
"dual",
"none"
]
},
"dada_params": {
"default": "data/dada_params_250.json",
"type": "string",
"title": "JSON file providing dada2 parameters",
"enum": [
"data/dada_params_250.json",
"data/dada_params_300.json"
]
}
},
"required": [
"sample_information",
"fastq_list",
"output"
],
"type": "object"
}