-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtemplate.json
43 lines (43 loc) · 1.18 KB
/
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": {
"input_source": {
"default": "flat_folder",
"title": "Source folder structure (include trailing slash)",
"type": "string",
"enum": [
"flat_folder",
"library_tree"
]
},
"input_folder": {
"default": "s3://uwlm-personal/nkrumm/umi/fastq/280R/",
"title": "Folder with FASTQs",
"type": "string"
},
"output": {
"default": "s3://uwlm-personal/nkrumm/umi/out/",
"title": "Folder for output",
"type": "string"
},
"run_id": {
"default": "280R",
"title": "Run ID",
"type": "string"
},
"downsample_reads": {
"default": null,
"title": "Downsample FASTQ reads to # of pairs:",
"type": "string"
},
"save_intermediate_output": {
"default": false,
"title": "Save intermediate output bam (and other) files.",
"type": "boolean"
}
},
"required": [
"input_folder",
"run_id"
],
"type": "object"
}