nci-cidc-schemas 0.27.19__py2.py3-none-any.whl → 0.27.21__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/prism/constants.py +2 -0
- cidc_schemas/prism/core.py +22 -0
- cidc_schemas/schemas/assays/components/available_assays.json +11 -0
- cidc_schemas/schemas/assays/components/scrnaseq_input.json +39 -0
- cidc_schemas/schemas/assays/components/scrnaseq_preamble.json +65 -0
- cidc_schemas/schemas/assays/scrnaseq_assay.json +74 -0
- cidc_schemas/schemas/sample.json +24 -0
- cidc_schemas/schemas/shipping_core.json +9 -1
- cidc_schemas/schemas/templates/assays/scrnaseq_template.json +97 -0
- {nci_cidc_schemas-0.27.19.dist-info → nci_cidc_schemas-0.27.21.dist-info}/METADATA +1 -1
- {nci_cidc_schemas-0.27.19.dist-info → nci_cidc_schemas-0.27.21.dist-info}/RECORD +16 -12
- {nci_cidc_schemas-0.27.19.dist-info → nci_cidc_schemas-0.27.21.dist-info}/WHEEL +0 -0
- {nci_cidc_schemas-0.27.19.dist-info → nci_cidc_schemas-0.27.21.dist-info}/entry_points.txt +0 -0
- {nci_cidc_schemas-0.27.19.dist-info → nci_cidc_schemas-0.27.21.dist-info}/licenses/LICENSE +0 -0
- {nci_cidc_schemas-0.27.19.dist-info → nci_cidc_schemas-0.27.21.dist-info}/top_level.txt +0 -0
cidc_schemas/__init__.py
CHANGED
cidc_schemas/prism/constants.py
CHANGED
|
@@ -26,6 +26,7 @@ SUPPORTED_ASSAYS = [
|
|
|
26
26
|
"ctdna",
|
|
27
27
|
"microbiome",
|
|
28
28
|
"mihc",
|
|
29
|
+
"scrnaseq",
|
|
29
30
|
]
|
|
30
31
|
|
|
31
32
|
SUPPORTED_SHIPPING_MANIFESTS = [
|
|
@@ -93,6 +94,7 @@ ASSAY_TO_FILEPATH: Dict[str, str] = {
|
|
|
93
94
|
"nanostring",
|
|
94
95
|
"olink",
|
|
95
96
|
"mihc",
|
|
97
|
+
"scrnaseq",
|
|
96
98
|
]
|
|
97
99
|
},
|
|
98
100
|
}
|
cidc_schemas/prism/core.py
CHANGED
|
@@ -18,6 +18,7 @@ from .merger import PRISM_MERGE_STRATEGIES, MergeCollisionException
|
|
|
18
18
|
from ..util import get_logger
|
|
19
19
|
from jsonmerge import Merger
|
|
20
20
|
from jsonpointer import EndOfList, JsonPointer, JsonPointerException, resolve_pointer
|
|
21
|
+
from datetime import date
|
|
21
22
|
|
|
22
23
|
from .constants import SUPPORTED_TEMPLATES
|
|
23
24
|
|
|
@@ -533,4 +534,25 @@ def prismify(
|
|
|
533
534
|
else:
|
|
534
535
|
root_ct_obj = template_root_obj
|
|
535
536
|
|
|
537
|
+
# Adding additional fields during manifest ingestion
|
|
538
|
+
if "shipments" in root_ct_obj:
|
|
539
|
+
if len(root_ct_obj["shipments"]) != 1:
|
|
540
|
+
raise Exception("Can only process one manifest at a time")
|
|
541
|
+
root_ct_obj["shipments"][0]["upload_type"] = template.type
|
|
542
|
+
root_ct_obj["shipments"][0]["date_ingested"] = date.today().strftime("%Y-%m-%d")
|
|
543
|
+
manifest = root_ct_obj["shipments"][0]
|
|
544
|
+
for participant in root_ct_obj["participants"]:
|
|
545
|
+
for sample in participant["samples"]:
|
|
546
|
+
fields = [
|
|
547
|
+
"manifest_id",
|
|
548
|
+
"upload_type",
|
|
549
|
+
"assay_type",
|
|
550
|
+
"ship_to_name",
|
|
551
|
+
"ship_from_name",
|
|
552
|
+
"date_ingested",
|
|
553
|
+
]
|
|
554
|
+
for field in fields:
|
|
555
|
+
if field in manifest:
|
|
556
|
+
sample[field] = manifest[field]
|
|
557
|
+
|
|
536
558
|
return root_ct_obj, collected_files, errors_so_far
|
|
@@ -130,6 +130,17 @@
|
|
|
130
130
|
"idRef": "batch_id"
|
|
131
131
|
}
|
|
132
132
|
},
|
|
133
|
+
"scrnaseq": {
|
|
134
|
+
"type": "array",
|
|
135
|
+
"description": "scRNASeq",
|
|
136
|
+
"items": {
|
|
137
|
+
"$ref": "assays/scrnaseq_assay.json"
|
|
138
|
+
},
|
|
139
|
+
"mergeStrategy": "arrayMergeById",
|
|
140
|
+
"mergeOptions": {
|
|
141
|
+
"idRef": "batch_id"
|
|
142
|
+
}
|
|
143
|
+
},
|
|
133
144
|
"nanostring": {
|
|
134
145
|
"type": "array",
|
|
135
146
|
"description": "Nanostring",
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "metaschema/strict_meta_schema.json#",
|
|
3
|
+
"$id": "scrnaseq_input",
|
|
4
|
+
"title": "scRNAseq Input Files and Data",
|
|
5
|
+
"type": "object",
|
|
6
|
+
"description": "scRNAseq assay input files and data",
|
|
7
|
+
"inheritableBase": true,
|
|
8
|
+
"properties": {
|
|
9
|
+
"lane": {
|
|
10
|
+
"description": "Lane used for this run",
|
|
11
|
+
"type": "string"
|
|
12
|
+
},
|
|
13
|
+
"read_1_file": {
|
|
14
|
+
"description": "Contains the cell barcode and unique molecular identifier",
|
|
15
|
+
"$ref": "artifacts/artifact_gz.json"
|
|
16
|
+
},
|
|
17
|
+
"read_2_file": {
|
|
18
|
+
"description": "Contains the cDNA (transcript) sequence",
|
|
19
|
+
"$ref": "artifacts/artifact_gz.json"
|
|
20
|
+
},
|
|
21
|
+
"library_yield_ng": {
|
|
22
|
+
"description": "Resulting yield (in ng) from library construction.",
|
|
23
|
+
"type": "number"
|
|
24
|
+
},
|
|
25
|
+
"rin": {
|
|
26
|
+
"description": "RNA integrity number. (0-10)",
|
|
27
|
+
"type": "number",
|
|
28
|
+
"minimum": 0,
|
|
29
|
+
"maximum": 10
|
|
30
|
+
}
|
|
31
|
+
},
|
|
32
|
+
"required": [
|
|
33
|
+
"lane",
|
|
34
|
+
"read_1_file",
|
|
35
|
+
"read_2_file",
|
|
36
|
+
"library_yield_ng",
|
|
37
|
+
"rin"
|
|
38
|
+
]
|
|
39
|
+
}
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "metaschema/strict_meta_schema.json#",
|
|
3
|
+
"$id": "scrnaseq_preamble",
|
|
4
|
+
"title": "ScRNA Preamble",
|
|
5
|
+
"description": "Preamble information in an scRNAseq assay",
|
|
6
|
+
"type": "object",
|
|
7
|
+
"inheritableBase": true,
|
|
8
|
+
"properties": {
|
|
9
|
+
"azimuth_reference": {
|
|
10
|
+
"description": "Cell type annotation will be performed with this Azimuth reference for all samples in the batch.",
|
|
11
|
+
"type": "string",
|
|
12
|
+
"enum": [
|
|
13
|
+
"adiposeref",
|
|
14
|
+
"bonemarrowref",
|
|
15
|
+
"fetusref",
|
|
16
|
+
"heartref",
|
|
17
|
+
"humancortexref",
|
|
18
|
+
"kidneyref",
|
|
19
|
+
"lungref",
|
|
20
|
+
"pancreasref",
|
|
21
|
+
"pbmcref",
|
|
22
|
+
"tonsilref",
|
|
23
|
+
"none"
|
|
24
|
+
]
|
|
25
|
+
},
|
|
26
|
+
"tabula_sapiens_reference": {
|
|
27
|
+
"description": "Cell type annotation will be performed with this Tabula Sapiens reference for all samples in the batch.",
|
|
28
|
+
"type": "string",
|
|
29
|
+
"enum": [
|
|
30
|
+
"bladder",
|
|
31
|
+
"blood",
|
|
32
|
+
"bone marrow",
|
|
33
|
+
"eye",
|
|
34
|
+
"fat",
|
|
35
|
+
"immune",
|
|
36
|
+
"mammary",
|
|
37
|
+
"prostrate",
|
|
38
|
+
"skin",
|
|
39
|
+
"endothelial",
|
|
40
|
+
"none"
|
|
41
|
+
]
|
|
42
|
+
},
|
|
43
|
+
"assay_chemistry_version": {
|
|
44
|
+
"description": "The specific version of the 10x Genomics single-cell gene expression assay chemistry used to prepare and sequence a sample.",
|
|
45
|
+
"type": "string",
|
|
46
|
+
"enum": [
|
|
47
|
+
"Single Cell 3' v2",
|
|
48
|
+
"Single Cell 3' v3",
|
|
49
|
+
"Single Cell 3' v3.1",
|
|
50
|
+
"Single Cell 3' HT v3.1",
|
|
51
|
+
"Single Cell 3' v4"
|
|
52
|
+
]
|
|
53
|
+
},
|
|
54
|
+
"barcode_include_file_version": {
|
|
55
|
+
"description": "Barcode inclusion file version for the 10x Genomics single-cell gene expression assay. Refer to https://kb.10xgenomics.com/hc/en-us/articles/115004506263-What-is-a-barcode-whitelist for more information. '2' for 737K-august-2016.txt (Single Cell 3' v2), '3' for 3M-february-2018.txt.gz (Single Cell 3' v3, Single Cell 3' v3.1, Single Cell 3' HT v3.1), '4' for 3M-3pgex-may-2023.txt.gz (Single Cell 3' v4)",
|
|
56
|
+
"type": "string",
|
|
57
|
+
"enum": ["2","3","4"]
|
|
58
|
+
},
|
|
59
|
+
|
|
60
|
+
"total_barcode_and_umi_length_in_read": {
|
|
61
|
+
"description": "Should be a a positive integer around 26-28 bp. Equals to the sum of the cell barcode and the unique molecular identifier (UMI) in read 1.",
|
|
62
|
+
"type": "integer"
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
}
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "metaschema/strict_meta_schema.json#",
|
|
3
|
+
"$id": "scrnaseq_assay",
|
|
4
|
+
"title": "scRNAseq Assay",
|
|
5
|
+
"type": "object",
|
|
6
|
+
"$comment": "description used in docs/index.html and docs/assays.scrnaseq.html",
|
|
7
|
+
"description": "Single Cell RNA Sequencing (scRNAseq) assay",
|
|
8
|
+
"additionalProperties": false,
|
|
9
|
+
"definitions": {
|
|
10
|
+
"record": {
|
|
11
|
+
"type": "object",
|
|
12
|
+
"mergeStrategy": "objectMerge",
|
|
13
|
+
"description": "A single data record from a scRNAseq assay.",
|
|
14
|
+
"additionalProperties": false,
|
|
15
|
+
"required": [
|
|
16
|
+
"cimac_id",
|
|
17
|
+
"details"
|
|
18
|
+
],
|
|
19
|
+
"properties": {
|
|
20
|
+
"cimac_id": {
|
|
21
|
+
"description": "Id of an sample within this clinical trial, that this assay record is based upon.",
|
|
22
|
+
"$ref": "sample.json#properties/cimac_id"
|
|
23
|
+
},
|
|
24
|
+
"details": {
|
|
25
|
+
"$ref": "assays/components/scrnaseq_input.json"
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
},
|
|
30
|
+
"properties": {
|
|
31
|
+
"assay_creator": {
|
|
32
|
+
"$ref": "assays/components/assay_core.json#properties/assay_creator"
|
|
33
|
+
},
|
|
34
|
+
"batch_id": {
|
|
35
|
+
"description": "Batch identification number. Unique to every upload.",
|
|
36
|
+
"type": "string"
|
|
37
|
+
},
|
|
38
|
+
"azimuth_reference": {
|
|
39
|
+
"$ref": "assays/components/scrnaseq_preamble.json#properties/azimuth_reference"
|
|
40
|
+
},
|
|
41
|
+
"tabula_sapiens_reference": {
|
|
42
|
+
"$ref": "assays/components/scrnaseq_preamble.json#properties/tabula_sapiens_reference"
|
|
43
|
+
},
|
|
44
|
+
"assay_chemistry_version": {
|
|
45
|
+
"$ref": "assays/components/scrnaseq_preamble.json#properties/assay_chemistry_version"
|
|
46
|
+
},
|
|
47
|
+
"barcode_include_file_version": {
|
|
48
|
+
"$ref": "assays/components/scrnaseq_preamble.json#properties/barcode_include_file_version"
|
|
49
|
+
},
|
|
50
|
+
"total_barcode_and_umi_length_in_read": {
|
|
51
|
+
"$ref": "assays/components/scrnaseq_preamble.json#properties/total_barcode_and_umi_length_in_read"
|
|
52
|
+
},
|
|
53
|
+
|
|
54
|
+
"samples_metadata_csv": {"$ref": "artifacts/artifact_csv.json"},
|
|
55
|
+
|
|
56
|
+
|
|
57
|
+
"records": {
|
|
58
|
+
"type": "array",
|
|
59
|
+
"description": "A single data record from a scrnaseq assay.",
|
|
60
|
+
"items": {
|
|
61
|
+
"$ref": "assays/scrnaseq_assay.json#definitions/record"
|
|
62
|
+
},
|
|
63
|
+
"mergeStrategy": "append"
|
|
64
|
+
}
|
|
65
|
+
},
|
|
66
|
+
"required": [
|
|
67
|
+
"assay_creator",
|
|
68
|
+
"batch_id",
|
|
69
|
+
"assay_chemistry_version",
|
|
70
|
+
"barcode_include_file_version",
|
|
71
|
+
"samples_metadata_csv",
|
|
72
|
+
"records"
|
|
73
|
+
]
|
|
74
|
+
}
|
cidc_schemas/schemas/sample.json
CHANGED
|
@@ -537,6 +537,30 @@
|
|
|
537
537
|
"intended_assay": {
|
|
538
538
|
"type": "string",
|
|
539
539
|
"description": "The assay that this sample is expected to be used as input for."
|
|
540
|
+
},
|
|
541
|
+
"manifest_id": {
|
|
542
|
+
"type": "string",
|
|
543
|
+
"description": "Id of the manifest"
|
|
544
|
+
},
|
|
545
|
+
"upload_type": {
|
|
546
|
+
"type": "string",
|
|
547
|
+
"description": "Type of manifest"
|
|
548
|
+
},
|
|
549
|
+
"date_ingested": {
|
|
550
|
+
"type": "string",
|
|
551
|
+
"description": "Date CIDC ingested the sample/manifest"
|
|
552
|
+
},
|
|
553
|
+
"assay_type": {
|
|
554
|
+
"type": "string",
|
|
555
|
+
"description": "Assay type of sample"
|
|
556
|
+
},
|
|
557
|
+
"ship_to_name": {
|
|
558
|
+
"type": "string",
|
|
559
|
+
"description": "Recipient of sample"
|
|
560
|
+
},
|
|
561
|
+
"ship_from_name": {
|
|
562
|
+
"type": "string",
|
|
563
|
+
"description": "Sender of sample"
|
|
540
564
|
}
|
|
541
565
|
},
|
|
542
566
|
"additionalProperties": false,
|
|
@@ -60,7 +60,7 @@
|
|
|
60
60
|
"Nanostring",
|
|
61
61
|
"NULISA",
|
|
62
62
|
"MIBI",
|
|
63
|
-
"
|
|
63
|
+
"scRNAseq",
|
|
64
64
|
"snRNA-Seq",
|
|
65
65
|
"Visium"
|
|
66
66
|
]
|
|
@@ -181,6 +181,14 @@
|
|
|
181
181
|
"receiving_party": {
|
|
182
182
|
"description": "Site where sample was shipped to be assayed.",
|
|
183
183
|
"type": "string"
|
|
184
|
+
},
|
|
185
|
+
"upload_type": {
|
|
186
|
+
"description": "The type of manifest being uploaded",
|
|
187
|
+
"type": "string"
|
|
188
|
+
},
|
|
189
|
+
"date_ingested": {
|
|
190
|
+
"description": "The date CIDC ingests the manifest",
|
|
191
|
+
"type": "string"
|
|
184
192
|
}
|
|
185
193
|
}
|
|
186
194
|
}
|
|
@@ -0,0 +1,97 @@
|
|
|
1
|
+
{ "title": "scRNAseq assay template",
|
|
2
|
+
"description": "Single Cell RNA Sequencing (scRNAseq) submission.",
|
|
3
|
+
"prism_template_root_object_schema": "assays/scrnaseq_assay.json",
|
|
4
|
+
"prism_template_root_object_pointer": "/assays/scrnaseq/0",
|
|
5
|
+
"properties":
|
|
6
|
+
{
|
|
7
|
+
"worksheets":
|
|
8
|
+
{
|
|
9
|
+
"scRNAseq":
|
|
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/scrnaseq_assay.json#properties/assay_creator"
|
|
22
|
+
},
|
|
23
|
+
"batch id": {
|
|
24
|
+
"merge_pointer": "0/batch_id",
|
|
25
|
+
"type_ref": "assays/scrnaseq_assay.json#properties/batch_id"
|
|
26
|
+
},
|
|
27
|
+
"azimuth reference": {
|
|
28
|
+
"merge_pointer": "0/azimuth_reference",
|
|
29
|
+
"type_ref": "assays/components/scrnaseq_preamble.json#properties/azimuth_reference",
|
|
30
|
+
"allow_empty": true
|
|
31
|
+
},
|
|
32
|
+
"tabula sapiens reference": {
|
|
33
|
+
"merge_pointer": "0/tabula_sapiens_reference",
|
|
34
|
+
"type_ref": "assays/components/scrnaseq_preamble.json#properties/tabula_sapiens_reference",
|
|
35
|
+
"allow_empty": true
|
|
36
|
+
},
|
|
37
|
+
"assay chemistry version": {
|
|
38
|
+
"merge_pointer": "0/assay_chemistry_version",
|
|
39
|
+
"type_ref": "assays/components/scrnaseq_preamble.json#properties/assay_chemistry_version"
|
|
40
|
+
},
|
|
41
|
+
"barcode include file version": {
|
|
42
|
+
"merge_pointer": "0/barcode_include_file_version",
|
|
43
|
+
"type_ref": "assays/components/scrnaseq_preamble.json#properties/barcode_include_file_version"
|
|
44
|
+
},
|
|
45
|
+
"total barcode and umi length in read 1": {
|
|
46
|
+
"merge_pointer": "0/total_barcode_and_umi_length_in_read",
|
|
47
|
+
"type_ref": "assays/components/scrnaseq_preamble.json#properties/total_barcode_and_umi_length_in_read"
|
|
48
|
+
},
|
|
49
|
+
"sample metadata csv": {
|
|
50
|
+
"merge_pointer": "0/samples_metadata_csv",
|
|
51
|
+
"gcs_uri_format": "{protocol identifier}/scrnaseq/{batch id}/samples_metadata.csv",
|
|
52
|
+
"is_artifact": 1,
|
|
53
|
+
"type_ref": "assays/components/local_file.json#properties/file_path"
|
|
54
|
+
}
|
|
55
|
+
},
|
|
56
|
+
"prism_data_object_pointer": "/records/-",
|
|
57
|
+
"data_columns":
|
|
58
|
+
{
|
|
59
|
+
"Samples":
|
|
60
|
+
{
|
|
61
|
+
"Cimac ID":
|
|
62
|
+
{
|
|
63
|
+
"merge_pointer": "0/cimac_id",
|
|
64
|
+
"type_ref": "sample.json#properties/cimac_id"
|
|
65
|
+
},
|
|
66
|
+
"Lane": {
|
|
67
|
+
"merge_pointer": "0/details/lane",
|
|
68
|
+
"type": "string"
|
|
69
|
+
},
|
|
70
|
+
"Read 1": {
|
|
71
|
+
"merge_pointer": "0/details/read_1_file",
|
|
72
|
+
"is_artifact": 1,
|
|
73
|
+
"gcs_uri_format": "{protocol identifier}/scrnaseq/{batch id}/{cimac id}/read_1.gz",
|
|
74
|
+
"type_ref": "assays/components/local_file.json#properties/file_path"
|
|
75
|
+
},
|
|
76
|
+
"Read 2": {
|
|
77
|
+
"merge_pointer": "0/details/read_2_file",
|
|
78
|
+
"is_artifact": 1,
|
|
79
|
+
"gcs_uri_format": "{protocol identifier}/scrnaseq/{batch id}/{cimac id}/read_1.gz",
|
|
80
|
+
"type_ref": "assays/components/local_file.json#properties/file_path"
|
|
81
|
+
},
|
|
82
|
+
"library yield ng": {
|
|
83
|
+
"merge_pointer": "0/details/library_yield_ng",
|
|
84
|
+
"type_ref": "assays/components/scrnaseq_input.json#properties/library_yield_ng",
|
|
85
|
+
"allow_empty": true
|
|
86
|
+
},
|
|
87
|
+
"rin": {
|
|
88
|
+
"merge_pointer": "0/details/rin",
|
|
89
|
+
"type_ref": "assays/components/scrnaseq_input.json#properties/rin",
|
|
90
|
+
"allow_empty": true
|
|
91
|
+
}
|
|
92
|
+
}
|
|
93
|
+
}
|
|
94
|
+
}
|
|
95
|
+
}
|
|
96
|
+
}
|
|
97
|
+
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
cidc_schemas/__init__.py,sha256=
|
|
1
|
+
cidc_schemas/__init__.py,sha256=VCp_9EcG-4L8tZOfe9noiPFJoIcB7WIS2dQZJzj7wLo,136
|
|
2
2
|
cidc_schemas/cli.py,sha256=gWiktRlraNH8Q0zNUae9dohKjPwBmcY0BJwdcQ_fIic,4099
|
|
3
3
|
cidc_schemas/constants.py,sha256=RULs7pGuBAVq1teXymrfbVsK23ZowJvLuZlv0KcjL-Y,698
|
|
4
4
|
cidc_schemas/json_validation.py,sha256=spmPsqinib7Ns5GvWOKKa1rc7IrN_s2bqifpTKdaLVU,23288
|
|
@@ -11,8 +11,8 @@ 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
|
-
cidc_schemas/prism/constants.py,sha256=
|
|
15
|
-
cidc_schemas/prism/core.py,sha256=
|
|
14
|
+
cidc_schemas/prism/constants.py,sha256=l_bF54Vn50XbuXi3yKZkKrURt-dwbfOnL_5dGlpuoF8,2397
|
|
15
|
+
cidc_schemas/prism/core.py,sha256=tXDCCHurvcrxfU11meH3NRAVo9niklup0dpLRoIXwPk,20242
|
|
16
16
|
cidc_schemas/prism/extra_metadata.py,sha256=S9w5EGAT0xwaWMrpYluF7Y1ONsI4wFtxFD8ib6Va_fU,8567
|
|
17
17
|
cidc_schemas/prism/merger.py,sha256=36CKBPVoWecHuvGp3oT9a2d4jWIkvKuS_UofKTEpMYs,13065
|
|
18
18
|
cidc_schemas/prism/pipelines.py,sha256=dvZtoC7pEVgdPual_DZUTBFfgvSV7yTdk1RHwi5h6Vs,33522
|
|
@@ -20,8 +20,8 @@ cidc_schemas/schemas/aliquot.json,sha256=F24s6xGTeJl-VT6s6wvV8YtMA4O-0BsUCwtD2OE
|
|
|
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
|
|
22
22
|
cidc_schemas/schemas/participant.json,sha256=X72GQSdLqhZl_Vg8OHPqRotblIluNSmiw8N5UeM-di8,2843
|
|
23
|
-
cidc_schemas/schemas/sample.json,sha256=
|
|
24
|
-
cidc_schemas/schemas/shipping_core.json,sha256=
|
|
23
|
+
cidc_schemas/schemas/sample.json,sha256=ljUzhe7J2WKHpLcz5XZTxIx7oRQa8uEYO-OQse5L-HA,22227
|
|
24
|
+
cidc_schemas/schemas/shipping_core.json,sha256=HXuAmmuQS8xzi-2G1yUCXsi8TYAIS9-Oylbidjgh3sM,4618
|
|
25
25
|
cidc_schemas/schemas/artifacts/artifact_bam.json,sha256=nPy3qx07--arLyb9VgfdVK6OJoMPhr6rnp-3AF6o82Q,1653
|
|
26
26
|
cidc_schemas/schemas/artifacts/artifact_bam_bai.json,sha256=S1LxCZVyN3v-Hxhs7TEDbGcV-y7LVdAoLzGblT9IhEk,1671
|
|
27
27
|
cidc_schemas/schemas/artifacts/artifact_bed.json,sha256=nGPKiAd2GQGJ6JkdLaqZhfOuyDmsAdUqril1Yao2qmE,1653
|
|
@@ -77,6 +77,7 @@ cidc_schemas/schemas/assays/nanostring_assay.json,sha256=XAL6n80sxaAwUcNrx-pgA_Y
|
|
|
77
77
|
cidc_schemas/schemas/assays/olink_assay.json,sha256=kQrUPjDKLKYyWpXoauiNDa0FANxPH_1bOfHeQEY-qAQ,5193
|
|
78
78
|
cidc_schemas/schemas/assays/rna_assay-v0.json,sha256=skNGXbVVDY-6RpPosTHweQYtLntvo0bAiXcOxVSeh1s,3043
|
|
79
79
|
cidc_schemas/schemas/assays/rna_assay.json,sha256=Gh47rRWYJSUIoLK3vvOb8_kFXhlISScrtA7nWasoBZI,409
|
|
80
|
+
cidc_schemas/schemas/assays/scrnaseq_assay.json,sha256=zZSt1AsP5l8DkObi5tsD3oSh1s1aRwr5xUmTRYOLbeQ,2657
|
|
80
81
|
cidc_schemas/schemas/assays/tcr_analysis.json,sha256=Sj8a4A3NpKl4PVu69_3Q0pAsRvIlgT7ltbIFHB7bHZQ,2380
|
|
81
82
|
cidc_schemas/schemas/assays/tcr_assay.json,sha256=lQm_f-3UUT_nqctc4ARjYNPKjpDfmfGzUkgRJf4m36k,4691
|
|
82
83
|
cidc_schemas/schemas/assays/wes_analysis.json,sha256=4RAnkqtCj5-txc189KmwNHJaxjrtIUIbpihFrAJFeIw,2771
|
|
@@ -85,7 +86,7 @@ cidc_schemas/schemas/assays/wes_core.json,sha256=dwAe2Hi-K5G0rm_icSbFUEIhDNG7HkE
|
|
|
85
86
|
cidc_schemas/schemas/assays/wes_tumor_only_analysis.json,sha256=dU3oaeBbPnEv2Xjym7ikWr5ywwolnVbWDu1Weq2m8Wg,2018
|
|
86
87
|
cidc_schemas/schemas/assays/components/antibody.json,sha256=vfLxXkXIcaJ1BXeUjCaJehrRCdVrBW3gxibwrD7zzd4,960
|
|
87
88
|
cidc_schemas/schemas/assays/components/assay_core.json,sha256=QGuLiArVb7lEF2t1Ml4Qt7g4SXY58WuGBPFVgvOLI5w,485
|
|
88
|
-
cidc_schemas/schemas/assays/components/available_assays.json,sha256=
|
|
89
|
+
cidc_schemas/schemas/assays/components/available_assays.json,sha256=XEzfK_ocbR17loALDqLPNtkG6aLcfYQLxqbl_AFvoW8,4034
|
|
89
90
|
cidc_schemas/schemas/assays/components/available_ngs_analyses.json,sha256=dmC10wI7roGVwbf5T8DxIW1geIjks-Sl-GHJkJXc6eQ,1163
|
|
90
91
|
cidc_schemas/schemas/assays/components/composite_image.json,sha256=k9EaBG3y9j-lvg3nQNZbfVpo9fK_gUz1-9iTwjlTDfE,733
|
|
91
92
|
cidc_schemas/schemas/assays/components/controls.json,sha256=_Wxz7W2msTGJ2Ei4XZg0Qy1t8A5_rLSHNvdPurC073E,458
|
|
@@ -105,6 +106,8 @@ cidc_schemas/schemas/assays/components/ngs_assay_core.json,sha256=jqJbrnSPZV6pmJ
|
|
|
105
106
|
cidc_schemas/schemas/assays/components/ngs_assay_record.json,sha256=DwHKyRNDQ6h8PUz0KdBfmcd0Pz1Q1rOeqWpKfUIwjZM,615
|
|
106
107
|
cidc_schemas/schemas/assays/components/reads_core.json,sha256=p5RWN2TEGefenpz6pZlOG6MZ6tTAviKUx1bLCZtsNLk,1139
|
|
107
108
|
cidc_schemas/schemas/assays/components/reads_with_index.json,sha256=pg3wMQYMawCb1ZxJwiH_yCH3TAYu29EIZnB18AevzmM,1091
|
|
109
|
+
cidc_schemas/schemas/assays/components/scrnaseq_input.json,sha256=fIvV_xJPXDCoYajbsu21ISdhLaQVYjbPg_3nR_Jo7cE,1003
|
|
110
|
+
cidc_schemas/schemas/assays/components/scrnaseq_preamble.json,sha256=himJMT53FS2XdDZ81u_eW2tYVS212AqZuxdGKWgSwXU,2251
|
|
108
111
|
cidc_schemas/schemas/assays/components/imaging/mif_entry.json,sha256=0jYCSMD3j5r_u7Z-TJRV2ZLt7C4r7KuTtH8lMB6O9rU,546
|
|
109
112
|
cidc_schemas/schemas/assays/components/imaging/mif_export.json,sha256=CVGCpIVcHkTnIQvBibU4HkdYcm2lYzGYu3pXGm4bUa8,1728
|
|
110
113
|
cidc_schemas/schemas/assays/components/imaging/mif_input.json,sha256=Hf1PKkk6pHRLcGGJrVmkhC6SApOA5pD6XJFRscM9ee0,1000
|
|
@@ -144,6 +147,7 @@ cidc_schemas/schemas/templates/assays/nanostring_template.json,sha256=XFbf72EHNs
|
|
|
144
147
|
cidc_schemas/schemas/templates/assays/olink_template.json,sha256=3YqkeVF9PnXUeETkf0RfEB14jprNPMWWwY4GTALfuWY,6335
|
|
145
148
|
cidc_schemas/schemas/templates/assays/rna_bam_template.json,sha256=l2OLgb8hx3fAupUvdWWtn_QbOiyicYE2u4diVz7C5cg,3084
|
|
146
149
|
cidc_schemas/schemas/templates/assays/rna_fastq_template.json,sha256=ZSKfzQ38SkpeKTK-xT9YAz0tRafCjo-IUZsr8GBYLOM,3344
|
|
150
|
+
cidc_schemas/schemas/templates/assays/scrnaseq_template.json,sha256=H_xU32U-1S7HCqZanaSqWb6KJ97jMQIBjwO_zsxDsfg,4843
|
|
147
151
|
cidc_schemas/schemas/templates/assays/tcr_adaptive_template.json,sha256=Hb8ngxw6XHjIqtA9W1eLfO3ciH18VfRTKOQvipX14Dg,3269
|
|
148
152
|
cidc_schemas/schemas/templates/assays/tcr_fastq_template.json,sha256=7Qq4ssI8ErDrHy5RIxjPcNiDf2IBHG42JcngDFKxqlE,3457
|
|
149
153
|
cidc_schemas/schemas/templates/assays/wes_bam_template.json,sha256=nxbb_lNPi-5cdAlwmSBvn7cS_8gMjROOz7wBWk6ev0Y,2724
|
|
@@ -158,9 +162,9 @@ cidc_schemas/schemas/templates/manifests/tissue_slide_template.json,sha256=q2GmO
|
|
|
158
162
|
cidc_schemas/schemas/templates/manifests/tumor_normal_pairing_template.json,sha256=lVJrGb28n-vyfjGBzhrzjn1lMKw1b4HXXmWtwA603v0,2797
|
|
159
163
|
cidc_schemas/schemas/templates/manifests/tumor_tissue_dna_template.json,sha256=LpaoDXDS11NCa-Dv37N-tzEGomswQrx5fypkUcG7xJk,18956
|
|
160
164
|
cidc_schemas/schemas/templates/manifests/tumor_tissue_rna_template.json,sha256=-gww6NCHbtbI5z7UmNSmKyPK3IqKCE8F6n4XwTAb_gk,18101
|
|
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.
|
|
166
|
-
nci_cidc_schemas-0.27.
|
|
165
|
+
nci_cidc_schemas-0.27.21.dist-info/licenses/LICENSE,sha256=zK77-w4rYCZBHAYJEGkcFuPXwKIsP7jMPZ2iQOXjzko,1072
|
|
166
|
+
nci_cidc_schemas-0.27.21.dist-info/METADATA,sha256=haii5X0q96KRjTe_PXdR1-oyBp4PdHQ1r-y20sfh9d0,4554
|
|
167
|
+
nci_cidc_schemas-0.27.21.dist-info/WHEEL,sha256=JNWh1Fm1UdwIQV075glCn4MVuCRs0sotJIq-J6rbxCU,109
|
|
168
|
+
nci_cidc_schemas-0.27.21.dist-info/entry_points.txt,sha256=kSyTzXeJQrJp_2ZX0GS_NnbJR8ceQKLBSgER46PM0hs,55
|
|
169
|
+
nci_cidc_schemas-0.27.21.dist-info/top_level.txt,sha256=Wwb5Cu7QrnbmSJxI2d00e3-Mir36t0jTRnSulmfhi30,13
|
|
170
|
+
nci_cidc_schemas-0.27.21.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|