nci-cidc-schemas 0.27.10__py2.py3-none-any.whl → 0.27.12__py2.py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of nci-cidc-schemas might be problematic. Click here for more details.
- cidc_schemas/__init__.py +1 -1
- cidc_schemas/json_validation.py +7 -3
- cidc_schemas/prism/constants.py +2 -0
- cidc_schemas/schemas/artifacts/artifact_h5ad.json +51 -0
- cidc_schemas/schemas/assays/components/available_assays.json +7 -0
- cidc_schemas/schemas/assays/components/image.json +3 -3
- cidc_schemas/schemas/assays/components/mihc_antibody.json +66 -0
- cidc_schemas/schemas/assays/mihc_assay.json +108 -0
- cidc_schemas/schemas/templates/assays/mibi_template.json +5 -5
- cidc_schemas/schemas/templates/assays/mihc_template.json +244 -0
- {nci_cidc_schemas-0.27.10.dist-info → nci_cidc_schemas-0.27.12.dist-info}/METADATA +1 -1
- {nci_cidc_schemas-0.27.10.dist-info → nci_cidc_schemas-0.27.12.dist-info}/RECORD +16 -13
- {nci_cidc_schemas-0.27.10.dist-info → nci_cidc_schemas-0.27.12.dist-info}/WHEEL +1 -1
- cidc_schemas/schemas/assays/components/mibi_imaging/mibi_files.json +0 -55
- {nci_cidc_schemas-0.27.10.dist-info → nci_cidc_schemas-0.27.12.dist-info}/entry_points.txt +0 -0
- {nci_cidc_schemas-0.27.10.dist-info → nci_cidc_schemas-0.27.12.dist-info}/licenses/LICENSE +0 -0
- {nci_cidc_schemas-0.27.10.dist-info → nci_cidc_schemas-0.27.12.dist-info}/top_level.txt +0 -0
cidc_schemas/__init__.py
CHANGED
cidc_schemas/json_validation.py
CHANGED
|
@@ -7,6 +7,7 @@ import copy
|
|
|
7
7
|
import functools
|
|
8
8
|
import json
|
|
9
9
|
import collections.abc
|
|
10
|
+
import logging
|
|
10
11
|
from contextlib import contextmanager
|
|
11
12
|
from typing import Optional, Callable, Union
|
|
12
13
|
|
|
@@ -19,6 +20,8 @@ from jsonpointer import resolve_pointer
|
|
|
19
20
|
from .constants import SCHEMA_DIR, METASCHEMA_PATH
|
|
20
21
|
from .util import JSON
|
|
21
22
|
|
|
23
|
+
logger = logging.getLogger("cidc_schemas.json_validation")
|
|
24
|
+
|
|
22
25
|
|
|
23
26
|
class InDocRefNotFoundError(ValidationError):
|
|
24
27
|
pass
|
|
@@ -115,12 +118,13 @@ class _Validator(jsonschema.Draft7Validator):
|
|
|
115
118
|
|
|
116
119
|
# protect against None cache
|
|
117
120
|
if self._in_doc_refs_cache is None:
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
+
logger.info(f"_in_doc_refs_cache: {self._in_doc_refs_cache}")
|
|
122
|
+
logger.info(f"scope '{scope}'")
|
|
123
|
+
logger.info(
|
|
121
124
|
"Internal error: _in_doc_refs_cache is None when trying to build cache. "
|
|
122
125
|
"This usually means the validation context was improperly set up."
|
|
123
126
|
)
|
|
127
|
+
self._in_doc_refs_cache = dict()
|
|
124
128
|
|
|
125
129
|
# If there are no cached values for this ref path pattern, collect them
|
|
126
130
|
if ref_path_pattern not in self._in_doc_refs_cache:
|
cidc_schemas/prism/constants.py
CHANGED
|
@@ -25,6 +25,7 @@ SUPPORTED_ASSAYS = [
|
|
|
25
25
|
"misc_data",
|
|
26
26
|
"ctdna",
|
|
27
27
|
"microbiome",
|
|
28
|
+
"mihc",
|
|
28
29
|
]
|
|
29
30
|
|
|
30
31
|
SUPPORTED_SHIPPING_MANIFESTS = [
|
|
@@ -91,6 +92,7 @@ ASSAY_TO_FILEPATH: Dict[str, str] = {
|
|
|
91
92
|
"misc_data",
|
|
92
93
|
"nanostring",
|
|
93
94
|
"olink",
|
|
95
|
+
"mihc",
|
|
94
96
|
]
|
|
95
97
|
},
|
|
96
98
|
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "metaschema/strict_meta_schema.json#",
|
|
3
|
+
"$id": "h5ad_artifact",
|
|
4
|
+
"title": "H5AD Artifact",
|
|
5
|
+
"type": "object",
|
|
6
|
+
"description": "Information about a h5ad file.",
|
|
7
|
+
"additionalProperties": false,
|
|
8
|
+
"properties": {
|
|
9
|
+
"data_format": {
|
|
10
|
+
"description": "Data format.",
|
|
11
|
+
"const": "H5AD"
|
|
12
|
+
},
|
|
13
|
+
"upload_placeholder": {
|
|
14
|
+
"$ref": "artifacts/artifact_core.json#properties/upload_placeholder"
|
|
15
|
+
},
|
|
16
|
+
"artifact_creator": {
|
|
17
|
+
"$ref": "artifacts/artifact_core.json#properties/artifact_creator"
|
|
18
|
+
},
|
|
19
|
+
"uploader": { "$ref": "artifacts/artifact_core.json#properties/uploader" },
|
|
20
|
+
"uuid": { "$ref": "artifacts/artifact_core.json#properties/uuid" },
|
|
21
|
+
"file_name": {
|
|
22
|
+
"$ref": "artifacts/artifact_core.json#properties/file_name"
|
|
23
|
+
},
|
|
24
|
+
"object_url": {
|
|
25
|
+
"$ref": "artifacts/artifact_core.json#properties/object_url"
|
|
26
|
+
},
|
|
27
|
+
"uploaded_timestamp": {
|
|
28
|
+
"$ref": "artifacts/artifact_core.json#properties/uploaded_timestamp"
|
|
29
|
+
},
|
|
30
|
+
"file_size_bytes": {
|
|
31
|
+
"$ref": "artifacts/artifact_core.json#properties/file_size_bytes"
|
|
32
|
+
},
|
|
33
|
+
"md5_hash": { "$ref": "artifacts/artifact_core.json#properties/md5_hash" },
|
|
34
|
+
"crc32c_hash": {
|
|
35
|
+
"$ref": "artifacts/artifact_core.json#properties/crc32c_hash"
|
|
36
|
+
},
|
|
37
|
+
"visible": { "$ref": "artifacts/artifact_core.json#properties/visible" },
|
|
38
|
+
"artifact_category": {
|
|
39
|
+
"$ref": "artifacts/artifact_core.json#properties/artifact_category"
|
|
40
|
+
},
|
|
41
|
+
"facet_group": {
|
|
42
|
+
"$ref": "artifacts/artifact_core.json#properties/facet_group"
|
|
43
|
+
}
|
|
44
|
+
},
|
|
45
|
+
"allOf": [
|
|
46
|
+
{
|
|
47
|
+
"$ref": "artifacts/artifact_core.json"
|
|
48
|
+
}
|
|
49
|
+
],
|
|
50
|
+
"mergeStrategy": "objectMerge"
|
|
51
|
+
}
|
|
@@ -9,12 +9,12 @@
|
|
|
9
9
|
"slide_scanner_model": {
|
|
10
10
|
"description": "Model version of the slide scanner instrument.",
|
|
11
11
|
"type": "string",
|
|
12
|
-
"enum": ["Vectra 2.0", "Hamamatsu", "VectraPolaris/3.0.3", "Not Provided"]
|
|
12
|
+
"enum": ["Vectra 2.0", "Hamamatsu", "VectraPolaris/3.0.3", "Aperio AT2","Not Provided"]
|
|
13
13
|
},
|
|
14
14
|
"image_analysis_software": {
|
|
15
15
|
"description": "Source software for digital pathology and image analysis.",
|
|
16
16
|
"type": "string",
|
|
17
|
-
"enum": ["InForm", "QuPath"]
|
|
17
|
+
"enum": ["InForm", "QuPath", "MARQO", "Not Provided"]
|
|
18
18
|
},
|
|
19
19
|
"image_analysis_software_version": {
|
|
20
20
|
"description": "Source software version for digital pathology and image analysis.",
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"positive_cell_detection": {
|
|
29
29
|
"description": "Model used for positive cell detection in imaging experiment.",
|
|
30
30
|
"type": "string",
|
|
31
|
-
"enum": ["proprietary", "random forest classifier"]
|
|
31
|
+
"enum": ["proprietary", "random forest classifier", "Not Provided"]
|
|
32
32
|
}
|
|
33
33
|
},
|
|
34
34
|
"required": ["slide_scanner_model"]
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "metaschema/strict_meta_schema.json#",
|
|
3
|
+
"$id": "mihc_antibody",
|
|
4
|
+
"title": "mIHC antibody",
|
|
5
|
+
"description": "Data specific to antibody preparation on the mIHC platform",
|
|
6
|
+
"additionalProperties": false,
|
|
7
|
+
"type": "object",
|
|
8
|
+
"allOf": [{ "$ref": "assays/components/antibody.json" }],
|
|
9
|
+
"properties": {
|
|
10
|
+
|
|
11
|
+
"antibody": {"$ref": "assays/components/antibody.json#properties/antibody"},
|
|
12
|
+
"clone": {"$ref": "assays/components/antibody.json#properties/clone"},
|
|
13
|
+
"company": {"$ref": "assays/components/antibody.json#properties/company"},
|
|
14
|
+
"cat_num": {"$ref": "assays/components/antibody.json#properties/cat_num"},
|
|
15
|
+
"lot_num": {"$ref": "assays/components/antibody.json#properties/lot_num"},
|
|
16
|
+
|
|
17
|
+
"export_name": {
|
|
18
|
+
"description": "Name of this antibody in InForm export, e.g. 'CD8 (Opal 520)'",
|
|
19
|
+
"type": "string"
|
|
20
|
+
},
|
|
21
|
+
"staining_order": {
|
|
22
|
+
"description": "Order of staining applied",
|
|
23
|
+
"type": "integer"
|
|
24
|
+
},
|
|
25
|
+
"fluor_wavelength": {
|
|
26
|
+
"description": "Wavelength registered for Alexa Fluor processing.",
|
|
27
|
+
"type": "integer"
|
|
28
|
+
},
|
|
29
|
+
"primary_ab_dilution": {
|
|
30
|
+
"description": "Concentration ratio for primary antibody dilution.",
|
|
31
|
+
"type": "string"
|
|
32
|
+
},
|
|
33
|
+
"dilutent": {
|
|
34
|
+
"description": "Dilution agent used for antibody sample.",
|
|
35
|
+
"type": "string"
|
|
36
|
+
},
|
|
37
|
+
"fluor_dilution": {
|
|
38
|
+
"description": "Concentration ratio for fluor dilution agent.",
|
|
39
|
+
"type": "string"
|
|
40
|
+
},
|
|
41
|
+
"antigen_retrieval_time": {
|
|
42
|
+
"description": "Length of time needed for antigen retrieval.",
|
|
43
|
+
"type": "string",
|
|
44
|
+
"format": "time"
|
|
45
|
+
},
|
|
46
|
+
"primary_incubation_time": {
|
|
47
|
+
"description": "Length of time for primary antibody incubation.",
|
|
48
|
+
"type": "string",
|
|
49
|
+
"format": "time"
|
|
50
|
+
},
|
|
51
|
+
"amplification_time": {
|
|
52
|
+
"description": "Length of time required for amplified signal detection.",
|
|
53
|
+
"type": "string",
|
|
54
|
+
"format": "time"
|
|
55
|
+
}
|
|
56
|
+
},
|
|
57
|
+
"mergeStrategy": "objectMerge",
|
|
58
|
+
"required": [
|
|
59
|
+
"primary_ab_dilution",
|
|
60
|
+
"dilutent",
|
|
61
|
+
"fluor_dilution",
|
|
62
|
+
"antigen_retrieval_time",
|
|
63
|
+
"primary_incubation_time",
|
|
64
|
+
"amplification_time"
|
|
65
|
+
]
|
|
66
|
+
}
|
|
@@ -0,0 +1,108 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "metaschema/strict_meta_schema.json#",
|
|
3
|
+
"$id": "mihc_assay",
|
|
4
|
+
"title": "mIHC Assay",
|
|
5
|
+
"type": "object",
|
|
6
|
+
"$comment": "description used in docs/index.html and docs/assays.mihc.html",
|
|
7
|
+
"description": "Mulitplex Immunohistochemestry (mIHC) assay",
|
|
8
|
+
"additionalProperties": false,
|
|
9
|
+
"definitions": {
|
|
10
|
+
"record": {
|
|
11
|
+
"type": "object",
|
|
12
|
+
"mergeStrategy": "objectMerge",
|
|
13
|
+
"description": "A single data record from a mIHC assay.",
|
|
14
|
+
"additionalProperties": false,
|
|
15
|
+
"required": [
|
|
16
|
+
"cimac_id",
|
|
17
|
+
"tilemap_file",
|
|
18
|
+
"tilestats_file",
|
|
19
|
+
"h5ad_file",
|
|
20
|
+
"multitiffs_gzip",
|
|
21
|
+
"stain_zip",
|
|
22
|
+
"geojsons_zip"
|
|
23
|
+
],
|
|
24
|
+
"properties": {
|
|
25
|
+
"cimac_id": {
|
|
26
|
+
"description": "Id of an sample within this clinical trial, that this assay record is based upon.",
|
|
27
|
+
"$ref": "sample.json#properties/cimac_id"
|
|
28
|
+
},
|
|
29
|
+
"tilemap_file": {
|
|
30
|
+
"$ref": "artifacts/artifact_ome_tiff.json"
|
|
31
|
+
},
|
|
32
|
+
"tilestats_file": {
|
|
33
|
+
"$ref": "artifacts/artifact_csv.json"
|
|
34
|
+
},
|
|
35
|
+
"h5ad_file": {
|
|
36
|
+
"$ref": "artifacts/artifact_h5ad.json"
|
|
37
|
+
},
|
|
38
|
+
"multitiffs_gzip": {
|
|
39
|
+
"$ref": "artifacts/artifact_gz.json"
|
|
40
|
+
},
|
|
41
|
+
"stain_zip": {
|
|
42
|
+
"$ref": "artifacts/artifact_zip.json"
|
|
43
|
+
},
|
|
44
|
+
"geojsons_zip": {
|
|
45
|
+
"$ref": "artifacts/artifact_zip.json"
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
},
|
|
50
|
+
"properties": {
|
|
51
|
+
"assay_creator": {
|
|
52
|
+
"$ref": "assays/components/assay_core.json#properties/assay_creator"
|
|
53
|
+
},
|
|
54
|
+
"slide_scanner_model": {"$ref": "assays/components/image.json#properties/slide_scanner_model"},
|
|
55
|
+
"image_analysis_software": {"$ref": "assays/components/image.json#properties/image_analysis_software"},
|
|
56
|
+
"image_analysis_software_version": {"$ref": "assays/components/image.json#properties/image_analysis_software_version"},
|
|
57
|
+
"cell_segmentation_model": {"$ref": "assays/components/image.json#properties/cell_segmentation_model"},
|
|
58
|
+
"positive_cell_detection": {"$ref": "assays/components/image.json#properties/positive_cell_detection"},
|
|
59
|
+
|
|
60
|
+
"staining": {"$ref": "assays/components/imaging_data.json#properties/staining"},
|
|
61
|
+
"staining_date": {"$ref": "assays/components/imaging_data.json#properties/staining_date"},
|
|
62
|
+
"imaging_date": {"$ref": "assays/components/imaging_data.json#properties/imaging_date"},
|
|
63
|
+
"imaging_status": {"$ref": "assays/components/imaging_data.json#properties/imaging_status"},
|
|
64
|
+
|
|
65
|
+
"batch_id": {
|
|
66
|
+
"description": "Batch identification number. Unique to every upload.",
|
|
67
|
+
"type": "string"
|
|
68
|
+
},
|
|
69
|
+
|
|
70
|
+
"samples_file": {"$ref": "artifacts/artifact_csv.json"},
|
|
71
|
+
|
|
72
|
+
"panel": {"type": "string"},
|
|
73
|
+
|
|
74
|
+
"antibodies": {
|
|
75
|
+
"type": "array",
|
|
76
|
+
"items": {
|
|
77
|
+
"$ref": "assays/components/mihc_antibody.json"
|
|
78
|
+
},
|
|
79
|
+
"mergeStrategy": "arrayMergeById",
|
|
80
|
+
"mergeOptions": {
|
|
81
|
+
"idRef": "antibody"
|
|
82
|
+
}
|
|
83
|
+
},
|
|
84
|
+
|
|
85
|
+
|
|
86
|
+
"excluded_samples": {
|
|
87
|
+
"$ref": "assays/components/excluded_samples.json"
|
|
88
|
+
},
|
|
89
|
+
|
|
90
|
+
"records": {
|
|
91
|
+
"type": "array",
|
|
92
|
+
"description": "A single data record from a mIHC assay.",
|
|
93
|
+
"items": {
|
|
94
|
+
"$ref": "assays/mihc_assay.json#definitions/record"
|
|
95
|
+
},
|
|
96
|
+
"mergeStrategy": "append"
|
|
97
|
+
}
|
|
98
|
+
},
|
|
99
|
+
"required": [
|
|
100
|
+
"assay_creator",
|
|
101
|
+
"batch_id",
|
|
102
|
+
"samples_file",
|
|
103
|
+
"records",
|
|
104
|
+
"panel",
|
|
105
|
+
"antibodies"
|
|
106
|
+
]
|
|
107
|
+
}
|
|
108
|
+
|
|
@@ -36,11 +36,11 @@
|
|
|
36
36
|
},
|
|
37
37
|
"roi id": {
|
|
38
38
|
"merge_pointer": "0/files/roi_id",
|
|
39
|
-
"type_ref": "assays/components/mibi_imaging/
|
|
39
|
+
"type_ref": "assays/components/mibi_imaging/mibi_input.json#properties/roi_id"
|
|
40
40
|
},
|
|
41
41
|
"Dataset": {
|
|
42
42
|
"merge_pointer": "0/files/dataset",
|
|
43
|
-
"type_ref": "assays/components/mibi_imaging/
|
|
43
|
+
"type_ref": "assays/components/mibi_imaging/mibi_input.json#properties/dataset",
|
|
44
44
|
"allow_empty": true
|
|
45
45
|
},
|
|
46
46
|
"HE file type": {
|
|
@@ -56,7 +56,7 @@
|
|
|
56
56
|
},
|
|
57
57
|
"Roi description": {
|
|
58
58
|
"merge_pointer": "0/files/roi_description",
|
|
59
|
-
"type_ref": "assays/components/mibi_imaging/
|
|
59
|
+
"type_ref": "assays/components/mibi_imaging/mibi_input.json#properties/roi_description",
|
|
60
60
|
"allow_empty": true
|
|
61
61
|
},
|
|
62
62
|
"MIBI OME Tiff File": {
|
|
@@ -67,12 +67,12 @@
|
|
|
67
67
|
},
|
|
68
68
|
"MIBI OME Tiff File Name": {
|
|
69
69
|
"merge_pointer": "0/files/mibi_ome_tiff_file_name",
|
|
70
|
-
"type_ref": "assays/components/mibi_imaging/
|
|
70
|
+
"type_ref": "assays/components/mibi_imaging/mibi_input.json#properties/mibi_ome_tiff_file_name"
|
|
71
71
|
},
|
|
72
72
|
|
|
73
73
|
"Comment": {
|
|
74
74
|
"merge_pointer": "0/files/comment",
|
|
75
|
-
"type_ref": "assays/components/mibi_imaging/
|
|
75
|
+
"type_ref": "assays/components/mibi_imaging/mibi_input.json#properties/comment",
|
|
76
76
|
"allow_empty": true
|
|
77
77
|
}
|
|
78
78
|
}
|
|
@@ -0,0 +1,244 @@
|
|
|
1
|
+
{ "title": "mIHC assay template",
|
|
2
|
+
"description": "Multiplex Immunohistochemistry (mIHC) submission.",
|
|
3
|
+
"prism_template_root_object_schema": "assays/mihc_assay.json",
|
|
4
|
+
"prism_template_root_object_pointer": "/assays/mihc/0",
|
|
5
|
+
"properties":
|
|
6
|
+
{
|
|
7
|
+
"worksheets":
|
|
8
|
+
{
|
|
9
|
+
"mIHC":
|
|
10
|
+
{
|
|
11
|
+
"preamble_rows":
|
|
12
|
+
{
|
|
13
|
+
"protocol identifier":
|
|
14
|
+
{
|
|
15
|
+
"merge_pointer": "3/protocol_identifier",
|
|
16
|
+
"type_ref": "clinical_trial.json#properties/protocol_identifier"
|
|
17
|
+
},
|
|
18
|
+
"assay creator":
|
|
19
|
+
{
|
|
20
|
+
"merge_pointer": "0/assay_creator",
|
|
21
|
+
"type_ref": "assays/mihc_assay.json#properties/assay_creator"
|
|
22
|
+
},
|
|
23
|
+
"slide scanner model":
|
|
24
|
+
{
|
|
25
|
+
"merge_pointer": "0/slide_scanner_model",
|
|
26
|
+
"type_ref": "assays/mihc_assay.json#properties/slide_scanner_model"
|
|
27
|
+
},
|
|
28
|
+
"image analysis software":
|
|
29
|
+
{
|
|
30
|
+
"merge_pointer": "0/image_analysis_software",
|
|
31
|
+
"type_ref": "assays/mihc_assay.json#properties/image_analysis_software",
|
|
32
|
+
"allow_empty": true
|
|
33
|
+
},
|
|
34
|
+
"image analysis software version":
|
|
35
|
+
{
|
|
36
|
+
"merge_pointer": "0/image_analysis_software_version",
|
|
37
|
+
"type_ref": "assays/mihc_assay.json#properties/image_analysis_software_version",
|
|
38
|
+
"allow_empty": true
|
|
39
|
+
},
|
|
40
|
+
"cell segmentation model":
|
|
41
|
+
{
|
|
42
|
+
"merge_pointer": "0/cell_segmentation_model",
|
|
43
|
+
"type_ref": "assays/mihc_assay.json#properties/cell_segmentation_model",
|
|
44
|
+
"allow_empty": true
|
|
45
|
+
},
|
|
46
|
+
"positive cell detection model":
|
|
47
|
+
{
|
|
48
|
+
"merge_pointer": "0/positive_cell_detection",
|
|
49
|
+
"type_ref": "assays/mihc_assay.json#properties/positive_cell_detection",
|
|
50
|
+
"allow_empty": true
|
|
51
|
+
},
|
|
52
|
+
"staining":
|
|
53
|
+
{
|
|
54
|
+
"merge_pointer": "0/staining",
|
|
55
|
+
"type_ref": "assays/mihc_assay.json#properties/staining",
|
|
56
|
+
"allow_empty": true
|
|
57
|
+
},
|
|
58
|
+
"staining date":
|
|
59
|
+
{
|
|
60
|
+
"merge_pointer": "0/staining_date",
|
|
61
|
+
"type_ref": "assays/components/imaging_data.json#properties/staining_date",
|
|
62
|
+
"allow_empty": true
|
|
63
|
+
},
|
|
64
|
+
"imaging date":
|
|
65
|
+
{
|
|
66
|
+
"merge_pointer": "0/imaging_date",
|
|
67
|
+
"type_ref": "assays/components/imaging_data.json#properties/imaging_date",
|
|
68
|
+
"allow_empty": true
|
|
69
|
+
},
|
|
70
|
+
"imaging status":
|
|
71
|
+
{
|
|
72
|
+
"merge_pointer": "0/imaging_status",
|
|
73
|
+
"type_ref": "assays/components/imaging_data.json#properties/imaging_status",
|
|
74
|
+
"allow_empty": true
|
|
75
|
+
},
|
|
76
|
+
"panel":
|
|
77
|
+
{
|
|
78
|
+
"merge_pointer": "0/panel",
|
|
79
|
+
"type_ref": "assays/mihc_assay.json#properties/panel"
|
|
80
|
+
},
|
|
81
|
+
"batch id": {
|
|
82
|
+
"merge_pointer": "0/batch_id",
|
|
83
|
+
"type_ref": "assays/mihc_assay.json#properties/batch_id"
|
|
84
|
+
},
|
|
85
|
+
"sample mapping report": {
|
|
86
|
+
"merge_pointer": "0/samples_file",
|
|
87
|
+
"type_ref": "assays/components/local_file.json#properties/file_path",
|
|
88
|
+
"gcs_uri_format": "{protocol identifier}/mihc/{batch id}/sample_report.csv",
|
|
89
|
+
"is_artifact": 1,
|
|
90
|
+
"allow_empty": true
|
|
91
|
+
}
|
|
92
|
+
},
|
|
93
|
+
"prism_data_object_pointer": "/records/-",
|
|
94
|
+
"data_columns":
|
|
95
|
+
{
|
|
96
|
+
"Samples":
|
|
97
|
+
{
|
|
98
|
+
"CIMAC ID":
|
|
99
|
+
{
|
|
100
|
+
"merge_pointer": "0/cimac_id",
|
|
101
|
+
"type_ref": "sample.json#properties/cimac_id"
|
|
102
|
+
}
|
|
103
|
+
},
|
|
104
|
+
"Run info":
|
|
105
|
+
{
|
|
106
|
+
"Tilemap file": {
|
|
107
|
+
"merge_pointer": "0/tilemap_file",
|
|
108
|
+
"is_artifact": 1,
|
|
109
|
+
"gcs_uri_format": "{protocol identifier}/mihc/{cimac id}/tilemap.ome.tiff",
|
|
110
|
+
"type_ref": "assays/components/local_file.json#properties/file_path"
|
|
111
|
+
},
|
|
112
|
+
"Tilestats file": {
|
|
113
|
+
"merge_pointer": "0/tilestats_file",
|
|
114
|
+
"is_artifact": 1,
|
|
115
|
+
"gcs_uri_format": "{protocol identifier}/mihc/{cimac id}/tilestats.csv",
|
|
116
|
+
"type_ref": "assays/components/local_file.json#properties/file_path"
|
|
117
|
+
},
|
|
118
|
+
"H5ad file": {
|
|
119
|
+
"merge_pointer": "0/h5ad_file",
|
|
120
|
+
"is_artifact": 1,
|
|
121
|
+
"gcs_uri_format": "{protocol identifier}/mihc/{cimac id}/h5ad.h5ad",
|
|
122
|
+
"type_ref": "assays/components/local_file.json#properties/file_path"
|
|
123
|
+
},
|
|
124
|
+
"Multitiffs gzip": {
|
|
125
|
+
"merge_pointer": "0/multitiffs_gzip",
|
|
126
|
+
"is_artifact": 1,
|
|
127
|
+
"gcs_uri_format": "{protocol identifier}/mihc/{cimac id}/multitiffs.tar.gz",
|
|
128
|
+
"type_ref": "assays/components/local_file.json#properties/file_path"
|
|
129
|
+
},
|
|
130
|
+
"Stain Zip": {
|
|
131
|
+
"merge_pointer": "0/stain_zip",
|
|
132
|
+
"is_artifact": 1,
|
|
133
|
+
"gcs_uri_format": "{protocol identifier}/mihc/{cimac id}/stains.zip",
|
|
134
|
+
"type_ref": "assays/components/local_file.json#properties/file_path"
|
|
135
|
+
},
|
|
136
|
+
"Geojsons Zip": {
|
|
137
|
+
"merge_pointer": "0/geojsons_zip",
|
|
138
|
+
"is_artifact": 1,
|
|
139
|
+
"gcs_uri_format": "{protocol identifier}/mihc/{cimac id}/geo_jsons.zip",
|
|
140
|
+
"type_ref": "assays/components/local_file.json#properties/file_path"
|
|
141
|
+
}
|
|
142
|
+
}
|
|
143
|
+
}
|
|
144
|
+
},
|
|
145
|
+
"Antibodies":
|
|
146
|
+
{
|
|
147
|
+
"prism_data_object_pointer": "/antibodies/-",
|
|
148
|
+
"data_columns":
|
|
149
|
+
{
|
|
150
|
+
"antibodies":
|
|
151
|
+
{
|
|
152
|
+
"Antibody":
|
|
153
|
+
{
|
|
154
|
+
"merge_pointer": "0/antibody",
|
|
155
|
+
"type_ref": "assays/components/antibody.json#properties/antibody"
|
|
156
|
+
},
|
|
157
|
+
"Export name":
|
|
158
|
+
{
|
|
159
|
+
"merge_pointer": "0/export_name",
|
|
160
|
+
"allow_empty": true,
|
|
161
|
+
"type_ref": "assays/components/mihc_antibody.json#properties/export_name"
|
|
162
|
+
},
|
|
163
|
+
"Clone":
|
|
164
|
+
{
|
|
165
|
+
"merge_pointer": "0/clone",
|
|
166
|
+
"type_ref": "assays/components/antibody.json#properties/clone"
|
|
167
|
+
},
|
|
168
|
+
"Antibody Company":
|
|
169
|
+
{
|
|
170
|
+
"merge_pointer": "0/company",
|
|
171
|
+
"type_ref": "assays/components/antibody.json#properties/company"
|
|
172
|
+
},
|
|
173
|
+
"Cat#":
|
|
174
|
+
{
|
|
175
|
+
"merge_pointer": "0/cat_num",
|
|
176
|
+
"type_ref": "assays/components/antibody.json#properties/cat_num"
|
|
177
|
+
},
|
|
178
|
+
"Lot#":
|
|
179
|
+
{
|
|
180
|
+
"merge_pointer": "0/lot_num",
|
|
181
|
+
"type_ref": "assays/components/antibody.json#properties/lot_num"
|
|
182
|
+
},
|
|
183
|
+
"Staining Order":
|
|
184
|
+
{
|
|
185
|
+
"merge_pointer": "0/staining_order",
|
|
186
|
+
"type_ref": "assays/components/mihc_antibody.json#properties/staining_order"
|
|
187
|
+
},
|
|
188
|
+
"Fluor Wavelength":
|
|
189
|
+
{
|
|
190
|
+
"merge_pointer": "0/fluor_wavelength",
|
|
191
|
+
"allow_empty": true,
|
|
192
|
+
"type_ref": "assays/components/mihc_antibody.json#properties/fluor_wavelength"
|
|
193
|
+
},
|
|
194
|
+
"Primary ab Dilution":
|
|
195
|
+
{
|
|
196
|
+
"merge_pointer": "0/primary_ab_dilution",
|
|
197
|
+
"type_ref": "assays/components/mihc_antibody.json#properties/primary_ab_dilution"
|
|
198
|
+
},
|
|
199
|
+
"Dilutent":
|
|
200
|
+
{
|
|
201
|
+
"merge_pointer": "0/dilutent",
|
|
202
|
+
"type_ref": "assays/components/mihc_antibody.json#properties/dilutent"
|
|
203
|
+
},
|
|
204
|
+
"Fluor dilution":
|
|
205
|
+
{
|
|
206
|
+
"merge_pointer": "0/fluor_dilution",
|
|
207
|
+
"type_ref": "assays/components/mihc_antibody.json#properties/fluor_dilution"
|
|
208
|
+
},
|
|
209
|
+
"Antigen Retrieval Time":
|
|
210
|
+
{
|
|
211
|
+
"merge_pointer": "0/antigen_retrieval_time",
|
|
212
|
+
"type_ref": "assays/components/mihc_antibody.json#properties/antigen_retrieval_time"
|
|
213
|
+
},
|
|
214
|
+
"Primary Incubation Time":
|
|
215
|
+
{
|
|
216
|
+
"merge_pointer": "0/primary_incubation_time",
|
|
217
|
+
"type_ref": "assays/components/mihc_antibody.json#properties/primary_incubation_time"
|
|
218
|
+
},
|
|
219
|
+
"Amplification Time":
|
|
220
|
+
{
|
|
221
|
+
"merge_pointer": "0/amplification_time",
|
|
222
|
+
"type_ref": "assays/components/mihc_antibody.json#properties/amplification_time"
|
|
223
|
+
}
|
|
224
|
+
}
|
|
225
|
+
}
|
|
226
|
+
},
|
|
227
|
+
"Excluded Samples": {
|
|
228
|
+
"prism_data_object_pointer": "/excluded_samples/-",
|
|
229
|
+
"data_columns": {
|
|
230
|
+
"Samples Excluded From Analysis": {
|
|
231
|
+
"cimac id": {
|
|
232
|
+
"type_ref": "sample.json#properties/cimac_id",
|
|
233
|
+
"merge_pointer": "0/cimac_id"
|
|
234
|
+
},
|
|
235
|
+
"reason": {
|
|
236
|
+
"type_ref": "assays/components/excluded_samples.json#items/properties/reason_excluded",
|
|
237
|
+
"merge_pointer": "0/reason_excluded"
|
|
238
|
+
}
|
|
239
|
+
}
|
|
240
|
+
}
|
|
241
|
+
}
|
|
242
|
+
}
|
|
243
|
+
}
|
|
244
|
+
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
cidc_schemas/__init__.py,sha256=
|
|
1
|
+
cidc_schemas/__init__.py,sha256=62k3qtrrqY_foT7qBjCPfM-HW0t6Q7MJR5WAqELkmk8,136
|
|
2
2
|
cidc_schemas/cli.py,sha256=gWiktRlraNH8Q0zNUae9dohKjPwBmcY0BJwdcQ_fIic,4099
|
|
3
3
|
cidc_schemas/constants.py,sha256=RULs7pGuBAVq1teXymrfbVsK23ZowJvLuZlv0KcjL-Y,698
|
|
4
|
-
cidc_schemas/json_validation.py,sha256=
|
|
4
|
+
cidc_schemas/json_validation.py,sha256=gH72JylIdFIZ1eNQaKja0nh9playSRVWt3DEeiFnmyc,23298
|
|
5
5
|
cidc_schemas/migrations.py,sha256=Amg_T4cFgMzySD7yNnT_PWpqP7hwlTWGeHlI_RSXuRI,14766
|
|
6
6
|
cidc_schemas/template.py,sha256=uvQNbkvusMq9D_1cnUMxT7j7Rf-iqq7o5nuZUhCaXY0,51428
|
|
7
7
|
cidc_schemas/template_reader.py,sha256=xXtLRKu1y4FrPj8RgyGOmB2hlsCDXcuvMBWami2_jV8,13119
|
|
@@ -11,7 +11,7 @@ cidc_schemas/util.py,sha256=ZCQ--ROZyXYVB034fHHmxZXb5F0G2GwzPwSfyfegtGk,4348
|
|
|
11
11
|
cidc_schemas/metaschema/strict_meta_schema.json,sha256=3FiS0r2dAXgfPsruJwZYbQoQnHhC_yl-3mclX8gfiQU,6428
|
|
12
12
|
cidc_schemas/pipeline_configs/rna_level1_analysis_config.yaml.j2,sha256=6no9sFqwzb1T61RZGD-owDt2K5R8G_fPTzflV4fOroo,2832
|
|
13
13
|
cidc_schemas/prism/__init__.py,sha256=J5Tj0X7Di6cyxAjaduOUp2aVyvl8UI67bgxEkgttvcU,530
|
|
14
|
-
cidc_schemas/prism/constants.py,sha256=
|
|
14
|
+
cidc_schemas/prism/constants.py,sha256=xRxwWtux1PUed2BsdfW9-21NQzNdc05HYYcO5Q0jkEQ,2357
|
|
15
15
|
cidc_schemas/prism/core.py,sha256=PQgsRAEleT6gO3VyE4uFTYa3qK_VXjFcErV1YwWV1nQ,19294
|
|
16
16
|
cidc_schemas/prism/extra_metadata.py,sha256=wZjhUGKSvfupr6qZ1WuPepKnf_FG1nGfsDai_kBFZ50,8559
|
|
17
17
|
cidc_schemas/prism/merger.py,sha256=4dUOtF8jyZBoU8LL2d9_nStaD3MUCP7NStoFlxnHcz4,13076
|
|
@@ -39,6 +39,7 @@ cidc_schemas/schemas/artifacts/artifact_fastq_gz.json,sha256=k8So4mBtC7YWp6-PSeC
|
|
|
39
39
|
cidc_schemas/schemas/artifacts/artifact_fcs.json,sha256=8Pa9sq1oqdK5_bVoc0s6smwhR2Gn3il5-S-uX1FU2gg,1653
|
|
40
40
|
cidc_schemas/schemas/artifacts/artifact_file.json,sha256=DLY3Gipxpw9N20OJE2t_upAo5G6w4XOr3aeyN32ZNNY,1668
|
|
41
41
|
cidc_schemas/schemas/artifacts/artifact_gz.json,sha256=mtUUc2n3npxhp_JhM-W-6wqVSvMT3nvIv9HJP_R37wg,1649
|
|
42
|
+
cidc_schemas/schemas/artifacts/artifact_h5ad.json,sha256=JaDerbzmR0ABxqaNyWZlHy4rEK3L62e0W-O3Y4xvf6E,1657
|
|
42
43
|
cidc_schemas/schemas/artifacts/artifact_image.json,sha256=y8uY4DqfzeM8cHVkI-aH5BMrbJ3QbbBinJOqudlrlPI,2015
|
|
43
44
|
cidc_schemas/schemas/artifacts/artifact_jpg.json,sha256=Z4-FxEdoiQ7MzzC7uEqkakjaHjoph5rULrBnlQhls5M,1653
|
|
44
45
|
cidc_schemas/schemas/artifacts/artifact_json.json,sha256=dE2ch8Ycs6ORJ3bdDD8Yyp-ixI3OjFHuabZ5pbQVeSU,1657
|
|
@@ -70,6 +71,7 @@ cidc_schemas/schemas/assays/ihc_assay.json,sha256=g1WuTUrN6M3mmQL7TCURsKL442An8j
|
|
|
70
71
|
cidc_schemas/schemas/assays/mibi_assay.json,sha256=0DnK6Tl_DZbzKuLcleaBYMW19OBpI3ociSqqeK0bG04,2164
|
|
71
72
|
cidc_schemas/schemas/assays/microbiome_assay.json,sha256=4eSEKRylf86yLV7QKCIlMzzjj_XHKMfQpA0njLHBs00,2078
|
|
72
73
|
cidc_schemas/schemas/assays/mif_assay.json,sha256=IG-s80kl8PUUi4U6FGmJbziG0nJf5Or_WTzfb5d46uQ,2599
|
|
74
|
+
cidc_schemas/schemas/assays/mihc_assay.json,sha256=D32FipD-qmzotDoyZazOZG0gUAP6DE_WW0YOVLIh2RE,3935
|
|
73
75
|
cidc_schemas/schemas/assays/misc_data.json,sha256=R6q-B8E-fIihlDNbe34gy7_aQeU1eIL9R_Yolg8SotU,2005
|
|
74
76
|
cidc_schemas/schemas/assays/nanostring_assay.json,sha256=XAL6n80sxaAwUcNrx-pgA_YC5tyOlJrHOi8ID2vnFBo,2599
|
|
75
77
|
cidc_schemas/schemas/assays/olink_assay.json,sha256=kQrUPjDKLKYyWpXoauiNDa0FANxPH_1bOfHeQEY-qAQ,5193
|
|
@@ -83,19 +85,20 @@ cidc_schemas/schemas/assays/wes_core.json,sha256=dwAe2Hi-K5G0rm_icSbFUEIhDNG7HkE
|
|
|
83
85
|
cidc_schemas/schemas/assays/wes_tumor_only_analysis.json,sha256=dU3oaeBbPnEv2Xjym7ikWr5ywwolnVbWDu1Weq2m8Wg,2018
|
|
84
86
|
cidc_schemas/schemas/assays/components/antibody.json,sha256=vfLxXkXIcaJ1BXeUjCaJehrRCdVrBW3gxibwrD7zzd4,960
|
|
85
87
|
cidc_schemas/schemas/assays/components/assay_core.json,sha256=QGuLiArVb7lEF2t1Ml4Qt7g4SXY58WuGBPFVgvOLI5w,485
|
|
86
|
-
cidc_schemas/schemas/assays/components/available_assays.json,sha256=
|
|
88
|
+
cidc_schemas/schemas/assays/components/available_assays.json,sha256=rVO46xNOG_RUikTBoLwsFzpWBvzSqF9MGymMKaH4a0A,3679
|
|
87
89
|
cidc_schemas/schemas/assays/components/available_ngs_analyses.json,sha256=dmC10wI7roGVwbf5T8DxIW1geIjks-Sl-GHJkJXc6eQ,1163
|
|
88
90
|
cidc_schemas/schemas/assays/components/composite_image.json,sha256=k9EaBG3y9j-lvg3nQNZbfVpo9fK_gUz1-9iTwjlTDfE,733
|
|
89
91
|
cidc_schemas/schemas/assays/components/controls.json,sha256=_Wxz7W2msTGJ2Ei4XZg0Qy1t8A5_rLSHNvdPurC073E,458
|
|
90
92
|
cidc_schemas/schemas/assays/components/enrichment_core.json,sha256=zC5G7q-QyNrdynCOoPCCSfOuSKq8TiDH-Pl6gITNfVQ,813
|
|
91
93
|
cidc_schemas/schemas/assays/components/excluded_samples.json,sha256=BAuh31ZTGLBEQkGxTkZQQo05CGD4OeHwFOVyVZgdkHI,663
|
|
92
94
|
cidc_schemas/schemas/assays/components/hande_local_file.json,sha256=0fMiJo3DMIzL6CVm0JCKdgJqT3-L7ppUHNjtLdVQpcU,454
|
|
93
|
-
cidc_schemas/schemas/assays/components/image.json,sha256=
|
|
95
|
+
cidc_schemas/schemas/assays/components/image.json,sha256=3bMLbOR4ypGBRgAHsoWDTI6RmnCjNZR29vyGGA-ozVs,1314
|
|
94
96
|
cidc_schemas/schemas/assays/components/imaging_data.json,sha256=pFMGY03w6VkA4RGvx9YFeT969oLGWxEmjvPe01mk3FU,926
|
|
95
97
|
cidc_schemas/schemas/assays/components/local_file.json,sha256=NWBTV1FIr8KQXFNFiUwxe68ZRiCKxx8Z2rPcMZLp5ug,405
|
|
96
98
|
cidc_schemas/schemas/assays/components/mapping.json,sha256=y6XSPcqdXgyxywsSDFJPP81ZHJahKCPEBVycoe171kU,1663
|
|
97
99
|
cidc_schemas/schemas/assays/components/mibi_antibody.json,sha256=KpfDSy3at4QyRciG68bZ-bAr6tpJqXGI5Qzslhk4M5w,1831
|
|
98
100
|
cidc_schemas/schemas/assays/components/mif_antibody.json,sha256=zzSI5fu9Lema80fY7zHWuMuTI87bfghKKncHcVnQqzk,2191
|
|
101
|
+
cidc_schemas/schemas/assays/components/mihc_antibody.json,sha256=h9suQ0kgGIDV3U3IxUsVjMt8Y00ao8xqmI8Un3UgDYQ,2144
|
|
99
102
|
cidc_schemas/schemas/assays/components/multiple_local_files.json,sha256=VVG6Yvz9yEchgFO9FHQLm7nwM_BcPMjYIecWMnRKp00,480
|
|
100
103
|
cidc_schemas/schemas/assays/components/ngs_assay_core.json,sha256=jqJbrnSPZV6pmJLM6J9YAxniwqGJ_pkTLak_m9zG3nY,1229
|
|
101
104
|
cidc_schemas/schemas/assays/components/ngs_assay_record.json,sha256=DwHKyRNDQ6h8PUz0KdBfmcd0Pz1Q1rOeqWpKfUIwjZM,615
|
|
@@ -105,7 +108,6 @@ cidc_schemas/schemas/assays/components/imaging/mif_entry.json,sha256=0jYCSMD3j5r
|
|
|
105
108
|
cidc_schemas/schemas/assays/components/imaging/mif_export.json,sha256=CVGCpIVcHkTnIQvBibU4HkdYcm2lYzGYu3pXGm4bUa8,1728
|
|
106
109
|
cidc_schemas/schemas/assays/components/imaging/mif_input.json,sha256=Hf1PKkk6pHRLcGGJrVmkhC6SApOA5pD6XJFRscM9ee0,1000
|
|
107
110
|
cidc_schemas/schemas/assays/components/imaging/mif_roi.json,sha256=XL80pl3_5xj40Y4fpE0THDjCDNYojtxDpjtatoFcNAA,1112
|
|
108
|
-
cidc_schemas/schemas/assays/components/mibi_imaging/mibi_files.json,sha256=zylVuDxUKxJ2wXPuTphuT1yY8YYl_vm42a80Xpl3tfc,1580
|
|
109
111
|
cidc_schemas/schemas/assays/components/mibi_imaging/mibi_input.json,sha256=JvigxrK5namtAjUHvBm6QVBZWePVLXWTNaORoUH_aBA,1522
|
|
110
112
|
cidc_schemas/schemas/assays/components/ngs/ngs_assay_record.json,sha256=DwHKyRNDQ6h8PUz0KdBfmcd0Pz1Q1rOeqWpKfUIwjZM,615
|
|
111
113
|
cidc_schemas/schemas/assays/components/ngs/atacseq/atacseq_analysis.json,sha256=kDhS8GHGLF05v4427J6E73J6MiOh0R8Lh6RHrSD5Ak0,2283
|
|
@@ -132,9 +134,10 @@ cidc_schemas/schemas/templates/assays/cytof_template.json,sha256=YGaLt7DKsz32o3n
|
|
|
132
134
|
cidc_schemas/schemas/templates/assays/elisa_template.json,sha256=Q8cv5ZpaRZUfvr6e4PC4uvMqhhaDGLdvVMN_s8Uiajw,2259
|
|
133
135
|
cidc_schemas/schemas/templates/assays/hande_template.json,sha256=EtFvoEtXZelqQPYuJKRbo2127MUek6wGnMcOvMMr3Os,4391
|
|
134
136
|
cidc_schemas/schemas/templates/assays/ihc_template.json,sha256=lOSP6v24FMk-WN7Za4IYQkM94R-1TEvrnllRopEEYa4,7341
|
|
135
|
-
cidc_schemas/schemas/templates/assays/mibi_template.json,sha256=
|
|
137
|
+
cidc_schemas/schemas/templates/assays/mibi_template.json,sha256=X9S8ZWRj0PLYgtTwodC36Fx7D6UQFCWpbx2AVQuHfbM,7787
|
|
136
138
|
cidc_schemas/schemas/templates/assays/microbiome_template.json,sha256=2qaTB8W-tG6NhbSJ3KAEIacp1E4g-cFBGMOMc5zTafo,3578
|
|
137
139
|
cidc_schemas/schemas/templates/assays/mif_template.json,sha256=ozyMdziNxtAReTL7guFIwTiJGhEWam9Hsb_fOhIYXIY,19272
|
|
140
|
+
cidc_schemas/schemas/templates/assays/mihc_template.json,sha256=LXorRCp8uAqaXnMooak-i7k6mBAEW4hA0TcLOXgizrY,11703
|
|
138
141
|
cidc_schemas/schemas/templates/assays/misc_data_template.json,sha256=88GBWq7hrALrYmmgfqStrhocNtPWWYOMeUk9i8_uFRg,1896
|
|
139
142
|
cidc_schemas/schemas/templates/assays/nanostring_template.json,sha256=XFbf72EHNspsOUD014WDYjMSmIEz4LpCaY3iP3im2KQ,3214
|
|
140
143
|
cidc_schemas/schemas/templates/assays/olink_template.json,sha256=3YqkeVF9PnXUeETkf0RfEB14jprNPMWWwY4GTALfuWY,6335
|
|
@@ -154,9 +157,9 @@ cidc_schemas/schemas/templates/manifests/tissue_slide_template.json,sha256=q2GmO
|
|
|
154
157
|
cidc_schemas/schemas/templates/manifests/tumor_normal_pairing_template.json,sha256=lVJrGb28n-vyfjGBzhrzjn1lMKw1b4HXXmWtwA603v0,2797
|
|
155
158
|
cidc_schemas/schemas/templates/manifests/tumor_tissue_dna_template.json,sha256=LpaoDXDS11NCa-Dv37N-tzEGomswQrx5fypkUcG7xJk,18956
|
|
156
159
|
cidc_schemas/schemas/templates/manifests/tumor_tissue_rna_template.json,sha256=-gww6NCHbtbI5z7UmNSmKyPK3IqKCE8F6n4XwTAb_gk,18101
|
|
157
|
-
nci_cidc_schemas-0.27.
|
|
158
|
-
nci_cidc_schemas-0.27.
|
|
159
|
-
nci_cidc_schemas-0.27.
|
|
160
|
-
nci_cidc_schemas-0.27.
|
|
161
|
-
nci_cidc_schemas-0.27.
|
|
162
|
-
nci_cidc_schemas-0.27.
|
|
160
|
+
nci_cidc_schemas-0.27.12.dist-info/licenses/LICENSE,sha256=zK77-w4rYCZBHAYJEGkcFuPXwKIsP7jMPZ2iQOXjzko,1072
|
|
161
|
+
nci_cidc_schemas-0.27.12.dist-info/METADATA,sha256=bGs5nXAT1XWv7au6frc1V2iodtK9Bui5vSueaIz_LM8,4554
|
|
162
|
+
nci_cidc_schemas-0.27.12.dist-info/WHEEL,sha256=_itY3bZllKbLk93i0gzNzdweAt5eocJdfN7atrjOnvQ,109
|
|
163
|
+
nci_cidc_schemas-0.27.12.dist-info/entry_points.txt,sha256=kSyTzXeJQrJp_2ZX0GS_NnbJR8ceQKLBSgER46PM0hs,55
|
|
164
|
+
nci_cidc_schemas-0.27.12.dist-info/top_level.txt,sha256=Wwb5Cu7QrnbmSJxI2d00e3-Mir36t0jTRnSulmfhi30,13
|
|
165
|
+
nci_cidc_schemas-0.27.12.dist-info/RECORD,,
|
|
@@ -1,55 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"$schema": "metaschema/strict_meta_schema.json#",
|
|
3
|
-
"$id": "mibi_files",
|
|
4
|
-
"description": "A region of interest (ROI) is a portion of an image which has been analyzed using image processing software.",
|
|
5
|
-
"type": "object",
|
|
6
|
-
"properties": {
|
|
7
|
-
"roi_id": {
|
|
8
|
-
"description": "Identifier of a region of interest within one mibi slide, e.g. 1, 2, 3 or [123 x 321]",
|
|
9
|
-
"type": "string"
|
|
10
|
-
},
|
|
11
|
-
"dataset": {
|
|
12
|
-
"description": "Dataset the record belongs to",
|
|
13
|
-
"type": "string"
|
|
14
|
-
},
|
|
15
|
-
"mibi_ome_tiff_file_name": {
|
|
16
|
-
"type": "string",
|
|
17
|
-
"description": "A (short) name of the file. Do not include the .ome.tiff extension"
|
|
18
|
-
},
|
|
19
|
-
"mibi_ome_tiff_file": {
|
|
20
|
-
"description": "Image for MIBI in OME TIFF format",
|
|
21
|
-
"$ref": "artifacts/artifact_ome_tiff.json"
|
|
22
|
-
},
|
|
23
|
-
"roi_description": {
|
|
24
|
-
"description": "A text description of this ROI",
|
|
25
|
-
"type": "string"
|
|
26
|
-
},
|
|
27
|
-
"he_file": {
|
|
28
|
-
"inheritableBase": true,
|
|
29
|
-
"mergeStrategy": "objectMerge",
|
|
30
|
-
"anyOf": [
|
|
31
|
-
{
|
|
32
|
-
"$comment": "Path to the H & E image in SVS format.",
|
|
33
|
-
"$ref": "artifacts/artifact_image.json"
|
|
34
|
-
},
|
|
35
|
-
{
|
|
36
|
-
"$comment": "Path to the H & E image in JPG format.",
|
|
37
|
-
"$ref": "artifacts/artifact_jpg.json"
|
|
38
|
-
}
|
|
39
|
-
]
|
|
40
|
-
},
|
|
41
|
-
"comment": {
|
|
42
|
-
"description": "A text comment regarding this slide.",
|
|
43
|
-
"type": "string"
|
|
44
|
-
}
|
|
45
|
-
},
|
|
46
|
-
"inheritableBase": true,
|
|
47
|
-
"required": [
|
|
48
|
-
"roi_id",
|
|
49
|
-
"dataset",
|
|
50
|
-
"mibi_ome_tiff_file_name",
|
|
51
|
-
"mibi_ome_tiff_file",
|
|
52
|
-
"roi_description",
|
|
53
|
-
"he_file"
|
|
54
|
-
]
|
|
55
|
-
}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|