-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcluster_solution_schema.json
111 lines (111 loc) · 3.18 KB
/
cluster_solution_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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://hexcalc.ucsc.edu:9000/",
"description": "Relevant metadata for a cluster solution executed on single cell mRNA seq data.",
"type": "object",
"additionalProperties": false,
"required": [
"name",
"clusters"
],
"properties": {
"name": {
"description": "Name of the cluster solution given by the analyst.",
"type": "string"
},
"method": {
"description": "Name of the method used to create cluster solution given by the analyst.",
"type": "string"
},
"method_url": {
"description": "Url to documentation of the method used to create cluster solution.",
"type": "string"
},
"analyst": {
"description": "User name attached to cluster solution submission.",
"type": "string"
},
"dataset_id": {
"description": "Dataset identifier.",
"type": "string"
},
"na_count": {
"description": "The number of cells that are contained in the dataset but not assigned to a cluster.",
"type": "number"
},
"clusters": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": false,
"required": [
"name",
"cell_count",
"cells"
],
"properties": {
"name": {
"description": "The label used to identify a cluster.",
"type": "string"
},
"cell_count": {
"description": "The number of cells in the cluster.",
"type": "number"
},
"cells": {
"description": "Cells belonging to the cluster.",
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"probability": {
"type": "number"
}
},
"required": [
"id"
]
}
},
"markers": {
"description": "Cells belonging to the cluster.",
"type": "array",
"items": {
"type": "object",
"required": [
"symbol",
"metrics",
"values"
],
"properties": {
"symbol": {
"type": "string",
"description": "Hugo gene identifier."
},
"metrics": {
"type": "array",
"minItems": 1,
"items": {
"type": "string"
},
"description": "Names of the metrics calculated for the gene marker, parallel with the values array."
},
"values": {
"type": "array",
"minItems": 1,
"items": {
"type": "number"
},
"description": "Values of the metrics calculated for the gene marker, parallel with the metrics array."
}
}
}
}
}
}
}
}
}