nci-cidc-schemas 0.27.14__py2.py3-none-any.whl → 0.27.16__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.
- cidc_schemas/__init__.py +1 -1
- cidc_schemas/json_validation.py +2 -3
- cidc_schemas/prism/core.py +3 -3
- cidc_schemas/prism/extra_metadata.py +2 -2
- cidc_schemas/prism/merger.py +2 -3
- cidc_schemas/prism/pipelines.py +2 -3
- cidc_schemas/schemas/assays/components/mihc_input.json +36 -0
- cidc_schemas/schemas/assays/mihc_assay.json +3 -28
- cidc_schemas/schemas/templates/assays/mihc_template.json +6 -24
- cidc_schemas/schemas/templates/manifests/pbmc_template.json +4 -0
- cidc_schemas/template.py +2 -3
- cidc_schemas/template_reader.py +2 -2
- cidc_schemas/template_writer.py +2 -2
- cidc_schemas/util.py +14 -2
- {nci_cidc_schemas-0.27.14.dist-info → nci_cidc_schemas-0.27.16.dist-info}/METADATA +1 -1
- {nci_cidc_schemas-0.27.14.dist-info → nci_cidc_schemas-0.27.16.dist-info}/RECORD +20 -19
- {nci_cidc_schemas-0.27.14.dist-info → nci_cidc_schemas-0.27.16.dist-info}/WHEEL +1 -1
- {nci_cidc_schemas-0.27.14.dist-info → nci_cidc_schemas-0.27.16.dist-info}/entry_points.txt +0 -0
- {nci_cidc_schemas-0.27.14.dist-info → nci_cidc_schemas-0.27.16.dist-info}/licenses/LICENSE +0 -0
- {nci_cidc_schemas-0.27.14.dist-info → nci_cidc_schemas-0.27.16.dist-info}/top_level.txt +0 -0
cidc_schemas/__init__.py
CHANGED
cidc_schemas/json_validation.py
CHANGED
|
@@ -7,7 +7,6 @@ import copy
|
|
|
7
7
|
import functools
|
|
8
8
|
import json
|
|
9
9
|
import collections.abc
|
|
10
|
-
import logging
|
|
11
10
|
from contextlib import contextmanager
|
|
12
11
|
from typing import Optional, Callable, Union
|
|
13
12
|
|
|
@@ -18,9 +17,9 @@ from jsonschema.exceptions import ValidationError, RefResolutionError
|
|
|
18
17
|
from jsonpointer import resolve_pointer
|
|
19
18
|
|
|
20
19
|
from .constants import SCHEMA_DIR, METASCHEMA_PATH
|
|
21
|
-
from .util import JSON
|
|
20
|
+
from .util import get_logger, JSON
|
|
22
21
|
|
|
23
|
-
logger =
|
|
22
|
+
logger = get_logger("cidc_schemas.json_validation")
|
|
24
23
|
|
|
25
24
|
|
|
26
25
|
class InDocRefNotFoundError(ValidationError):
|
cidc_schemas/prism/core.py
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
"""Build metadata dictionaries from Excel files."""
|
|
2
2
|
|
|
3
|
-
import logging
|
|
4
3
|
import base64
|
|
5
4
|
import hmac
|
|
6
5
|
from typing import List, Tuple, Union
|
|
@@ -16,12 +15,13 @@ from cidc_schemas.template_reader import XlTemplateReader
|
|
|
16
15
|
from cidc_schemas.template_writer import RowType
|
|
17
16
|
from cidc_schemas.constants import SCHEMA_DIR
|
|
18
17
|
from .merger import PRISM_MERGE_STRATEGIES, MergeCollisionException
|
|
18
|
+
from ..util import get_logger
|
|
19
19
|
from jsonmerge import Merger
|
|
20
20
|
from jsonpointer import EndOfList, JsonPointer, JsonPointerException, resolve_pointer
|
|
21
21
|
|
|
22
22
|
from .constants import SUPPORTED_TEMPLATES
|
|
23
23
|
|
|
24
|
-
logger =
|
|
24
|
+
logger = get_logger(__file__)
|
|
25
25
|
# logger.setLevel(logging.DEBUG)
|
|
26
26
|
|
|
27
27
|
|
|
@@ -453,7 +453,7 @@ def prismify(
|
|
|
453
453
|
# for row in data:
|
|
454
454
|
for row in data:
|
|
455
455
|
|
|
456
|
-
|
|
456
|
+
logger.debug(f" next data row {row!r}")
|
|
457
457
|
|
|
458
458
|
# creating data obj
|
|
459
459
|
data_obj = {}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
"""Parsers for extracting extra metadata from files containing molecular data."""
|
|
2
2
|
|
|
3
|
-
import logging
|
|
4
3
|
import re
|
|
5
4
|
from codecs import BOM_UTF8
|
|
6
5
|
from typing import BinaryIO
|
|
@@ -9,8 +8,9 @@ import openpyxl
|
|
|
9
8
|
import pandas as pd
|
|
10
9
|
|
|
11
10
|
from ..json_validation import load_and_validate_schema
|
|
11
|
+
from ..util import get_logger
|
|
12
12
|
|
|
13
|
-
logger =
|
|
13
|
+
logger = get_logger(__file__)
|
|
14
14
|
|
|
15
15
|
# Build a regex from the CIMAC ID pattern in the schema
|
|
16
16
|
cimac_id_regex = re.compile(
|
cidc_schemas/prism/merger.py
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
"""Merge CIDC schemas metadata dictionaries."""
|
|
2
2
|
|
|
3
|
-
import logging
|
|
4
3
|
from typing import BinaryIO, List, NamedTuple, Optional, Tuple
|
|
5
4
|
|
|
6
5
|
import jsonschema
|
|
@@ -12,11 +11,11 @@ from ..json_validation import (
|
|
|
12
11
|
strip_metadata_for_validation,
|
|
13
12
|
_Validator,
|
|
14
13
|
)
|
|
15
|
-
from ..util import get_path, get_source
|
|
14
|
+
from ..util import get_logger, get_path, get_source
|
|
16
15
|
from .extra_metadata import EXTRA_METADATA_PARSERS
|
|
17
16
|
from .constants import PROTOCOL_ID_FIELD_NAME
|
|
18
17
|
|
|
19
|
-
logger =
|
|
18
|
+
logger = get_logger(__file__)
|
|
20
19
|
|
|
21
20
|
|
|
22
21
|
def merge_artifact(
|
cidc_schemas/prism/pipelines.py
CHANGED
|
@@ -3,7 +3,6 @@
|
|
|
3
3
|
from collections import defaultdict
|
|
4
4
|
from datetime import datetime
|
|
5
5
|
from io import BytesIO
|
|
6
|
-
import logging
|
|
7
6
|
from tempfile import NamedTemporaryFile
|
|
8
7
|
from typing import Dict, List, NamedTuple, Union
|
|
9
8
|
|
|
@@ -12,9 +11,9 @@ import pandas as pd
|
|
|
12
11
|
|
|
13
12
|
from .constants import PROTOCOL_ID_FIELD_NAME, SUPPORTED_SHIPPING_MANIFESTS
|
|
14
13
|
from ..template import Template
|
|
15
|
-
from ..util import load_pipeline_config_template, participant_id_from_cimac
|
|
14
|
+
from ..util import get_logger, load_pipeline_config_template, participant_id_from_cimac
|
|
16
15
|
|
|
17
|
-
logger =
|
|
16
|
+
logger = get_logger(__file__)
|
|
18
17
|
|
|
19
18
|
|
|
20
19
|
# Note, bucket names must be all lowercase, dash, and underscore
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "metaschema/strict_meta_schema.json#",
|
|
3
|
+
"$id": "mihc_input",
|
|
4
|
+
"title": "MIHC Input Files",
|
|
5
|
+
"type": "object",
|
|
6
|
+
"description": "MIHC assay input files.",
|
|
7
|
+
"inheritableBase": true,
|
|
8
|
+
"properties": {
|
|
9
|
+
"tilemap_file": {
|
|
10
|
+
"$ref": "artifacts/artifact_ome_tiff.json"
|
|
11
|
+
},
|
|
12
|
+
"tilestats_file": {
|
|
13
|
+
"$ref": "artifacts/artifact_csv.json"
|
|
14
|
+
},
|
|
15
|
+
"h5ad_file": {
|
|
16
|
+
"$ref": "artifacts/artifact_h5ad.json"
|
|
17
|
+
},
|
|
18
|
+
"multitiffs_gzip": {
|
|
19
|
+
"$ref": "artifacts/artifact_gz.json"
|
|
20
|
+
},
|
|
21
|
+
"stain_zip": {
|
|
22
|
+
"$ref": "artifacts/artifact_zip.json"
|
|
23
|
+
},
|
|
24
|
+
"geojsons_zip": {
|
|
25
|
+
"$ref": "artifacts/artifact_zip.json"
|
|
26
|
+
}
|
|
27
|
+
},
|
|
28
|
+
"required": [
|
|
29
|
+
"tilemap_file",
|
|
30
|
+
"tilestats_file",
|
|
31
|
+
"h5ad_file",
|
|
32
|
+
"multitiffs_gzip",
|
|
33
|
+
"stain_zip",
|
|
34
|
+
"geojsons_zip"
|
|
35
|
+
]
|
|
36
|
+
}
|
|
@@ -14,35 +14,15 @@
|
|
|
14
14
|
"additionalProperties": false,
|
|
15
15
|
"required": [
|
|
16
16
|
"cimac_id",
|
|
17
|
-
"
|
|
18
|
-
"tilestats_file",
|
|
19
|
-
"h5ad_file",
|
|
20
|
-
"multitiffs_gzip",
|
|
21
|
-
"stain_zip",
|
|
22
|
-
"geojsons_zip"
|
|
17
|
+
"files"
|
|
23
18
|
],
|
|
24
19
|
"properties": {
|
|
25
20
|
"cimac_id": {
|
|
26
21
|
"description": "Id of an sample within this clinical trial, that this assay record is based upon.",
|
|
27
22
|
"$ref": "sample.json#properties/cimac_id"
|
|
28
23
|
},
|
|
29
|
-
"
|
|
30
|
-
"$ref": "
|
|
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"
|
|
24
|
+
"files": {
|
|
25
|
+
"$ref": "assays/components/mihc_input.json"
|
|
46
26
|
}
|
|
47
27
|
}
|
|
48
28
|
}
|
|
@@ -82,11 +62,6 @@
|
|
|
82
62
|
}
|
|
83
63
|
},
|
|
84
64
|
|
|
85
|
-
|
|
86
|
-
"excluded_samples": {
|
|
87
|
-
"$ref": "assays/components/excluded_samples.json"
|
|
88
|
-
},
|
|
89
|
-
|
|
90
65
|
"records": {
|
|
91
66
|
"type": "array",
|
|
92
67
|
"description": "A single data record from a mIHC assay.",
|
|
@@ -98,24 +98,21 @@
|
|
|
98
98
|
{
|
|
99
99
|
"merge_pointer": "0/cimac_id",
|
|
100
100
|
"type_ref": "sample.json#properties/cimac_id"
|
|
101
|
-
}
|
|
102
|
-
},
|
|
103
|
-
"Run info":
|
|
104
|
-
{
|
|
101
|
+
},
|
|
105
102
|
"Tilemap file": {
|
|
106
|
-
"merge_pointer": "0/tilemap_file",
|
|
103
|
+
"merge_pointer": "0/files/tilemap_file",
|
|
107
104
|
"is_artifact": 1,
|
|
108
105
|
"gcs_uri_format": "{protocol identifier}/mihc/{cimac id}/tilemap.ome.tiff",
|
|
109
106
|
"type_ref": "assays/components/local_file.json#properties/file_path"
|
|
110
107
|
},
|
|
111
108
|
"Tilestats file": {
|
|
112
|
-
"merge_pointer": "0/tilestats_file",
|
|
109
|
+
"merge_pointer": "0/files/tilestats_file",
|
|
113
110
|
"is_artifact": 1,
|
|
114
111
|
"gcs_uri_format": "{protocol identifier}/mihc/{cimac id}/tilestats.csv",
|
|
115
112
|
"type_ref": "assays/components/local_file.json#properties/file_path"
|
|
116
113
|
},
|
|
117
114
|
"H5ad file": {
|
|
118
|
-
"merge_pointer": "0/h5ad_file",
|
|
115
|
+
"merge_pointer": "0/files/h5ad_file",
|
|
119
116
|
"is_artifact": 1,
|
|
120
117
|
"gcs_uri_format": "{protocol identifier}/mihc/{cimac id}/h5ad.h5ad",
|
|
121
118
|
"type_ref": "assays/components/local_file.json#properties/file_path"
|
|
@@ -127,13 +124,13 @@
|
|
|
127
124
|
"type_ref": "assays/components/local_file.json#properties/file_path"
|
|
128
125
|
},
|
|
129
126
|
"Stain Zip": {
|
|
130
|
-
"merge_pointer": "0/stain_zip",
|
|
127
|
+
"merge_pointer": "0/files/stain_zip",
|
|
131
128
|
"is_artifact": 1,
|
|
132
129
|
"gcs_uri_format": "{protocol identifier}/mihc/{cimac id}/stains.zip",
|
|
133
130
|
"type_ref": "assays/components/local_file.json#properties/file_path"
|
|
134
131
|
},
|
|
135
132
|
"Geojsons Zip": {
|
|
136
|
-
"merge_pointer": "0/geojsons_zip",
|
|
133
|
+
"merge_pointer": "0/files/geojsons_zip",
|
|
137
134
|
"is_artifact": 1,
|
|
138
135
|
"gcs_uri_format": "{protocol identifier}/mihc/{cimac id}/geo_jsons.zip",
|
|
139
136
|
"type_ref": "assays/components/local_file.json#properties/file_path"
|
|
@@ -222,21 +219,6 @@
|
|
|
222
219
|
}
|
|
223
220
|
}
|
|
224
221
|
}
|
|
225
|
-
},
|
|
226
|
-
"Excluded Samples": {
|
|
227
|
-
"prism_data_object_pointer": "/excluded_samples/-",
|
|
228
|
-
"data_columns": {
|
|
229
|
-
"Samples Excluded From Analysis": {
|
|
230
|
-
"cimac id": {
|
|
231
|
-
"type_ref": "sample.json#properties/cimac_id",
|
|
232
|
-
"merge_pointer": "0/cimac_id"
|
|
233
|
-
},
|
|
234
|
-
"reason": {
|
|
235
|
-
"type_ref": "assays/components/excluded_samples.json#items/properties/reason_excluded",
|
|
236
|
-
"merge_pointer": "0/reason_excluded"
|
|
237
|
-
}
|
|
238
|
-
}
|
|
239
|
-
}
|
|
240
222
|
}
|
|
241
223
|
}
|
|
242
224
|
}
|
|
@@ -322,6 +322,10 @@
|
|
|
322
322
|
"type_ref": "sample.json#properties/material_storage_condition",
|
|
323
323
|
"allow_empty": true
|
|
324
324
|
},
|
|
325
|
+
"fixation stabilization type": {
|
|
326
|
+
"merge_pointer": "/fixation_stabilization_type",
|
|
327
|
+
"type_ref": "sample.json#properties/fixation_stabilization_type"
|
|
328
|
+
},
|
|
325
329
|
"quality of sample": {
|
|
326
330
|
"merge_pointer": "/quality_of_sample",
|
|
327
331
|
"type_ref": "sample.json#properties/quality_of_sample",
|
cidc_schemas/template.py
CHANGED
|
@@ -4,7 +4,6 @@
|
|
|
4
4
|
|
|
5
5
|
import os
|
|
6
6
|
import os.path
|
|
7
|
-
import logging
|
|
8
7
|
import uuid
|
|
9
8
|
import json
|
|
10
9
|
import jsonschema
|
|
@@ -24,11 +23,11 @@ from collections import defaultdict
|
|
|
24
23
|
|
|
25
24
|
from .constants import ANALYSIS_TEMPLATE_DIR, SCHEMA_DIR, TEMPLATE_DIR
|
|
26
25
|
from .json_validation import _load_dont_validate_schema
|
|
27
|
-
from .util import get_file_ext
|
|
26
|
+
from .util import get_file_ext, get_logger
|
|
28
27
|
|
|
29
28
|
from cidc_ngs_pipeline_api import OUTPUT_APIS
|
|
30
29
|
|
|
31
|
-
logger =
|
|
30
|
+
logger = get_logger("cidc_schemas.template")
|
|
32
31
|
|
|
33
32
|
|
|
34
33
|
POSSIBLE_FILE_EXTS = [
|
cidc_schemas/template_reader.py
CHANGED
|
@@ -2,7 +2,6 @@
|
|
|
2
2
|
|
|
3
3
|
"""Defines the `XlTemplateReader` class for reading/validating templates from Excel templates."""
|
|
4
4
|
|
|
5
|
-
import logging
|
|
6
5
|
from itertools import dropwhile, zip_longest
|
|
7
6
|
from typing import Dict, List, Tuple, Union, BinaryIO, NamedTuple, Optional
|
|
8
7
|
from warnings import filterwarnings
|
|
@@ -18,9 +17,10 @@ import openpyxl
|
|
|
18
17
|
|
|
19
18
|
from .template import Template
|
|
20
19
|
from .template_writer import RowType, row_type_from_string
|
|
20
|
+
from .util import get_logger
|
|
21
21
|
from .json_validation import validate_instance
|
|
22
22
|
|
|
23
|
-
logger =
|
|
23
|
+
logger = get_logger("cidc_schemas.template_reader")
|
|
24
24
|
|
|
25
25
|
|
|
26
26
|
# A template row is any tuple whose first member is a RowType
|
cidc_schemas/template_writer.py
CHANGED
|
@@ -2,7 +2,6 @@
|
|
|
2
2
|
|
|
3
3
|
"""Defines the `XlTemplateWriter` class for writing `Template`s to Excel templates."""
|
|
4
4
|
|
|
5
|
-
import logging
|
|
6
5
|
from typing import Dict, Optional
|
|
7
6
|
from enum import Enum
|
|
8
7
|
from datetime import time
|
|
@@ -11,8 +10,9 @@ import xlsxwriter
|
|
|
11
10
|
from xlsxwriter.utility import xl_rowcol_to_cell, xl_range
|
|
12
11
|
|
|
13
12
|
from .template import Template
|
|
13
|
+
from .util import get_logger
|
|
14
14
|
|
|
15
|
-
logger =
|
|
15
|
+
logger = get_logger("cidc_schemas.template_writer")
|
|
16
16
|
|
|
17
17
|
|
|
18
18
|
class RowType(Enum):
|
cidc_schemas/util.py
CHANGED
|
@@ -1,11 +1,23 @@
|
|
|
1
|
+
import logging
|
|
1
2
|
import os
|
|
2
3
|
import re
|
|
4
|
+
import sys
|
|
5
|
+
from typing import List, Optional, Union
|
|
6
|
+
|
|
3
7
|
import jinja2
|
|
4
|
-
from
|
|
8
|
+
from deepdiff import grep
|
|
5
9
|
|
|
6
10
|
JSON = Union[dict, float, int, list, str]
|
|
7
11
|
|
|
8
|
-
|
|
12
|
+
|
|
13
|
+
def get_logger(name: Optional[str], log_level=logging.INFO) -> logging.Logger:
|
|
14
|
+
"""Get a configured logger with the given `name`."""
|
|
15
|
+
logger = logging.getLogger(name)
|
|
16
|
+
handler = logging.StreamHandler(sys.stdout)
|
|
17
|
+
logger.addHandler(handler)
|
|
18
|
+
logger.setLevel(log_level)
|
|
19
|
+
logger.propagate = False
|
|
20
|
+
return logger
|
|
9
21
|
|
|
10
22
|
|
|
11
23
|
def load_pipeline_config_template(name: str) -> jinja2.Template:
|
|
@@ -1,21 +1,21 @@
|
|
|
1
|
-
cidc_schemas/__init__.py,sha256=
|
|
1
|
+
cidc_schemas/__init__.py,sha256=tBHfXOxba3OnWg2eddQlNdpUCvWFfRPfqiDVruSYtzs,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=spmPsqinib7Ns5GvWOKKa1rc7IrN_s2bqifpTKdaLVU,23288
|
|
5
5
|
cidc_schemas/migrations.py,sha256=Amg_T4cFgMzySD7yNnT_PWpqP7hwlTWGeHlI_RSXuRI,14766
|
|
6
|
-
cidc_schemas/template.py,sha256=
|
|
7
|
-
cidc_schemas/template_reader.py,sha256=
|
|
8
|
-
cidc_schemas/template_writer.py,sha256=
|
|
6
|
+
cidc_schemas/template.py,sha256=NWWAvH5r9VXJN9DZgJZ-z5UkLTNFYm9yrHYB2vbHx-o,51418
|
|
7
|
+
cidc_schemas/template_reader.py,sha256=3E9acCr_3TP-PP2qXNyxAnIg1m4TJ6v8VVPogUKW5qA,13126
|
|
8
|
+
cidc_schemas/template_writer.py,sha256=Lk5hw05owoLLsGXimd2H8FSyqBZ2_HpC5wCWw-Xxm5w,18243
|
|
9
9
|
cidc_schemas/unprism.py,sha256=TOD3CSGkgNnTtT-OeCCE3Ihlam84lr8XGOmtdSy2lL8,13545
|
|
10
|
-
cidc_schemas/util.py,sha256=
|
|
10
|
+
cidc_schemas/util.py,sha256=P-889E64I3i9iroxw5qORguzr09Ac7tsgzsoGeGsfwM,4716
|
|
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
14
|
cidc_schemas/prism/constants.py,sha256=xRxwWtux1PUed2BsdfW9-21NQzNdc05HYYcO5Q0jkEQ,2357
|
|
15
|
-
cidc_schemas/prism/core.py,sha256=
|
|
16
|
-
cidc_schemas/prism/extra_metadata.py,sha256=
|
|
17
|
-
cidc_schemas/prism/merger.py,sha256=
|
|
18
|
-
cidc_schemas/prism/pipelines.py,sha256=
|
|
15
|
+
cidc_schemas/prism/core.py,sha256=2WZ6e1-T88zHUYnl5PnD9pBSu-enRJBtRsf-WKc42Wk,19301
|
|
16
|
+
cidc_schemas/prism/extra_metadata.py,sha256=S9w5EGAT0xwaWMrpYluF7Y1ONsI4wFtxFD8ib6Va_fU,8567
|
|
17
|
+
cidc_schemas/prism/merger.py,sha256=36CKBPVoWecHuvGp3oT9a2d4jWIkvKuS_UofKTEpMYs,13065
|
|
18
|
+
cidc_schemas/prism/pipelines.py,sha256=dvZtoC7pEVgdPual_DZUTBFfgvSV7yTdk1RHwi5h6Vs,33522
|
|
19
19
|
cidc_schemas/schemas/aliquot.json,sha256=F24s6xGTeJl-VT6s6wvV8YtMA4O-0BsUCwtD2OEx_cY,1943
|
|
20
20
|
cidc_schemas/schemas/clinical_data.json,sha256=ubt2dqTLCbDuxuOXrBObT_xLHVSArMBx4oASFOAYEas,1474
|
|
21
21
|
cidc_schemas/schemas/clinical_trial.json,sha256=aUjYgdtlRWDfULk0-apralt4-KrtjriUqt3qNTdL2Rc,4442
|
|
@@ -71,7 +71,7 @@ cidc_schemas/schemas/assays/ihc_assay.json,sha256=g1WuTUrN6M3mmQL7TCURsKL442An8j
|
|
|
71
71
|
cidc_schemas/schemas/assays/mibi_assay.json,sha256=0DnK6Tl_DZbzKuLcleaBYMW19OBpI3ociSqqeK0bG04,2164
|
|
72
72
|
cidc_schemas/schemas/assays/microbiome_assay.json,sha256=4eSEKRylf86yLV7QKCIlMzzjj_XHKMfQpA0njLHBs00,2078
|
|
73
73
|
cidc_schemas/schemas/assays/mif_assay.json,sha256=IG-s80kl8PUUi4U6FGmJbziG0nJf5Or_WTzfb5d46uQ,2599
|
|
74
|
-
cidc_schemas/schemas/assays/mihc_assay.json,sha256=
|
|
74
|
+
cidc_schemas/schemas/assays/mihc_assay.json,sha256=OgcklPvtUoCB-Gdvg4DF9fHFI15h9oalGW9lB4SL4xc,3104
|
|
75
75
|
cidc_schemas/schemas/assays/misc_data.json,sha256=R6q-B8E-fIihlDNbe34gy7_aQeU1eIL9R_Yolg8SotU,2005
|
|
76
76
|
cidc_schemas/schemas/assays/nanostring_assay.json,sha256=XAL6n80sxaAwUcNrx-pgA_YC5tyOlJrHOi8ID2vnFBo,2599
|
|
77
77
|
cidc_schemas/schemas/assays/olink_assay.json,sha256=kQrUPjDKLKYyWpXoauiNDa0FANxPH_1bOfHeQEY-qAQ,5193
|
|
@@ -99,6 +99,7 @@ cidc_schemas/schemas/assays/components/mapping.json,sha256=y6XSPcqdXgyxywsSDFJPP
|
|
|
99
99
|
cidc_schemas/schemas/assays/components/mibi_antibody.json,sha256=KpfDSy3at4QyRciG68bZ-bAr6tpJqXGI5Qzslhk4M5w,1831
|
|
100
100
|
cidc_schemas/schemas/assays/components/mif_antibody.json,sha256=zzSI5fu9Lema80fY7zHWuMuTI87bfghKKncHcVnQqzk,2191
|
|
101
101
|
cidc_schemas/schemas/assays/components/mihc_antibody.json,sha256=h9suQ0kgGIDV3U3IxUsVjMt8Y00ao8xqmI8Un3UgDYQ,2144
|
|
102
|
+
cidc_schemas/schemas/assays/components/mihc_input.json,sha256=KozUg3J_0PgQm3b5EEmh1Oh0hdiMS1u9V1zu8_2hsRQ,803
|
|
102
103
|
cidc_schemas/schemas/assays/components/multiple_local_files.json,sha256=VVG6Yvz9yEchgFO9FHQLm7nwM_BcPMjYIecWMnRKp00,480
|
|
103
104
|
cidc_schemas/schemas/assays/components/ngs_assay_core.json,sha256=jqJbrnSPZV6pmJLM6J9YAxniwqGJ_pkTLak_m9zG3nY,1229
|
|
104
105
|
cidc_schemas/schemas/assays/components/ngs_assay_record.json,sha256=DwHKyRNDQ6h8PUz0KdBfmcd0Pz1Q1rOeqWpKfUIwjZM,615
|
|
@@ -137,7 +138,7 @@ cidc_schemas/schemas/templates/assays/ihc_template.json,sha256=lOSP6v24FMk-WN7Za
|
|
|
137
138
|
cidc_schemas/schemas/templates/assays/mibi_template.json,sha256=X9S8ZWRj0PLYgtTwodC36Fx7D6UQFCWpbx2AVQuHfbM,7787
|
|
138
139
|
cidc_schemas/schemas/templates/assays/microbiome_template.json,sha256=2qaTB8W-tG6NhbSJ3KAEIacp1E4g-cFBGMOMc5zTafo,3578
|
|
139
140
|
cidc_schemas/schemas/templates/assays/mif_template.json,sha256=ozyMdziNxtAReTL7guFIwTiJGhEWam9Hsb_fOhIYXIY,19272
|
|
140
|
-
cidc_schemas/schemas/templates/assays/mihc_template.json,sha256=
|
|
141
|
+
cidc_schemas/schemas/templates/assays/mihc_template.json,sha256=LSsIFVTcgtqLtyavsMvf7K-6HHNxqgyRBE6bKptPsUg,10968
|
|
141
142
|
cidc_schemas/schemas/templates/assays/misc_data_template.json,sha256=88GBWq7hrALrYmmgfqStrhocNtPWWYOMeUk9i8_uFRg,1896
|
|
142
143
|
cidc_schemas/schemas/templates/assays/nanostring_template.json,sha256=XFbf72EHNspsOUD014WDYjMSmIEz4LpCaY3iP3im2KQ,3214
|
|
143
144
|
cidc_schemas/schemas/templates/assays/olink_template.json,sha256=3YqkeVF9PnXUeETkf0RfEB14jprNPMWWwY4GTALfuWY,6335
|
|
@@ -151,15 +152,15 @@ cidc_schemas/schemas/templates/manifests/h_and_e_template.json,sha256=8fbhWxKWhI
|
|
|
151
152
|
cidc_schemas/schemas/templates/manifests/microbiome_dna_template.json,sha256=POucJzR6ac_ndXgttL8Pm6s7BKtu5tqJz4Y49U8zLj0,17848
|
|
152
153
|
cidc_schemas/schemas/templates/manifests/normal_blood_dna_template.json,sha256=13FceWQ4DR09N0hJgBwcN6aO6q94Ru-ys1JZcd_Iefk,18931
|
|
153
154
|
cidc_schemas/schemas/templates/manifests/normal_tissue_dna_template.json,sha256=yAKMW5KIbQ14O8wXUTRdMM1QFg-hxLNz0y4XncxPpRI,18669
|
|
154
|
-
cidc_schemas/schemas/templates/manifests/pbmc_template.json,sha256=
|
|
155
|
+
cidc_schemas/schemas/templates/manifests/pbmc_template.json,sha256=esGW9nVQ6Elgf0LeELowwpxlP7EOgSgnF6Jka0AnsPA,18778
|
|
155
156
|
cidc_schemas/schemas/templates/manifests/plasma_template.json,sha256=VNraMcIdpxvPJC5SH4nnUeqOCz5HUuiGiMcKC20Ctso,16138
|
|
156
157
|
cidc_schemas/schemas/templates/manifests/tissue_slide_template.json,sha256=q2GmOA2bstMRJmkigOri_uFYKJNHJG3qjVXUjV410Ls,16557
|
|
157
158
|
cidc_schemas/schemas/templates/manifests/tumor_normal_pairing_template.json,sha256=lVJrGb28n-vyfjGBzhrzjn1lMKw1b4HXXmWtwA603v0,2797
|
|
158
159
|
cidc_schemas/schemas/templates/manifests/tumor_tissue_dna_template.json,sha256=LpaoDXDS11NCa-Dv37N-tzEGomswQrx5fypkUcG7xJk,18956
|
|
159
160
|
cidc_schemas/schemas/templates/manifests/tumor_tissue_rna_template.json,sha256=-gww6NCHbtbI5z7UmNSmKyPK3IqKCE8F6n4XwTAb_gk,18101
|
|
160
|
-
nci_cidc_schemas-0.27.
|
|
161
|
-
nci_cidc_schemas-0.27.
|
|
162
|
-
nci_cidc_schemas-0.27.
|
|
163
|
-
nci_cidc_schemas-0.27.
|
|
164
|
-
nci_cidc_schemas-0.27.
|
|
165
|
-
nci_cidc_schemas-0.27.
|
|
161
|
+
nci_cidc_schemas-0.27.16.dist-info/licenses/LICENSE,sha256=zK77-w4rYCZBHAYJEGkcFuPXwKIsP7jMPZ2iQOXjzko,1072
|
|
162
|
+
nci_cidc_schemas-0.27.16.dist-info/METADATA,sha256=wEugiwAi7MPlgDmoRdcFufqf0vdvOArLQMlzRPYgPfE,4554
|
|
163
|
+
nci_cidc_schemas-0.27.16.dist-info/WHEEL,sha256=egKm5cKfE6OqlHwodY8Jjp4yqZDBXgsj09UsV5ojd_U,109
|
|
164
|
+
nci_cidc_schemas-0.27.16.dist-info/entry_points.txt,sha256=kSyTzXeJQrJp_2ZX0GS_NnbJR8ceQKLBSgER46PM0hs,55
|
|
165
|
+
nci_cidc_schemas-0.27.16.dist-info/top_level.txt,sha256=Wwb5Cu7QrnbmSJxI2d00e3-Mir36t0jTRnSulmfhi30,13
|
|
166
|
+
nci_cidc_schemas-0.27.16.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|