-
Notifications
You must be signed in to change notification settings - Fork 2
/
schema.json
92 lines (92 loc) · 2.85 KB
/
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "JSON schema for samples config for the hutspot pipeline",
"type": "object",
"additionalProperties": false,
"required": [
"samples",
"reference",
"dbsnp",
"known_sites"
],
"optional": [
"scatter_size",
"female_threshold",
"bedfile",
"coverage_threshold",
"restrict_BQSR",
"gatk_jar",
"multisample_vcf",
"baitsfile"
],
"properties": {
"samples": {
"type": "object",
"additionalProperties": {
"description": "sample object",
"type": "object",
"required": ["read_groups"],
"properties": {
"read_groups": {
"type": "object",
"additionalProperties": {
"description": "library",
"type": "object",
"required": ["R1", "R2"],
"properties": {
"R1": {"type": "string"},
"R2": {"type": "string"}
}
}
}
}
}
},
"reference": {
"description": "Reference fasta file to map against",
"type": "string"
},
"dbsnp": {
"description": "VCF file to be used to annotate variants",
"type": "string"
},
"known_sites": {
"description": "VCF files of known sites, to be used to recalibrate the quality scores",
"type": "array",
"minItems": 1
},
"scatter_size": {
"description": "Size of the chunks to split the variant calling into",
"type": "integer"
},
"female_threshold": {
"description": "Fraction of reads between X and the autosomes to call as female",
"type": "number"
},
"targetsfile": {
"description": "Bed file of the targets of the capture kit. Used to calculate coverage",
"type": "string"
},
"baitsfile": {
"description": "Bed file of the baits of the capture kit. Used to calculate picard HsMetrics",
"type": "string"
},
"coverage_threshold": {
"description": "One or more thresholds to calculate coverage for, one bedfile per value per sample",
"type": "array",
"minItems": 1
},
"restrict_BQSR": {
"description": "Restrict BQSR to the listed chromosome",
"type": "string"
},
"multisample_vcf": {
"description": "Create a true multisample VCF file, in addition to the regular per-sample VCF files",
"type": "boolean"
},
"refflat": {
"description": "RefFlat file with transcripts",
"type": "string"
}
}
}