nci-cidc-schemas 0.27.20__py2.py3-none-any.whl → 0.27.22__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/prism/constants.py +2 -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 +1 -1
- cidc_schemas/schemas/shipping_core.json +1 -1
- cidc_schemas/schemas/templates/assays/scrnaseq_template.json +97 -0
- cidc_schemas/schemas/templates/manifests/normal_blood_dna_template.json +2 -1
- {nci_cidc_schemas-0.27.20.dist-info → nci_cidc_schemas-0.27.22.dist-info}/METADATA +1 -1
- {nci_cidc_schemas-0.27.20.dist-info → nci_cidc_schemas-0.27.22.dist-info}/RECORD +16 -12
- {nci_cidc_schemas-0.27.20.dist-info → nci_cidc_schemas-0.27.22.dist-info}/WHEEL +0 -0
- {nci_cidc_schemas-0.27.20.dist-info → nci_cidc_schemas-0.27.22.dist-info}/entry_points.txt +0 -0
- {nci_cidc_schemas-0.27.20.dist-info → nci_cidc_schemas-0.27.22.dist-info}/licenses/LICENSE +0 -0
- {nci_cidc_schemas-0.27.20.dist-info → nci_cidc_schemas-0.27.22.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
|
}
|
|
@@ -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
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
|
|
7
7
|
"$comment": "description used in docs/index.html and docs/sample.html",
|
|
8
8
|
"description": "Any material sample taken from a biological entity for testing, diagnostic, propagation, treatment or research purposes, including a sample obtained from a living organism or taken from the biological object after halting of all its life functions. Biospecimen can contain one or more components including but not limited to cellular molecules, cells, tissues, organs, body fluids, embryos, and body excretory products.",
|
|
9
|
-
|
|
9
|
+
|
|
10
10
|
"properties": {
|
|
11
11
|
"cimac_id": {
|
|
12
12
|
"description": "Specimen identifier assigned by the CIMAC-CIDC Network. Formatted as CTTTPPPSS.AA for trial code TTT, participant PPP, sample SS, and aliquot AA.",
|
|
@@ -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
|
+
}
|
|
@@ -219,7 +219,8 @@
|
|
|
219
219
|
},
|
|
220
220
|
"type of tumor sample": {
|
|
221
221
|
"merge_pointer": "/type_of_tumor_sample",
|
|
222
|
-
"type_ref": "sample.json#properties/type_of_tumor_sample"
|
|
222
|
+
"type_ref": "sample.json#properties/type_of_tumor_sample",
|
|
223
|
+
"allow_empty": true
|
|
223
224
|
},
|
|
224
225
|
"sample collection procedure": {
|
|
225
226
|
"merge_pointer": "/sample_collection_procedure",
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
cidc_schemas/__init__.py,sha256=
|
|
1
|
+
cidc_schemas/__init__.py,sha256=COii5dEs7h55Xtjv-Tn6FFlgtxB8TrzZLQlVnQXVgwo,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,7 +11,7 @@ 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=
|
|
14
|
+
cidc_schemas/prism/constants.py,sha256=l_bF54Vn50XbuXi3yKZkKrURt-dwbfOnL_5dGlpuoF8,2397
|
|
15
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
|
|
@@ -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=pZeMT-Mn_Y8Lq12Ozl72bvxBnh-hiFUegWhopRxMIbQ,22223
|
|
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,13 +147,14 @@ 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
|
|
150
154
|
cidc_schemas/schemas/templates/assays/wes_fastq_template.json,sha256=vuwuIpqXyqpGxCunpjbHKaBQhfKFnr2R-wMkXDiJdKM,3143
|
|
151
155
|
cidc_schemas/schemas/templates/manifests/h_and_e_template.json,sha256=8fbhWxKWhITds1KkbEdQxHHoeoKB2Tm40plzsxz3_FE,18009
|
|
152
156
|
cidc_schemas/schemas/templates/manifests/microbiome_dna_template.json,sha256=POucJzR6ac_ndXgttL8Pm6s7BKtu5tqJz4Y49U8zLj0,17848
|
|
153
|
-
cidc_schemas/schemas/templates/manifests/normal_blood_dna_template.json,sha256=
|
|
157
|
+
cidc_schemas/schemas/templates/manifests/normal_blood_dna_template.json,sha256=emT2mC8vwKU4rjBNm-NMS5JYxDelDNH2YL5QESOXm-s,18980
|
|
154
158
|
cidc_schemas/schemas/templates/manifests/normal_tissue_dna_template.json,sha256=yAKMW5KIbQ14O8wXUTRdMM1QFg-hxLNz0y4XncxPpRI,18669
|
|
155
159
|
cidc_schemas/schemas/templates/manifests/pbmc_template.json,sha256=esGW9nVQ6Elgf0LeELowwpxlP7EOgSgnF6Jka0AnsPA,18778
|
|
156
160
|
cidc_schemas/schemas/templates/manifests/plasma_template.json,sha256=VNraMcIdpxvPJC5SH4nnUeqOCz5HUuiGiMcKC20Ctso,16138
|
|
@@ -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.22.dist-info/licenses/LICENSE,sha256=zK77-w4rYCZBHAYJEGkcFuPXwKIsP7jMPZ2iQOXjzko,1072
|
|
166
|
+
nci_cidc_schemas-0.27.22.dist-info/METADATA,sha256=qDRkei6yKpzptau2M8tO7EYtx7KQOOQ24t6bzTrbzeU,4554
|
|
167
|
+
nci_cidc_schemas-0.27.22.dist-info/WHEEL,sha256=JNWh1Fm1UdwIQV075glCn4MVuCRs0sotJIq-J6rbxCU,109
|
|
168
|
+
nci_cidc_schemas-0.27.22.dist-info/entry_points.txt,sha256=kSyTzXeJQrJp_2ZX0GS_NnbJR8ceQKLBSgER46PM0hs,55
|
|
169
|
+
nci_cidc_schemas-0.27.22.dist-info/top_level.txt,sha256=Wwb5Cu7QrnbmSJxI2d00e3-Mir36t0jTRnSulmfhi30,13
|
|
170
|
+
nci_cidc_schemas-0.27.22.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|