nci-cidc-schemas 0.26.28__py2.py3-none-any.whl → 0.26.32__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 +4 -4
- cidc_schemas/prism/constants.py +2 -0
- cidc_schemas/prism/core.py +1 -0
- cidc_schemas/prism/extra_metadata.py +1 -0
- cidc_schemas/prism/pipelines.py +2 -0
- cidc_schemas/schemas/artifacts/artifact_core.json +1 -0
- cidc_schemas/schemas/artifacts/artifact_rdata.json +51 -0
- cidc_schemas/schemas/assays/components/available_ngs_analyses.json +3 -0
- cidc_schemas/schemas/assays/ctdna_analysis.json +52 -0
- cidc_schemas/schemas/assays/ctdna_assay.json +3 -0
- cidc_schemas/schemas/assays/ihc_assay.json +3 -2
- cidc_schemas/schemas/templates/analyses/ctdna_analysis_template.json +121 -0
- cidc_schemas/schemas/templates/assays/ctdna_template.json +18 -0
- cidc_schemas/template.py +6 -4
- cidc_schemas/unprism.py +1 -0
- {nci_cidc_schemas-0.26.28.dist-info → nci_cidc_schemas-0.26.32.dist-info}/METADATA +5 -5
- {nci_cidc_schemas-0.26.28.dist-info → nci_cidc_schemas-0.26.32.dist-info}/RECORD +22 -19
- {nci_cidc_schemas-0.26.28.dist-info → nci_cidc_schemas-0.26.32.dist-info}/WHEEL +1 -1
- {nci_cidc_schemas-0.26.28.dist-info → nci_cidc_schemas-0.26.32.dist-info}/LICENSE +0 -0
- {nci_cidc_schemas-0.26.28.dist-info → nci_cidc_schemas-0.26.32.dist-info}/entry_points.txt +0 -0
- {nci_cidc_schemas-0.26.28.dist-info → nci_cidc_schemas-0.26.32.dist-info}/top_level.txt +0 -0
cidc_schemas/__init__.py
CHANGED
cidc_schemas/json_validation.py
CHANGED
|
@@ -110,10 +110,10 @@ class _Validator(jsonschema.Draft7Validator):
|
|
|
110
110
|
ref_path_pattern = scope["ref_path_pattern"]
|
|
111
111
|
# If there are no cached values for this ref path pattern, collect them
|
|
112
112
|
if ref_path_pattern not in self._in_doc_refs_cache:
|
|
113
|
-
self._in_doc_refs_cache[
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
113
|
+
self._in_doc_refs_cache[ref_path_pattern] = (
|
|
114
|
+
self._get_values_for_path_pattern(
|
|
115
|
+
ref_path_pattern, instance
|
|
116
|
+
)
|
|
117
117
|
)
|
|
118
118
|
|
|
119
119
|
# see: https://docs.python.org/3/library/contextlib.html
|
cidc_schemas/prism/constants.py
CHANGED
|
@@ -51,6 +51,7 @@ SUPPORTED_ANALYSES = [
|
|
|
51
51
|
"tcr_analysis",
|
|
52
52
|
"wes_analysis",
|
|
53
53
|
"wes_tumor_only_analysis",
|
|
54
|
+
"ctdna_analysis",
|
|
54
55
|
]
|
|
55
56
|
|
|
56
57
|
SUPPORTED_TEMPLATES = SUPPORTED_ASSAYS + SUPPORTED_MANIFESTS + SUPPORTED_ANALYSES
|
|
@@ -62,6 +63,7 @@ ASSAY_TO_FILEPATH: Dict[str, str] = {
|
|
|
62
63
|
"rna_level1_analysis": "rna/",
|
|
63
64
|
"wes_analysis": "wes/",
|
|
64
65
|
"wes_tumor_only_analysis": "wes_tumor_only/",
|
|
66
|
+
"ctdna_analysis": "ctdna/",
|
|
65
67
|
# assay specifics removed
|
|
66
68
|
"atacseq_fastq": "atacseq/",
|
|
67
69
|
"rna_bam": "rna/",
|
cidc_schemas/prism/core.py
CHANGED
cidc_schemas/prism/pipelines.py
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
"""Analysis pipeline configuration generators."""
|
|
2
|
+
|
|
2
3
|
from collections import defaultdict
|
|
3
4
|
from datetime import datetime
|
|
4
5
|
from io import BytesIO
|
|
@@ -15,6 +16,7 @@ from ..util import load_pipeline_config_template, participant_id_from_cimac
|
|
|
15
16
|
|
|
16
17
|
logger = logging.getLogger(__file__)
|
|
17
18
|
|
|
19
|
+
|
|
18
20
|
# Note, bucket names must be all lowercase, dash, and underscore
|
|
19
21
|
# https://cloud.google.com/storage/docs/naming-buckets#requirements
|
|
20
22
|
def RNA_GOOGLE_BUCKET_PATH_FN(trial_id: str, batch_num: int) -> str:
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "metaschema/strict_meta_schema.json#",
|
|
3
|
+
"$id": "rdata_artifact",
|
|
4
|
+
"title": "RData Artifact",
|
|
5
|
+
"type": "object",
|
|
6
|
+
"description": "Information about a rdata file.",
|
|
7
|
+
"additionalProperties": false,
|
|
8
|
+
"properties": {
|
|
9
|
+
"data_format": {
|
|
10
|
+
"description": "Data format.",
|
|
11
|
+
"const": "RDATA"
|
|
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
|
+
}
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "metaschema/strict_meta_schema.json#",
|
|
3
|
+
"$id": "ctdna_analysis",
|
|
4
|
+
"title": "ctDNA analysis",
|
|
5
|
+
"type": "object",
|
|
6
|
+
"description": "Combined analysis files for the ctDNA assay.",
|
|
7
|
+
|
|
8
|
+
"definitions": {
|
|
9
|
+
"sample_analysis": {
|
|
10
|
+
"type": "object",
|
|
11
|
+
"description": "ctDNA assay output files for a tumor normal pair of samples.",
|
|
12
|
+
|
|
13
|
+
"required": [
|
|
14
|
+
"run_id",
|
|
15
|
+
"tumor"
|
|
16
|
+
],
|
|
17
|
+
"additionalProperties": false,
|
|
18
|
+
"properties": {
|
|
19
|
+
"run_id": {
|
|
20
|
+
"type": "string",
|
|
21
|
+
"description": "An id used as if this was a paired analysis run."
|
|
22
|
+
},
|
|
23
|
+
"error": { "$ref": "assays/wes_core.json#properties/error" },
|
|
24
|
+
"tumor": { "$ref": "assays/wes_assay.json#definitions/sample_analysis" },
|
|
25
|
+
"comments": {
|
|
26
|
+
"type": "string",
|
|
27
|
+
"description": "Comments on the tumor-only analysis run."
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
},
|
|
32
|
+
|
|
33
|
+
"required": [],
|
|
34
|
+
"additionalProperties": false,
|
|
35
|
+
"properties": {
|
|
36
|
+
"runs": {
|
|
37
|
+
"type": "array",
|
|
38
|
+
"items": {
|
|
39
|
+
"$ref": "assays/ctdna_analysis.json#definitions/sample_analysis"
|
|
40
|
+
},
|
|
41
|
+
"mergeStrategy": "arrayMergeById",
|
|
42
|
+
"mergeOptions": {
|
|
43
|
+
"$comment": "TODO fix to merge by a pair of normal and tumor ids. It requires improvements to the merge strategy code.",
|
|
44
|
+
"idRef": "/run_id"
|
|
45
|
+
}
|
|
46
|
+
},
|
|
47
|
+
"batch_id": {"$ref": "assays/tcr_assay.json#properties/batch_id"},
|
|
48
|
+
"excluded_samples": {
|
|
49
|
+
"$ref": "assays/components/excluded_samples.json"
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
}
|
|
@@ -41,6 +41,9 @@
|
|
|
41
41
|
"bias_qc_plots": {"$ref": "artifacts/artifact_pdf.json"},
|
|
42
42
|
"optimal_solution": {"$ref": "artifacts/artifact_zip.json"},
|
|
43
43
|
"other_solutions": {"$ref": "artifacts/artifact_zip.json"},
|
|
44
|
+
"on_premise_corrected_depth_file": {"$ref": "artifacts/artifact_text.json"},
|
|
45
|
+
"on_premise_parameters_file": {"$ref": "artifacts/artifact_text.json"},
|
|
46
|
+
"on_premise_rdata_file": {"$ref": "artifacts/artifact_rdata.json"},
|
|
44
47
|
|
|
45
48
|
"fraction_cna_subclonal": {
|
|
46
49
|
"description": "Fraction of copy number altered bins that are subclonal. Accepts NaN. (0-1)",
|
|
@@ -129,7 +129,8 @@
|
|
|
129
129
|
"enum": [
|
|
130
130
|
"Vectra 2.0",
|
|
131
131
|
"Hamamatsu",
|
|
132
|
-
"AT2 Turbo"
|
|
132
|
+
"AT2 Turbo",
|
|
133
|
+
"Akoya PhenoImager HT"
|
|
133
134
|
]
|
|
134
135
|
},
|
|
135
136
|
"staining_platform": {
|
|
@@ -171,4 +172,4 @@
|
|
|
171
172
|
"records"
|
|
172
173
|
],
|
|
173
174
|
"mergeStrategy": "objectMerge"
|
|
174
|
-
}
|
|
175
|
+
}
|
|
@@ -0,0 +1,121 @@
|
|
|
1
|
+
{
|
|
2
|
+
"title": "ctDNA analysis template",
|
|
3
|
+
"description": "ctDNA analysis submission.",
|
|
4
|
+
"prism_template_root_object_schema": "assays/ctdna_analysis.json",
|
|
5
|
+
"prism_template_root_object_pointer": "/analysis/ctdna_analysis",
|
|
6
|
+
"properties": {
|
|
7
|
+
"worksheets": {
|
|
8
|
+
"ctDNA Analysis": {
|
|
9
|
+
"preamble_rows": {
|
|
10
|
+
"protocol identifier": {
|
|
11
|
+
"merge_pointer": "2/protocol_identifier",
|
|
12
|
+
"type_ref": "clinical_trial.json#properties/protocol_identifier"
|
|
13
|
+
},
|
|
14
|
+
"folder": {
|
|
15
|
+
"do_not_merge": true,
|
|
16
|
+
"type": "string",
|
|
17
|
+
"allow_empty": true
|
|
18
|
+
},
|
|
19
|
+
"batch id": {
|
|
20
|
+
"merge_pointer": "0/batch_id",
|
|
21
|
+
"type_ref": "assays/tcr_assay.json#properties/batch_id"
|
|
22
|
+
}
|
|
23
|
+
},
|
|
24
|
+
"prism_data_object_pointer": "/runs/-",
|
|
25
|
+
"data_columns": {
|
|
26
|
+
"ctDNA Runs": {
|
|
27
|
+
"run id": {
|
|
28
|
+
"merge_pointer": "/run_id",
|
|
29
|
+
"type_ref": "assays/ctdna_analysis.json#definitions/sample_analysis/properties/run_id",
|
|
30
|
+
"process_as": [
|
|
31
|
+
{
|
|
32
|
+
"parse_through": "lambda run: f'{folder or \"\"}analysis/{run}_error.yaml'",
|
|
33
|
+
"merge_pointer": "/error",
|
|
34
|
+
"gcs_uri_format": "{protocol identifier}/ctdna/{run id}/analysis/error.yaml",
|
|
35
|
+
"type_ref": "assays/components/local_file.json#properties/file_path",
|
|
36
|
+
"is_artifact": 1,
|
|
37
|
+
"allow_empty": true
|
|
38
|
+
}
|
|
39
|
+
]
|
|
40
|
+
},
|
|
41
|
+
"cimac id": {
|
|
42
|
+
"merge_pointer": "/tumor/cimac_id",
|
|
43
|
+
"type_ref": "sample.json#properties/cimac_id",
|
|
44
|
+
"process_as": [
|
|
45
|
+
{
|
|
46
|
+
"parse_through": "lambda id: f'{folder or \"\"}analysis/align/{id}/{id}.sorted.dedup.bam'",
|
|
47
|
+
"merge_pointer": "/tumor/alignment/align_sorted_dedup",
|
|
48
|
+
"gcs_uri_format": "{protocol identifier}/ctdna/{run id}/analysis/tumor/{cimac id}/sorted.dedup.bam",
|
|
49
|
+
"type_ref": "assays/components/local_file.json#properties/file_path",
|
|
50
|
+
"is_artifact": 1
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
"parse_through": "lambda id: f'{folder or \"\"}analysis/align/{id}/{id}.sorted.dedup.bam.bai'",
|
|
54
|
+
"merge_pointer": "/tumor/alignment/align_sorted_dedup_index",
|
|
55
|
+
"gcs_uri_format": "{protocol identifier}/ctdna/{run id}/analysis/tumor/{cimac id}/sorted.dedup.bam.bai",
|
|
56
|
+
"type_ref": "assays/components/local_file.json#properties/file_path",
|
|
57
|
+
"is_artifact": 1
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
"parse_through": "lambda id: f'{folder or \"\"}analysis/align/{id}/{id}_recalibrated.bam'",
|
|
61
|
+
"merge_pointer": "/tumor/alignment/align_recalibrated",
|
|
62
|
+
"gcs_uri_format": "{protocol identifier}/ctdna/{run id}/analysis/tumor/{cimac id}/recalibrated.bam",
|
|
63
|
+
"type_ref": "assays/components/local_file.json#properties/file_path",
|
|
64
|
+
"is_artifact": 1
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
"parse_through": "lambda id: f'{folder or \"\"}analysis/align/{id}/{id}_recalibrated.bam.bai'",
|
|
68
|
+
"merge_pointer": "/tumor/alignment/align_recalibrated_index",
|
|
69
|
+
"gcs_uri_format": "{protocol identifier}/ctdna/{run id}/analysis/tumor/{cimac id}/recalibrated.bam.bai",
|
|
70
|
+
"type_ref": "assays/components/local_file.json#properties/file_path",
|
|
71
|
+
"is_artifact": 1
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
"parse_through": "lambda id: f'{folder or \"\"}analysis/hlahd/{id}/result/{id}_final.result.txt'",
|
|
75
|
+
"merge_pointer": "/tumor/hla/hla_final_result",
|
|
76
|
+
"gcs_uri_format": "{protocol identifier}/ctdna/{run id}/analysis/tumor/{cimac id}/hla_final_result.txt",
|
|
77
|
+
"type_ref": "assays/components/local_file.json#properties/file_path",
|
|
78
|
+
"is_artifact": 1
|
|
79
|
+
},
|
|
80
|
+
{
|
|
81
|
+
"parse_through": "lambda id: f'{folder or \"\"}analysis/optitype/{id}/{id}_result.tsv'",
|
|
82
|
+
"merge_pointer": "/tumor/hla/optitype_result",
|
|
83
|
+
"gcs_uri_format": "{protocol identifier}/ctdna/{run id}/analysis/tumor/{cimac id}/optitype_result.tsv",
|
|
84
|
+
"type_ref": "assays/components/local_file.json#properties/file_path",
|
|
85
|
+
"is_artifact": 1
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
"parse_through": "lambda id: f'{folder or \"\"}analysis/xhla/{id}/report-{id}-hla.json'",
|
|
89
|
+
"merge_pointer": "/tumor/hla/xhla_report_hla",
|
|
90
|
+
"gcs_uri_format": "{protocol identifier}/ctdna/{run id}/analysis/tumor/{cimac id}/xhla_report_hla.json",
|
|
91
|
+
"type_ref": "assays/components/local_file.json#properties/file_path",
|
|
92
|
+
"is_artifact": 1
|
|
93
|
+
}
|
|
94
|
+
]
|
|
95
|
+
},
|
|
96
|
+
"comments": {
|
|
97
|
+
"type_ref": "assays/ctdna_analysis.json#definitions/sample_analysis/properties/comments",
|
|
98
|
+
"merge_pointer": "0/comments",
|
|
99
|
+
"allow_empty": true
|
|
100
|
+
}
|
|
101
|
+
}
|
|
102
|
+
}
|
|
103
|
+
},
|
|
104
|
+
"Excluded Samples": {
|
|
105
|
+
"prism_data_object_pointer": "/excluded_samples/-",
|
|
106
|
+
"data_columns": {
|
|
107
|
+
"Samples Excluded From Analysis": {
|
|
108
|
+
"cimac id": {
|
|
109
|
+
"type_ref": "sample.json#properties/cimac_id",
|
|
110
|
+
"merge_pointer": "0/cimac_id"
|
|
111
|
+
},
|
|
112
|
+
"reason": {
|
|
113
|
+
"type_ref": "assays/components/excluded_samples.json#items/properties/reason_excluded",
|
|
114
|
+
"merge_pointer": "0/reason_excluded"
|
|
115
|
+
}
|
|
116
|
+
}
|
|
117
|
+
}
|
|
118
|
+
}
|
|
119
|
+
}
|
|
120
|
+
}
|
|
121
|
+
}
|
|
@@ -93,6 +93,24 @@
|
|
|
93
93
|
"merge_pointer": "0/tumor_fraction",
|
|
94
94
|
"type_ref": "assays/ctdna_assay.json#definitions/entry/properties/tumor_fraction"
|
|
95
95
|
},
|
|
96
|
+
"on premise corrected depth file": {
|
|
97
|
+
"merge_pointer": "0/on_premise_corrected_depth_file",
|
|
98
|
+
"type_ref": "assays/components/local_file.json#properties/file_path",
|
|
99
|
+
"is_artifact": 1,
|
|
100
|
+
"gcs_uri_format": "{protocol identifier}/ctdna/{batch id}/{cimac id}/OnPrem.correctedDepth.txt"
|
|
101
|
+
},
|
|
102
|
+
"on premise parameters file": {
|
|
103
|
+
"merge_pointer": "0/on_premise_parameters_file",
|
|
104
|
+
"type_ref": "assays/components/local_file.json#properties/file_path",
|
|
105
|
+
"is_artifact": 1,
|
|
106
|
+
"gcs_uri_format": "{protocol identifier}/ctdna/{batch id}/{cimac id}/OnPrem.params.txt"
|
|
107
|
+
},
|
|
108
|
+
"on premise rdata file": {
|
|
109
|
+
"merge_pointer": "0/on_premise_rdata_file",
|
|
110
|
+
"type_ref": "assays/components/local_file.json#properties/file_path",
|
|
111
|
+
"is_artifact": 1,
|
|
112
|
+
"gcs_uri_format": "{protocol identifier}/ctdna/{batch id}/{cimac id}/OnPrem.RData"
|
|
113
|
+
},
|
|
96
114
|
"comments": {
|
|
97
115
|
"type_ref": "assays/ctdna_assay.json#definitions/entry/properties/comments",
|
|
98
116
|
"merge_pointer": "0/comments",
|
cidc_schemas/template.py
CHANGED
|
@@ -232,6 +232,7 @@ def _initialize_template_schema(name: str, title: str, pointer: str):
|
|
|
232
232
|
"rna": "RNA sequencing Level 1",
|
|
233
233
|
"wes": "Whole Exome Sequencing (WES) Tumor-Normal Paired",
|
|
234
234
|
"wes_tumor_only": "Whole Exome Sequencing (WES) Tumor-Only",
|
|
235
|
+
"ctDNA": "ctDNA",
|
|
235
236
|
}[name]
|
|
236
237
|
|
|
237
238
|
# static
|
|
@@ -419,6 +420,7 @@ def _convert_api_to_template(name: str, schema: dict, assay_schema: dict):
|
|
|
419
420
|
"rna": "RNAseq level 1",
|
|
420
421
|
"wes": "WES",
|
|
421
422
|
"wes_tumor_only": "WES tumor-only",
|
|
423
|
+
"ctdna": "ctDNA",
|
|
422
424
|
}[name]
|
|
423
425
|
|
|
424
426
|
pointer = [
|
|
@@ -825,7 +827,7 @@ class _FieldDef(NamedTuple):
|
|
|
825
827
|
uuid=file_uuid,
|
|
826
828
|
format_context=dict(
|
|
827
829
|
format_context,
|
|
828
|
-
num=num # add num to be able to generate
|
|
830
|
+
num=num, # add num to be able to generate
|
|
829
831
|
# different gcs keys for each multi-artifact file.
|
|
830
832
|
),
|
|
831
833
|
)
|
|
@@ -1002,9 +1004,9 @@ class Template:
|
|
|
1002
1004
|
data_schemas[table_name] = process_fields(table_schema)
|
|
1003
1005
|
processed_worksheet[section_name] = data_schemas
|
|
1004
1006
|
elif section_name == "prism_arbitrary_data_merge_pointer":
|
|
1005
|
-
processed_worksheet[
|
|
1006
|
-
|
|
1007
|
-
|
|
1007
|
+
processed_worksheet["prism_arbitrary_data_merge_pointer"] = (
|
|
1008
|
+
section_schema
|
|
1009
|
+
)
|
|
1008
1010
|
|
|
1009
1011
|
return processed_worksheet
|
|
1010
1012
|
|
cidc_schemas/unprism.py
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: nci_cidc_schemas
|
|
3
|
-
Version: 0.26.
|
|
3
|
+
Version: 0.26.32
|
|
4
4
|
Summary: The CIDC data model and tools for working with it.
|
|
5
5
|
Home-page: https://github.com/NCI-CIDC/cidc-schemas
|
|
6
6
|
Author: NCI
|
|
@@ -12,22 +12,22 @@ Classifier: Intended Audience :: Developers
|
|
|
12
12
|
Classifier: License :: OSI Approved :: MIT License
|
|
13
13
|
Classifier: Natural Language :: English
|
|
14
14
|
Classifier: Programming Language :: Python :: 3.9
|
|
15
|
-
Requires-Python: >=3.9,<3.
|
|
15
|
+
Requires-Python: >=3.9,<3.11
|
|
16
16
|
Description-Content-Type: text/markdown
|
|
17
17
|
License-File: LICENSE
|
|
18
18
|
Requires-Dist: dateparser ==1.1.4
|
|
19
19
|
Requires-Dist: xlsxwriter ==1.1.6
|
|
20
20
|
Requires-Dist: argparse ==1.1
|
|
21
|
-
Requires-Dist: pyyaml ==
|
|
21
|
+
Requires-Dist: pyyaml ==6.0.1
|
|
22
22
|
Requires-Dist: jsonschema ==3.0.1
|
|
23
23
|
Requires-Dist: openpyxl ==3.0.7
|
|
24
24
|
Requires-Dist: jsonmerge ==1.6.1
|
|
25
25
|
Requires-Dist: deepdiff ~=4.3.0
|
|
26
26
|
Requires-Dist: jsonpointer ==2.0
|
|
27
27
|
Requires-Dist: pandas ==1.2.4
|
|
28
|
-
Requires-Dist: jinja2 ~=3.
|
|
28
|
+
Requires-Dist: jinja2 ~=3.1.3
|
|
29
29
|
Requires-Dist: nci-cidc-ngs-pipeline-api ==0.1.25
|
|
30
|
-
Requires-Dist: markupsafe ==2.
|
|
30
|
+
Requires-Dist: markupsafe ==2.1.5
|
|
31
31
|
Requires-Dist: regex ==2022.3.2
|
|
32
32
|
|
|
33
33
|
# cidc-schemas
|
|
@@ -1,21 +1,21 @@
|
|
|
1
|
-
cidc_schemas/__init__.py,sha256=
|
|
1
|
+
cidc_schemas/__init__.py,sha256=pG73BM0fkcKpH1I0RlSniRM-l2wAhEnNwWYyrochnhY,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=SyZSW7AAS-qlYLUUV_ri4393utkNsDexcWB73rEmFLs,20035
|
|
5
5
|
cidc_schemas/migrations.py,sha256=Amg_T4cFgMzySD7yNnT_PWpqP7hwlTWGeHlI_RSXuRI,14766
|
|
6
|
-
cidc_schemas/template.py,sha256=
|
|
6
|
+
cidc_schemas/template.py,sha256=J41S65-2w4VdmpLDVY-icyHWAsbH1Gtg-pMlL_TGo6A,49891
|
|
7
7
|
cidc_schemas/template_reader.py,sha256=xXtLRKu1y4FrPj8RgyGOmB2hlsCDXcuvMBWami2_jV8,13119
|
|
8
8
|
cidc_schemas/template_writer.py,sha256=faOhvSDTp4nuPhOtVQR_J7YNnFzx-vh7oyNpFdee1mY,18236
|
|
9
|
-
cidc_schemas/unprism.py,sha256=
|
|
9
|
+
cidc_schemas/unprism.py,sha256=5EeqNKedVEf15CJiMQ-ImXd1wIbNnzihv21rAMClZyc,13325
|
|
10
10
|
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=
|
|
15
|
-
cidc_schemas/prism/core.py,sha256=
|
|
16
|
-
cidc_schemas/prism/extra_metadata.py,sha256=
|
|
14
|
+
cidc_schemas/prism/constants.py,sha256=fFiXfFFMiGqG07mKlt_ejcRZrnMD6g66pwnB6s4Dfgk,2379
|
|
15
|
+
cidc_schemas/prism/core.py,sha256=PQgsRAEleT6gO3VyE4uFTYa3qK_VXjFcErV1YwWV1nQ,19294
|
|
16
|
+
cidc_schemas/prism/extra_metadata.py,sha256=wZjhUGKSvfupr6qZ1WuPepKnf_FG1nGfsDai_kBFZ50,8559
|
|
17
17
|
cidc_schemas/prism/merger.py,sha256=Kf5o9NWT80XqYZASbH0dJsQ0dkwMl3HtoR_p7wqUypI,12431
|
|
18
|
-
cidc_schemas/prism/pipelines.py,sha256=
|
|
18
|
+
cidc_schemas/prism/pipelines.py,sha256=x_qxZ2Xq2pX30gSFW_w-hwUlaUz29lQ-hByM8h0_tao,33532
|
|
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=mqvpCTqWGimKA8-S4F32YMDBoHcJkawpr9iTwUgH56w,4652
|
|
@@ -32,7 +32,7 @@ cidc_schemas/schemas/artifacts/artifact_clinical_docx.json,sha256=9Lbq9H0mhPIRDA
|
|
|
32
32
|
cidc_schemas/schemas/artifacts/artifact_clinical_xlsx.json,sha256=IOQD7NBS3lvJV2Dts0Z6y0QoyYeB2jc2OLFgjSSTEn4,2232
|
|
33
33
|
cidc_schemas/schemas/artifacts/artifact_cncf.json,sha256=IrawYPFqZ4HV0bClCKgOpO8Xh6d2GD8rP7tjS5ASv_o,1657
|
|
34
34
|
cidc_schemas/schemas/artifacts/artifact_cns.json,sha256=R9RItkDV_kqnfLqr-WBa7yJmeDc2kblJg3xx7hNjtAk,1653
|
|
35
|
-
cidc_schemas/schemas/artifacts/artifact_core.json,sha256=
|
|
35
|
+
cidc_schemas/schemas/artifacts/artifact_core.json,sha256=Fmm6LSnEBzEutpXtTpB3pQgzObCXl4Ymu9BbvN_5aHM,3140
|
|
36
36
|
cidc_schemas/schemas/artifacts/artifact_csv.json,sha256=BPqogQ3DMjyRs9N-sk9c1Q7gKTNumOHhhwwn5gCHbGM,1665
|
|
37
37
|
cidc_schemas/schemas/artifacts/artifact_elisa_xlsx.json,sha256=1Erw2HG4YJPiNop40hs9LigHr7O66_WRlrZ3wWSQzBs,2216
|
|
38
38
|
cidc_schemas/schemas/artifacts/artifact_fastq_gz.json,sha256=k8So4mBtC7YWp6-PSeCKNvp3v0MNPNfdPWRQWoASNvA,1683
|
|
@@ -50,6 +50,7 @@ cidc_schemas/schemas/artifacts/artifact_npx.json,sha256=I0o8C9ilOrbLBmLpTOQ1ARFy
|
|
|
50
50
|
cidc_schemas/schemas/artifacts/artifact_pdf.json,sha256=t-RR4gftGD-wjB7t40lb1TbnKLosPQCDyP-SL1V5dWc,1674
|
|
51
51
|
cidc_schemas/schemas/artifacts/artifact_png.json,sha256=cGzHZQg3qbungIkxvLh6TY8iqKjtutBU2XmBnRyiijQ,1653
|
|
52
52
|
cidc_schemas/schemas/artifacts/artifact_rcc.json,sha256=IyqqsxPdFZjRoFuBpnkBKBLbc-SoWvrQoqFWeNLU_as,1704
|
|
53
|
+
cidc_schemas/schemas/artifacts/artifact_rdata.json,sha256=rnaukVGTKrqJAW9aLEyITTTOZnMB3mbZ1T76BbhokpA,1661
|
|
53
54
|
cidc_schemas/schemas/artifacts/artifact_tbi.json,sha256=FXZyiAeU6ot-gR-ML8iDi7zcFa0UwkO8Ym-ip4yAEm4,1661
|
|
54
55
|
cidc_schemas/schemas/artifacts/artifact_text.json,sha256=8srLHRfM3g9EyxgNgdANZy8C13xcnkby8amM01dDFhc,1657
|
|
55
56
|
cidc_schemas/schemas/artifacts/artifact_tsv.json,sha256=ITRJhHOWTeSmutQOrFZ4hzyWQ7XWUev7rT-LMhfUp6E,1663
|
|
@@ -59,12 +60,13 @@ cidc_schemas/schemas/artifacts/artifact_xlsx.json,sha256=PmQ3NY_8ywS3iFa4vvLzcXb
|
|
|
59
60
|
cidc_schemas/schemas/artifacts/artifact_yaml.json,sha256=Eey5T68k4jXqiFXfgWTVi3ZoiY5EZxc75rWCEvaZscE,1657
|
|
60
61
|
cidc_schemas/schemas/artifacts/artifact_zip.json,sha256=L9TyKfKm2j0jUo7ED7Lb43Z6VRHP7hEirC349viEBhQ,1653
|
|
61
62
|
cidc_schemas/schemas/assays/atacseq_assay.json,sha256=5ezVeJmrwOWuXLtf9-gH8iYKhLCys9Ii2VamezNI_hM,2547
|
|
62
|
-
cidc_schemas/schemas/assays/
|
|
63
|
+
cidc_schemas/schemas/assays/ctdna_analysis.json,sha256=8HTya0iwtxle0myQ4Dj6VaTII0RuqqiR14SUrmPKPAM,1513
|
|
64
|
+
cidc_schemas/schemas/assays/ctdna_assay.json,sha256=1AwUYiE93XEVDg_FPFyV2OgaD7Ry7pWoD4AH2DAXasA,3503
|
|
63
65
|
cidc_schemas/schemas/assays/cytof_assay.json,sha256=rf0vebcoHY_dS4wlqkoBY9rclSAE3CRdxeGLXAbhScM,3659
|
|
64
66
|
cidc_schemas/schemas/assays/cytof_assay_core.json,sha256=Vwg3RmEEdCpZtDDaVAWBDCKTMnSxagsdqSJq4AiDu9w,8828
|
|
65
67
|
cidc_schemas/schemas/assays/elisa_assay.json,sha256=YHeoxYmgdpefLWkBXNg60JUig2Ccqg8thWZ5M5q3hyw,2233
|
|
66
68
|
cidc_schemas/schemas/assays/hande_assay.json,sha256=NhLyBiBOgeZ9woeGO4EEIod-y_Wzz6WamsP3ZNzxtS0,3192
|
|
67
|
-
cidc_schemas/schemas/assays/ihc_assay.json,sha256=
|
|
69
|
+
cidc_schemas/schemas/assays/ihc_assay.json,sha256=g1WuTUrN6M3mmQL7TCURsKL442An8jlmXaxddg2Ayak,6738
|
|
68
70
|
cidc_schemas/schemas/assays/mibi_assay.json,sha256=gxUdCKzsNpL5FB8muT8Gq-3cqbOTGiOax-kFjI4myCA,4187
|
|
69
71
|
cidc_schemas/schemas/assays/microbiome_assay.json,sha256=4eSEKRylf86yLV7QKCIlMzzjj_XHKMfQpA0njLHBs00,2078
|
|
70
72
|
cidc_schemas/schemas/assays/mif_assay.json,sha256=IG-s80kl8PUUi4U6FGmJbziG0nJf5Or_WTzfb5d46uQ,2599
|
|
@@ -82,7 +84,7 @@ cidc_schemas/schemas/assays/wes_tumor_only_analysis.json,sha256=dU3oaeBbPnEv2Xjy
|
|
|
82
84
|
cidc_schemas/schemas/assays/components/antibody.json,sha256=vfLxXkXIcaJ1BXeUjCaJehrRCdVrBW3gxibwrD7zzd4,960
|
|
83
85
|
cidc_schemas/schemas/assays/components/assay_core.json,sha256=QGuLiArVb7lEF2t1Ml4Qt7g4SXY58WuGBPFVgvOLI5w,485
|
|
84
86
|
cidc_schemas/schemas/assays/components/available_assays.json,sha256=RiyOd6-awMmELxYj-UbAo5dQxQv_rEMI3TuYAk4TCiU,3540
|
|
85
|
-
cidc_schemas/schemas/assays/components/available_ngs_analyses.json,sha256
|
|
87
|
+
cidc_schemas/schemas/assays/components/available_ngs_analyses.json,sha256=-827aY2HoYDWc_zjqEBFCqPH6DFgSqFRberrn7E96zc,1237
|
|
86
88
|
cidc_schemas/schemas/assays/components/composite_image.json,sha256=k9EaBG3y9j-lvg3nQNZbfVpo9fK_gUz1-9iTwjlTDfE,733
|
|
87
89
|
cidc_schemas/schemas/assays/components/controls.json,sha256=_Wxz7W2msTGJ2Ei4XZg0Qy1t8A5_rLSHNvdPurC073E,458
|
|
88
90
|
cidc_schemas/schemas/assays/components/enrichment_core.json,sha256=zC5G7q-QyNrdynCOoPCCSfOuSKq8TiDH-Pl6gITNfVQ,813
|
|
@@ -115,6 +117,7 @@ cidc_schemas/schemas/assays/components/ngs/rna/salmon.json,sha256=GRJaC4MhupuRrE
|
|
|
115
117
|
cidc_schemas/schemas/assays/components/ngs/rna/star.json,sha256=XoL1Ro8YDr-ZQQOmYZC8NnREDW-7qzR6IzJi3tLQ2ks,772
|
|
116
118
|
cidc_schemas/schemas/assays/components/ngs/rna/trust4.json,sha256=o-fxkTL-1Tho1kPkJ6CcMUp5kE5mnkZU8cdSCzHR5cQ,382
|
|
117
119
|
cidc_schemas/schemas/templates/analyses/atacseq_analysis_template.json,sha256=7vBdwVD6HEd9Pj8AkEoa34fQjIynztsNaKvfn2KoFFc,5403
|
|
120
|
+
cidc_schemas/schemas/templates/analyses/ctdna_analysis_template.json,sha256=WSuNoR4cFoYOH3_VHD0FY0m8TD578Yl6MSESQPMDMQo,7408
|
|
118
121
|
cidc_schemas/schemas/templates/analyses/cytof_analysis_template.json,sha256=d6qOGbYXXx1c8rb-saM4D_tMuK8n4ydbyW9_xaW6xhk,6381
|
|
119
122
|
cidc_schemas/schemas/templates/analyses/rna_level1_analysis_template.json,sha256=vMHXSQNZz8sFxwiBUnRXb5o08GxgbKZjMu8ZPjNn4TI,15944
|
|
120
123
|
cidc_schemas/schemas/templates/analyses/tcr_analysis_template.json,sha256=ai5KUp6q5GGTxDybOHBaseOnvQCVqIRh4SurETz5Vx0,3054
|
|
@@ -122,7 +125,7 @@ cidc_schemas/schemas/templates/analyses/wes_analysis_template.json,sha256=V5RRZ3
|
|
|
122
125
|
cidc_schemas/schemas/templates/analyses/wes_tumor_only_analysis_template.json,sha256=oHQ89pnzqGWE2sfb5sYGYhyknyd0pr0dTEGTYn2y_tQ,16240
|
|
123
126
|
cidc_schemas/schemas/templates/assays/atacseq_fastq_template.json,sha256=7WygawkxnhFu5xBAuIhSOBD8TwCqDgINjC-HIYeCf4Q,3928
|
|
124
127
|
cidc_schemas/schemas/templates/assays/clinical_data_template.json,sha256=1luQXzyqbAKKiNVwVQFeZ4dwzVpnTeGAropzd_mYmx4,2193
|
|
125
|
-
cidc_schemas/schemas/templates/assays/ctdna_template.json,sha256=
|
|
128
|
+
cidc_schemas/schemas/templates/assays/ctdna_template.json,sha256=SNG2TwpAaP2TX1kXf_k2quXhVn3Z2-4rmR3eLaCVF4Q,5966
|
|
126
129
|
cidc_schemas/schemas/templates/assays/cytof_template.json,sha256=YGaLt7DKsz32o3na8NDs-bXteVnAPMiF1hLH643f6kY,13328
|
|
127
130
|
cidc_schemas/schemas/templates/assays/elisa_template.json,sha256=Q8cv5ZpaRZUfvr6e4PC4uvMqhhaDGLdvVMN_s8Uiajw,2259
|
|
128
131
|
cidc_schemas/schemas/templates/assays/hande_template.json,sha256=BNMQO4JpBrjuD8ITH1x7cJfkqI4bgKZilvN9yqavaqs,4293
|
|
@@ -149,9 +152,9 @@ cidc_schemas/schemas/templates/manifests/tissue_slide_template.json,sha256=sFPyt
|
|
|
149
152
|
cidc_schemas/schemas/templates/manifests/tumor_normal_pairing_template.json,sha256=lVJrGb28n-vyfjGBzhrzjn1lMKw1b4HXXmWtwA603v0,2797
|
|
150
153
|
cidc_schemas/schemas/templates/manifests/tumor_tissue_dna_template.json,sha256=D4ICMeHQgKXFDwaMOqrcLcUEF-dYGalagGYDUFAploU,13276
|
|
151
154
|
cidc_schemas/schemas/templates/manifests/tumor_tissue_rna_template.json,sha256=MpJTjoaTdIlNBAIIxSfmItVevA5BXnajqu_jaEXxBmo,12568
|
|
152
|
-
nci_cidc_schemas-0.26.
|
|
153
|
-
nci_cidc_schemas-0.26.
|
|
154
|
-
nci_cidc_schemas-0.26.
|
|
155
|
-
nci_cidc_schemas-0.26.
|
|
156
|
-
nci_cidc_schemas-0.26.
|
|
157
|
-
nci_cidc_schemas-0.26.
|
|
155
|
+
nci_cidc_schemas-0.26.32.dist-info/LICENSE,sha256=zK77-w4rYCZBHAYJEGkcFuPXwKIsP7jMPZ2iQOXjzko,1072
|
|
156
|
+
nci_cidc_schemas-0.26.32.dist-info/METADATA,sha256=s6yMbeWZHVyJJer-07tW7vf3rXp4JPKiOU5vk51bLXo,4436
|
|
157
|
+
nci_cidc_schemas-0.26.32.dist-info/WHEEL,sha256=DZajD4pwLWue70CAfc7YaxT1wLUciNBvN_TTcvXpltE,110
|
|
158
|
+
nci_cidc_schemas-0.26.32.dist-info/entry_points.txt,sha256=kSyTzXeJQrJp_2ZX0GS_NnbJR8ceQKLBSgER46PM0hs,55
|
|
159
|
+
nci_cidc_schemas-0.26.32.dist-info/top_level.txt,sha256=Wwb5Cu7QrnbmSJxI2d00e3-Mir36t0jTRnSulmfhi30,13
|
|
160
|
+
nci_cidc_schemas-0.26.32.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|