nci-cidc-schemas 0.26.34__py2.py3-none-any.whl → 0.26.35__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 +0 -2
- cidc_schemas/schemas/artifacts/artifact_core.json +1 -0
- cidc_schemas/schemas/artifacts/artifact_ome_tiff.json +51 -0
- cidc_schemas/schemas/assays/components/available_ngs_analyses.json +0 -3
- cidc_schemas/schemas/assays/components/mibi_imaging/mibi_files.json +55 -0
- cidc_schemas/schemas/assays/components/mibi_imaging/mibi_input.json +56 -0
- cidc_schemas/schemas/assays/mibi_assay.json +8 -55
- cidc_schemas/schemas/shipping_core.json +2 -1
- cidc_schemas/schemas/templates/assays/mibi_template.json +48 -61
- cidc_schemas/template.py +0 -1
- {nci_cidc_schemas-0.26.34.dist-info → nci_cidc_schemas-0.26.35.dist-info}/METADATA +1 -1
- {nci_cidc_schemas-0.26.34.dist-info → nci_cidc_schemas-0.26.35.dist-info}/RECORD +17 -16
- {nci_cidc_schemas-0.26.34.dist-info → nci_cidc_schemas-0.26.35.dist-info}/WHEEL +1 -1
- cidc_schemas/schemas/assays/ctdna_analysis.json +0 -52
- cidc_schemas/schemas/templates/analyses/ctdna_analysis_template.json +0 -121
- {nci_cidc_schemas-0.26.34.dist-info → nci_cidc_schemas-0.26.35.dist-info}/LICENSE +0 -0
- {nci_cidc_schemas-0.26.34.dist-info → nci_cidc_schemas-0.26.35.dist-info}/entry_points.txt +0 -0
- {nci_cidc_schemas-0.26.34.dist-info → nci_cidc_schemas-0.26.35.dist-info}/top_level.txt +0 -0
cidc_schemas/__init__.py
CHANGED
cidc_schemas/prism/constants.py
CHANGED
|
@@ -51,7 +51,6 @@ SUPPORTED_ANALYSES = [
|
|
|
51
51
|
"tcr_analysis",
|
|
52
52
|
"wes_analysis",
|
|
53
53
|
"wes_tumor_only_analysis",
|
|
54
|
-
"ctdna_analysis",
|
|
55
54
|
]
|
|
56
55
|
|
|
57
56
|
SUPPORTED_TEMPLATES = SUPPORTED_ASSAYS + SUPPORTED_MANIFESTS + SUPPORTED_ANALYSES
|
|
@@ -63,7 +62,6 @@ ASSAY_TO_FILEPATH: Dict[str, str] = {
|
|
|
63
62
|
"rna_level1_analysis": "rna/",
|
|
64
63
|
"wes_analysis": "wes/",
|
|
65
64
|
"wes_tumor_only_analysis": "wes_tumor_only/",
|
|
66
|
-
"ctdna_analysis": "ctdna/",
|
|
67
65
|
# assay specifics removed
|
|
68
66
|
"atacseq_fastq": "atacseq/",
|
|
69
67
|
"rna_bam": "rna/",
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "metaschema/strict_meta_schema.json#",
|
|
3
|
+
"$id": "ome_tiff_artifact",
|
|
4
|
+
"title": "Ome Tiff Artifact",
|
|
5
|
+
"type": "object",
|
|
6
|
+
"description": "Information about a ome tiff file.",
|
|
7
|
+
"additionalProperties": false,
|
|
8
|
+
"properties": {
|
|
9
|
+
"data_format": {
|
|
10
|
+
"description": "Data format.",
|
|
11
|
+
"const": "OME.TIFF"
|
|
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,55 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "metaschema/strict_meta_schema.json#",
|
|
3
|
+
"$id": "mibi_files",
|
|
4
|
+
"description": "A region of interest (ROI) is a portion of an image which has been analyzed using image processing software.",
|
|
5
|
+
"type": "object",
|
|
6
|
+
"properties": {
|
|
7
|
+
"roi_id": {
|
|
8
|
+
"description": "Identifier of a region of interest within one mibi slide, e.g. 1, 2, 3 or [123 x 321]",
|
|
9
|
+
"type": "string"
|
|
10
|
+
},
|
|
11
|
+
"dataset": {
|
|
12
|
+
"description": "Dataset the record belongs to",
|
|
13
|
+
"type": "string"
|
|
14
|
+
},
|
|
15
|
+
"mibi_ome_tiff_file_name": {
|
|
16
|
+
"type": "string",
|
|
17
|
+
"description": "A (short) name of the file. Do not include the .ome.tiff extension"
|
|
18
|
+
},
|
|
19
|
+
"mibi_ome_tiff_file": {
|
|
20
|
+
"description": "Image for MIBI in OME TIFF format",
|
|
21
|
+
"$ref": "artifacts/artifact_ome_tiff.json"
|
|
22
|
+
},
|
|
23
|
+
"roi_description": {
|
|
24
|
+
"description": "A text description of this ROI",
|
|
25
|
+
"type": "string"
|
|
26
|
+
},
|
|
27
|
+
"he_file": {
|
|
28
|
+
"inheritableBase": true,
|
|
29
|
+
"mergeStrategy": "objectMerge",
|
|
30
|
+
"anyOf": [
|
|
31
|
+
{
|
|
32
|
+
"$comment": "Path to the H & E image in SVS format.",
|
|
33
|
+
"$ref": "artifacts/artifact_image.json"
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
"$comment": "Path to the H & E image in JPG format.",
|
|
37
|
+
"$ref": "artifacts/artifact_jpg.json"
|
|
38
|
+
}
|
|
39
|
+
]
|
|
40
|
+
},
|
|
41
|
+
"comment": {
|
|
42
|
+
"description": "A text comment regarding this slide.",
|
|
43
|
+
"type": "string"
|
|
44
|
+
}
|
|
45
|
+
},
|
|
46
|
+
"inheritableBase": true,
|
|
47
|
+
"required": [
|
|
48
|
+
"roi_id",
|
|
49
|
+
"dataset",
|
|
50
|
+
"mibi_ome_tiff_file_name",
|
|
51
|
+
"mibi_ome_tiff_file",
|
|
52
|
+
"roi_description",
|
|
53
|
+
"he_file"
|
|
54
|
+
]
|
|
55
|
+
}
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "metaschema/strict_meta_schema.json#",
|
|
3
|
+
"$id": "mibi_input",
|
|
4
|
+
"title": "MIBI Input Files",
|
|
5
|
+
"type": "object",
|
|
6
|
+
"description": "MIBI assay input files.",
|
|
7
|
+
"inheritableBase": true,
|
|
8
|
+
"properties": {
|
|
9
|
+
"roi_id": {
|
|
10
|
+
"description": "Identifier of a region of interest within one mibi slide, e.g. 1, 2, 3 or [123 x 321]",
|
|
11
|
+
"type": "string"
|
|
12
|
+
},
|
|
13
|
+
"dataset": {
|
|
14
|
+
"description": "Dataset the record belongs to",
|
|
15
|
+
"type": "string"
|
|
16
|
+
},
|
|
17
|
+
"mibi_ome_tiff_file_name": {
|
|
18
|
+
"type": "string",
|
|
19
|
+
"description": "A (short) name of the file. Do not include the .ome.tiff extension"
|
|
20
|
+
},
|
|
21
|
+
"mibi_ome_tiff_file": {
|
|
22
|
+
"description": "Image for MIBI in OME TIFF format",
|
|
23
|
+
"$ref": "artifacts/artifact_ome_tiff.json"
|
|
24
|
+
},
|
|
25
|
+
"roi_description": {
|
|
26
|
+
"description": "A text description of this ROI",
|
|
27
|
+
"type": "string"
|
|
28
|
+
},
|
|
29
|
+
"he_file": {
|
|
30
|
+
"inheritableBase": true,
|
|
31
|
+
"mergeStrategy": "objectMerge",
|
|
32
|
+
"anyOf": [
|
|
33
|
+
{
|
|
34
|
+
"$comment": "Path to the H & E image in SVS format.",
|
|
35
|
+
"$ref": "artifacts/artifact_image.json"
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"$comment": "Path to the H & E image in JPG format.",
|
|
39
|
+
"$ref": "artifacts/artifact_jpg.json"
|
|
40
|
+
}
|
|
41
|
+
]
|
|
42
|
+
},
|
|
43
|
+
"comment": {
|
|
44
|
+
"description": "A text comment regarding this slide.",
|
|
45
|
+
"type": "string"
|
|
46
|
+
}
|
|
47
|
+
},
|
|
48
|
+
"required": [
|
|
49
|
+
"roi_id",
|
|
50
|
+
"dataset",
|
|
51
|
+
"mibi_ome_tiff_file_name",
|
|
52
|
+
"mibi_ome_tiff_file",
|
|
53
|
+
"roi_description",
|
|
54
|
+
"he_file"
|
|
55
|
+
]
|
|
56
|
+
}
|
|
@@ -6,10 +6,10 @@
|
|
|
6
6
|
"$comment": "description used in docs/index.html and docs/assays.mibi.html",
|
|
7
7
|
"description": "Multiplexed Ion Beam Imaging (MIBI) assay",
|
|
8
8
|
"additionalProperties": false,
|
|
9
|
-
"mergeStrategy": "objectMerge",
|
|
10
9
|
"definitions": {
|
|
11
10
|
"record": {
|
|
12
11
|
"type": "object",
|
|
12
|
+
"mergeStrategy": "objectMerge",
|
|
13
13
|
"description": "A single data record from a MIBI assay.",
|
|
14
14
|
"additionalProperties": false,
|
|
15
15
|
"properties": {
|
|
@@ -17,58 +17,13 @@
|
|
|
17
17
|
"description": "Id of an sample within this clinical trial, that this assay record is based upon.",
|
|
18
18
|
"$ref": "sample.json#properties/cimac_id"
|
|
19
19
|
},
|
|
20
|
-
"
|
|
21
|
-
"
|
|
22
|
-
"items": {
|
|
23
|
-
"$ref": "assays/mibi_assay.json#definitions/region_of_interest"
|
|
24
|
-
},
|
|
25
|
-
"mergeStrategy": "arrayMergeById",
|
|
26
|
-
"mergeOptions": {
|
|
27
|
-
"idRef": "roi_id"
|
|
28
|
-
}
|
|
20
|
+
"files": {
|
|
21
|
+
"$ref": "assays/components/mibi_imaging/mibi_input.json"
|
|
29
22
|
}
|
|
30
23
|
},
|
|
31
24
|
"required": [
|
|
32
25
|
"cimac_id",
|
|
33
|
-
"
|
|
34
|
-
]
|
|
35
|
-
},
|
|
36
|
-
"region_of_interest": {
|
|
37
|
-
"type": "object",
|
|
38
|
-
"description": "A region of interest (ROI) is a portion of an image which has been analyzed using image processing software.",
|
|
39
|
-
"additionalProperties": false,
|
|
40
|
-
"properties": {
|
|
41
|
-
"roi_id": {
|
|
42
|
-
"description": "Identifier of a region of interest within one mIF slide, e.g. 1, 2, 3 or [123x321]",
|
|
43
|
-
"type": "string"
|
|
44
|
-
},
|
|
45
|
-
"multichannel_image": {
|
|
46
|
-
"description": "Analysis-ready multichannel image in OME TIFF format",
|
|
47
|
-
"$ref": "artifacts/artifact_image.json"
|
|
48
|
-
},
|
|
49
|
-
"cluster_labels": {
|
|
50
|
-
"description": "Cluster-labelled image in TIFF format",
|
|
51
|
-
"$ref": "artifacts/artifact_image.json"
|
|
52
|
-
},
|
|
53
|
-
"channel_names": {
|
|
54
|
-
"description": "Channel names table in CSV format",
|
|
55
|
-
"$ref": "artifacts/artifact_csv.json"
|
|
56
|
-
},
|
|
57
|
-
"single_cell_table": {
|
|
58
|
-
"description": "Single cell data table in CSV format",
|
|
59
|
-
"$ref": "artifacts/artifact_csv.json"
|
|
60
|
-
},
|
|
61
|
-
"roi_description": {
|
|
62
|
-
"description": "A text description of this ROI. Eg: decidua",
|
|
63
|
-
"type": "string"
|
|
64
|
-
},
|
|
65
|
-
"comment": {
|
|
66
|
-
"description": "A text comment regarding this slide.",
|
|
67
|
-
"type": "string"
|
|
68
|
-
}
|
|
69
|
-
},
|
|
70
|
-
"required": [
|
|
71
|
-
"roi_id"
|
|
26
|
+
"files"
|
|
72
27
|
]
|
|
73
28
|
}
|
|
74
29
|
},
|
|
@@ -101,15 +56,13 @@
|
|
|
101
56
|
"items": {
|
|
102
57
|
"$ref": "assays/mibi_assay.json#definitions/record"
|
|
103
58
|
},
|
|
104
|
-
"mergeStrategy": "
|
|
105
|
-
"mergeOptions": {
|
|
106
|
-
"idRef": "cimac_id"
|
|
107
|
-
}
|
|
59
|
+
"mergeStrategy": "append"
|
|
108
60
|
}
|
|
109
61
|
},
|
|
110
62
|
"required": [
|
|
111
63
|
"batch_id",
|
|
112
64
|
"records",
|
|
113
|
-
"assay_creator"
|
|
65
|
+
"assay_creator",
|
|
66
|
+
"antibodies"
|
|
114
67
|
]
|
|
115
|
-
}
|
|
68
|
+
}
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
"properties": {
|
|
7
7
|
"worksheets": {
|
|
8
8
|
"MIBI": {
|
|
9
|
-
"prism_data_object_pointer": "/records
|
|
9
|
+
"prism_data_object_pointer": "/records/-",
|
|
10
10
|
"preamble_rows": {
|
|
11
11
|
"protocol identifier": {
|
|
12
12
|
"merge_pointer": "3/protocol_identifier",
|
|
@@ -20,82 +20,59 @@
|
|
|
20
20
|
"merge_pointer": "0/assay_creator",
|
|
21
21
|
"type_ref": "assays/components/assay_core.json#properties/assay_creator"
|
|
22
22
|
},
|
|
23
|
-
"folder": {
|
|
24
|
-
"do_not_merge": true,
|
|
25
|
-
"type": "string",
|
|
26
|
-
"allow_empty": true
|
|
27
|
-
},
|
|
28
23
|
"metadata tsv": {
|
|
24
|
+
"merge_pointer": "0/metadata_tsv",
|
|
25
|
+
"gcs_uri_format": "{protocol identifier}/mibi/{batch id}/metadata.tsv",
|
|
26
|
+
"is_artifact": 1,
|
|
29
27
|
"type_ref": "assays/components/local_file.json#properties/file_path",
|
|
30
|
-
"
|
|
31
|
-
"allow_empty": true,
|
|
32
|
-
"process_as": [
|
|
33
|
-
{
|
|
34
|
-
"parse_through": "lambda metadata_tsv: f'{folder or \"\"}{metadata_tsv}'",
|
|
35
|
-
"gcs_uri_format": "{protocol identifier}/mibi/{batch id}/metadata.tsv",
|
|
36
|
-
"type_ref": "assays/components/local_file.json#properties/file_path",
|
|
37
|
-
"merge_pointer": "0/metadata_tsv",
|
|
38
|
-
"is_artifact": 1
|
|
39
|
-
}
|
|
40
|
-
]
|
|
28
|
+
"allow_empty": true
|
|
41
29
|
}
|
|
42
30
|
},
|
|
43
31
|
"data_columns": {
|
|
44
32
|
"Samples": {
|
|
45
|
-
"
|
|
46
|
-
"merge_pointer": "
|
|
33
|
+
"cimac id": {
|
|
34
|
+
"merge_pointer": "0/cimac_id",
|
|
47
35
|
"type_ref": "sample.json#properties/cimac_id"
|
|
48
36
|
},
|
|
49
|
-
"
|
|
50
|
-
"merge_pointer": "0/roi_id",
|
|
51
|
-
"type_ref": "assays/
|
|
37
|
+
"roi id": {
|
|
38
|
+
"merge_pointer": "0/files/roi_id",
|
|
39
|
+
"type_ref": "assays/components/mibi_imaging/mibi_files.json#properties/roi_id"
|
|
52
40
|
},
|
|
53
41
|
"Dataset": {
|
|
42
|
+
"merge_pointer": "0/files/dataset",
|
|
43
|
+
"type_ref": "assays/components/mibi_imaging/mibi_files.json#properties/dataset",
|
|
44
|
+
"allow_empty": true
|
|
45
|
+
},
|
|
46
|
+
"HE file type": {
|
|
54
47
|
"do_not_merge": true,
|
|
55
48
|
"type": "string",
|
|
56
|
-
"
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
"allow_empty": true
|
|
64
|
-
},
|
|
65
|
-
{
|
|
66
|
-
"parse_through": "lambda dataset: f'{folder or \"\"}{dataset}/Mapping/cluster_labels_image.tif'",
|
|
67
|
-
"merge_pointer": "/cluster_labels",
|
|
68
|
-
"gcs_uri_format": "{protocol identifier}/mibi/{batch id}/{cimac id}/{roi id}/cluster_labels.tif",
|
|
69
|
-
"type_ref": "assays/components/local_file.json#properties/file_path",
|
|
70
|
-
"is_artifact": 1,
|
|
71
|
-
"allow_empty": true
|
|
72
|
-
},
|
|
73
|
-
{
|
|
74
|
-
"parse_through": "lambda dataset: f'{folder or \"\"}{dataset}/mcd/channelnames_report.csv'",
|
|
75
|
-
"merge_pointer": "/channel_names",
|
|
76
|
-
"gcs_uri_format": "{protocol identifier}/mibi/{batch id}/{cimac id}/{roi id}/channel_names.csv",
|
|
77
|
-
"type_ref": "assays/components/local_file.json#properties/file_path",
|
|
78
|
-
"is_artifact": 1,
|
|
79
|
-
"allow_empty": true
|
|
80
|
-
},
|
|
81
|
-
{
|
|
82
|
-
"parse_through": "lambda dataset: f'{folder or \"\"}{dataset}/SingleCellData/cells.csv'",
|
|
83
|
-
"merge_pointer": "/single_cell_table",
|
|
84
|
-
"gcs_uri_format": "{protocol identifier}/mibi/{batch id}/{cimac id}/{roi id}/single_cell_table.csv",
|
|
85
|
-
"type_ref": "assays/components/local_file.json#properties/file_path",
|
|
86
|
-
"is_artifact": 1,
|
|
87
|
-
"allow_empty": true
|
|
88
|
-
}
|
|
89
|
-
]
|
|
49
|
+
"enum": ["svs", "jpg"]
|
|
50
|
+
},
|
|
51
|
+
"HE file name": {
|
|
52
|
+
"merge_pointer": "0/files/he_file",
|
|
53
|
+
"is_artifact": 1,
|
|
54
|
+
"gcs_uri_format": "{protocol identifier}/mibi/{batch id}/{cimac id}/{roi id}/he_file.{he file type}",
|
|
55
|
+
"type_ref": "assays/components/local_file.json#properties/file_path"
|
|
90
56
|
},
|
|
91
57
|
"Roi description": {
|
|
92
|
-
"merge_pointer": "0/roi_description",
|
|
93
|
-
"type_ref": "assays/
|
|
58
|
+
"merge_pointer": "0/files/roi_description",
|
|
59
|
+
"type_ref": "assays/components/mibi_imaging/mibi_files.json#properties/roi_description",
|
|
94
60
|
"allow_empty": true
|
|
95
61
|
},
|
|
62
|
+
"MIBI OME Tiff File": {
|
|
63
|
+
"merge_pointer": "0/files/mibi_ome_tiff_file",
|
|
64
|
+
"type_ref": "assays/components/local_file.json#properties/file_path",
|
|
65
|
+
"is_artifact": 1,
|
|
66
|
+
"gcs_uri_format": "{protocol identifier}/mibi/{batch id}/{cimac id}/{roi id}/{mibi ome tiff file name}.ome.tiff"
|
|
67
|
+
},
|
|
68
|
+
"MIBI OME Tiff File Name": {
|
|
69
|
+
"merge_pointer": "0/files/mibi_ome_tiff_file_name",
|
|
70
|
+
"type_ref": "assays/components/mibi_imaging/mibi_files.json#properties/mibi_ome_tiff_file_name"
|
|
71
|
+
},
|
|
72
|
+
|
|
96
73
|
"Comment": {
|
|
97
|
-
"merge_pointer": "0/comment",
|
|
98
|
-
"type_ref": "assays/
|
|
74
|
+
"merge_pointer": "0/files/comment",
|
|
75
|
+
"type_ref": "assays/components/mibi_imaging/mibi_files.json#properties/comment",
|
|
99
76
|
"allow_empty": true
|
|
100
77
|
}
|
|
101
78
|
}
|
|
@@ -115,6 +92,16 @@
|
|
|
115
92
|
"merge_pointer": "0/antibody",
|
|
116
93
|
"type_ref": "assays/components/antibody.json#properties/antibody"
|
|
117
94
|
},
|
|
95
|
+
"Clone": {
|
|
96
|
+
"merge_pointer": "0/clone",
|
|
97
|
+
"type_ref": "assays/components/antibody.json#properties/clone",
|
|
98
|
+
"allow_empty": true
|
|
99
|
+
},
|
|
100
|
+
"Company": {
|
|
101
|
+
"merge_pointer": "0/company",
|
|
102
|
+
"type_ref": "assays/components/antibody.json#properties/clone",
|
|
103
|
+
"allow_empty": true
|
|
104
|
+
},
|
|
118
105
|
"Scicrunch rrid": {
|
|
119
106
|
"merge_pointer": "0/scicrunch_rrid",
|
|
120
107
|
"type_ref": "assays/components/mibi_antibody.json#properties/scicrunch_rrid",
|
|
@@ -160,4 +147,4 @@
|
|
|
160
147
|
}
|
|
161
148
|
}
|
|
162
149
|
}
|
|
163
|
-
}
|
|
150
|
+
}
|
cidc_schemas/template.py
CHANGED
|
@@ -232,7 +232,6 @@ 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",
|
|
236
235
|
}[name]
|
|
237
236
|
|
|
238
237
|
# static
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
cidc_schemas/__init__.py,sha256=
|
|
1
|
+
cidc_schemas/__init__.py,sha256=ADFA3YhRSz91I9C5rj115esQzZvq9FJA6KKjjerNOFo,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=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=gM6Xp1fOZaF8wOLzY5HGdxi4p8cEYhYXRpqRPncYua0,49865
|
|
7
7
|
cidc_schemas/template_reader.py,sha256=xXtLRKu1y4FrPj8RgyGOmB2hlsCDXcuvMBWami2_jV8,13119
|
|
8
8
|
cidc_schemas/template_writer.py,sha256=faOhvSDTp4nuPhOtVQR_J7YNnFzx-vh7oyNpFdee1mY,18236
|
|
9
9
|
cidc_schemas/unprism.py,sha256=5EeqNKedVEf15CJiMQ-ImXd1wIbNnzihv21rAMClZyc,13325
|
|
@@ -11,7 +11,7 @@ cidc_schemas/util.py,sha256=ZCQ--ROZyXYVB034fHHmxZXb5F0G2GwzPwSfyfegtGk,4348
|
|
|
11
11
|
cidc_schemas/metaschema/strict_meta_schema.json,sha256=3FiS0r2dAXgfPsruJwZYbQoQnHhC_yl-3mclX8gfiQU,6428
|
|
12
12
|
cidc_schemas/pipeline_configs/rna_level1_analysis_config.yaml.j2,sha256=6no9sFqwzb1T61RZGD-owDt2K5R8G_fPTzflV4fOroo,2832
|
|
13
13
|
cidc_schemas/prism/__init__.py,sha256=J5Tj0X7Di6cyxAjaduOUp2aVyvl8UI67bgxEkgttvcU,530
|
|
14
|
-
cidc_schemas/prism/constants.py,sha256=
|
|
14
|
+
cidc_schemas/prism/constants.py,sha256=b5pgxrzwJvKWWIEE9V72cvKwl_ARRaANPHzKk4yo4M4,2325
|
|
15
15
|
cidc_schemas/prism/core.py,sha256=PQgsRAEleT6gO3VyE4uFTYa3qK_VXjFcErV1YwWV1nQ,19294
|
|
16
16
|
cidc_schemas/prism/extra_metadata.py,sha256=wZjhUGKSvfupr6qZ1WuPepKnf_FG1nGfsDai_kBFZ50,8559
|
|
17
17
|
cidc_schemas/prism/merger.py,sha256=Kf5o9NWT80XqYZASbH0dJsQ0dkwMl3HtoR_p7wqUypI,12431
|
|
@@ -21,7 +21,7 @@ cidc_schemas/schemas/clinical_data.json,sha256=ubt2dqTLCbDuxuOXrBObT_xLHVSArMBx4
|
|
|
21
21
|
cidc_schemas/schemas/clinical_trial.json,sha256=mqvpCTqWGimKA8-S4F32YMDBoHcJkawpr9iTwUgH56w,4652
|
|
22
22
|
cidc_schemas/schemas/participant.json,sha256=vCtxbUfVGTjvZ8SPPNLvWJkJIBZUK2NSHpYzJgdoSaY,2991
|
|
23
23
|
cidc_schemas/schemas/sample.json,sha256=TRWgxQBybtj4WjLBNZAdpoShpbDTGl8iT3FceGx2gD8,16296
|
|
24
|
-
cidc_schemas/schemas/shipping_core.json,sha256=
|
|
24
|
+
cidc_schemas/schemas/shipping_core.json,sha256=ouekd6KNf4EKVz4IsE2yjibvIjpCE8CZBxCRXlJ7p_U,3315
|
|
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
|
|
@@ -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=dNVhgD7CYaSjANH6EN_rxatqwAKOtOyEravE6N_-9Ds,3160
|
|
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
|
|
@@ -47,6 +47,7 @@ cidc_schemas/schemas/artifacts/artifact_log.json,sha256=TvHQLsxAfnB9WbnHt-otYObK
|
|
|
47
47
|
cidc_schemas/schemas/artifacts/artifact_maf.json,sha256=MyJOs8A0aHrl8i9l5Q1m4ADm8dqcTyJ_YtUJDS48Bjk,1653
|
|
48
48
|
cidc_schemas/schemas/artifacts/artifact_narrowPeak.json,sha256=EOGIAmpo46qZdSzZj3Gi7WKLS81OH1xUTJzeu7_I75c,1681
|
|
49
49
|
cidc_schemas/schemas/artifacts/artifact_npx.json,sha256=I0o8C9ilOrbLBmLpTOQ1ARFyQHyaSd321mPjuJMGUUw,2134
|
|
50
|
+
cidc_schemas/schemas/artifacts/artifact_ome_tiff.json,sha256=wSIQPf2mi00BwikFlz8qL3wmVvtYWhuOxrHLc3ngzS0,1673
|
|
50
51
|
cidc_schemas/schemas/artifacts/artifact_pdf.json,sha256=t-RR4gftGD-wjB7t40lb1TbnKLosPQCDyP-SL1V5dWc,1674
|
|
51
52
|
cidc_schemas/schemas/artifacts/artifact_png.json,sha256=cGzHZQg3qbungIkxvLh6TY8iqKjtutBU2XmBnRyiijQ,1653
|
|
52
53
|
cidc_schemas/schemas/artifacts/artifact_rcc.json,sha256=IyqqsxPdFZjRoFuBpnkBKBLbc-SoWvrQoqFWeNLU_as,1704
|
|
@@ -60,14 +61,13 @@ cidc_schemas/schemas/artifacts/artifact_xlsx.json,sha256=PmQ3NY_8ywS3iFa4vvLzcXb
|
|
|
60
61
|
cidc_schemas/schemas/artifacts/artifact_yaml.json,sha256=Eey5T68k4jXqiFXfgWTVi3ZoiY5EZxc75rWCEvaZscE,1657
|
|
61
62
|
cidc_schemas/schemas/artifacts/artifact_zip.json,sha256=L9TyKfKm2j0jUo7ED7Lb43Z6VRHP7hEirC349viEBhQ,1653
|
|
62
63
|
cidc_schemas/schemas/assays/atacseq_assay.json,sha256=5ezVeJmrwOWuXLtf9-gH8iYKhLCys9Ii2VamezNI_hM,2547
|
|
63
|
-
cidc_schemas/schemas/assays/ctdna_analysis.json,sha256=8HTya0iwtxle0myQ4Dj6VaTII0RuqqiR14SUrmPKPAM,1513
|
|
64
64
|
cidc_schemas/schemas/assays/ctdna_assay.json,sha256=1AwUYiE93XEVDg_FPFyV2OgaD7Ry7pWoD4AH2DAXasA,3503
|
|
65
65
|
cidc_schemas/schemas/assays/cytof_assay.json,sha256=rf0vebcoHY_dS4wlqkoBY9rclSAE3CRdxeGLXAbhScM,3659
|
|
66
66
|
cidc_schemas/schemas/assays/cytof_assay_core.json,sha256=Vwg3RmEEdCpZtDDaVAWBDCKTMnSxagsdqSJq4AiDu9w,8828
|
|
67
67
|
cidc_schemas/schemas/assays/elisa_assay.json,sha256=YHeoxYmgdpefLWkBXNg60JUig2Ccqg8thWZ5M5q3hyw,2233
|
|
68
68
|
cidc_schemas/schemas/assays/hande_assay.json,sha256=NhLyBiBOgeZ9woeGO4EEIod-y_Wzz6WamsP3ZNzxtS0,3192
|
|
69
69
|
cidc_schemas/schemas/assays/ihc_assay.json,sha256=g1WuTUrN6M3mmQL7TCURsKL442An8jlmXaxddg2Ayak,6738
|
|
70
|
-
cidc_schemas/schemas/assays/mibi_assay.json,sha256=
|
|
70
|
+
cidc_schemas/schemas/assays/mibi_assay.json,sha256=0DnK6Tl_DZbzKuLcleaBYMW19OBpI3ociSqqeK0bG04,2164
|
|
71
71
|
cidc_schemas/schemas/assays/microbiome_assay.json,sha256=4eSEKRylf86yLV7QKCIlMzzjj_XHKMfQpA0njLHBs00,2078
|
|
72
72
|
cidc_schemas/schemas/assays/mif_assay.json,sha256=IG-s80kl8PUUi4U6FGmJbziG0nJf5Or_WTzfb5d46uQ,2599
|
|
73
73
|
cidc_schemas/schemas/assays/misc_data.json,sha256=R6q-B8E-fIihlDNbe34gy7_aQeU1eIL9R_Yolg8SotU,2005
|
|
@@ -84,7 +84,7 @@ cidc_schemas/schemas/assays/wes_tumor_only_analysis.json,sha256=dU3oaeBbPnEv2Xjy
|
|
|
84
84
|
cidc_schemas/schemas/assays/components/antibody.json,sha256=vfLxXkXIcaJ1BXeUjCaJehrRCdVrBW3gxibwrD7zzd4,960
|
|
85
85
|
cidc_schemas/schemas/assays/components/assay_core.json,sha256=QGuLiArVb7lEF2t1Ml4Qt7g4SXY58WuGBPFVgvOLI5w,485
|
|
86
86
|
cidc_schemas/schemas/assays/components/available_assays.json,sha256=RiyOd6-awMmELxYj-UbAo5dQxQv_rEMI3TuYAk4TCiU,3540
|
|
87
|
-
cidc_schemas/schemas/assays/components/available_ngs_analyses.json,sha256
|
|
87
|
+
cidc_schemas/schemas/assays/components/available_ngs_analyses.json,sha256=dmC10wI7roGVwbf5T8DxIW1geIjks-Sl-GHJkJXc6eQ,1163
|
|
88
88
|
cidc_schemas/schemas/assays/components/composite_image.json,sha256=k9EaBG3y9j-lvg3nQNZbfVpo9fK_gUz1-9iTwjlTDfE,733
|
|
89
89
|
cidc_schemas/schemas/assays/components/controls.json,sha256=_Wxz7W2msTGJ2Ei4XZg0Qy1t8A5_rLSHNvdPurC073E,458
|
|
90
90
|
cidc_schemas/schemas/assays/components/enrichment_core.json,sha256=zC5G7q-QyNrdynCOoPCCSfOuSKq8TiDH-Pl6gITNfVQ,813
|
|
@@ -104,6 +104,8 @@ cidc_schemas/schemas/assays/components/imaging/mif_entry.json,sha256=0jYCSMD3j5r
|
|
|
104
104
|
cidc_schemas/schemas/assays/components/imaging/mif_export.json,sha256=CVGCpIVcHkTnIQvBibU4HkdYcm2lYzGYu3pXGm4bUa8,1728
|
|
105
105
|
cidc_schemas/schemas/assays/components/imaging/mif_input.json,sha256=Hf1PKkk6pHRLcGGJrVmkhC6SApOA5pD6XJFRscM9ee0,1000
|
|
106
106
|
cidc_schemas/schemas/assays/components/imaging/mif_roi.json,sha256=XL80pl3_5xj40Y4fpE0THDjCDNYojtxDpjtatoFcNAA,1112
|
|
107
|
+
cidc_schemas/schemas/assays/components/mibi_imaging/mibi_files.json,sha256=zylVuDxUKxJ2wXPuTphuT1yY8YYl_vm42a80Xpl3tfc,1580
|
|
108
|
+
cidc_schemas/schemas/assays/components/mibi_imaging/mibi_input.json,sha256=JvigxrK5namtAjUHvBm6QVBZWePVLXWTNaORoUH_aBA,1522
|
|
107
109
|
cidc_schemas/schemas/assays/components/ngs/ngs_assay_record.json,sha256=DwHKyRNDQ6h8PUz0KdBfmcd0Pz1Q1rOeqWpKfUIwjZM,615
|
|
108
110
|
cidc_schemas/schemas/assays/components/ngs/atacseq/atacseq_analysis.json,sha256=kDhS8GHGLF05v4427J6E73J6MiOh0R8Lh6RHrSD5Ak0,2283
|
|
109
111
|
cidc_schemas/schemas/assays/components/ngs/rna/fusion.json,sha256=lgGWX9unADhT4xNDGqQD_VbC6cUo1JMgH9Ii7ZBvofQ,392
|
|
@@ -117,7 +119,6 @@ cidc_schemas/schemas/assays/components/ngs/rna/salmon.json,sha256=GRJaC4MhupuRrE
|
|
|
117
119
|
cidc_schemas/schemas/assays/components/ngs/rna/star.json,sha256=XoL1Ro8YDr-ZQQOmYZC8NnREDW-7qzR6IzJi3tLQ2ks,772
|
|
118
120
|
cidc_schemas/schemas/assays/components/ngs/rna/trust4.json,sha256=o-fxkTL-1Tho1kPkJ6CcMUp5kE5mnkZU8cdSCzHR5cQ,382
|
|
119
121
|
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
|
|
121
122
|
cidc_schemas/schemas/templates/analyses/cytof_analysis_template.json,sha256=d6qOGbYXXx1c8rb-saM4D_tMuK8n4ydbyW9_xaW6xhk,6381
|
|
122
123
|
cidc_schemas/schemas/templates/analyses/rna_level1_analysis_template.json,sha256=vMHXSQNZz8sFxwiBUnRXb5o08GxgbKZjMu8ZPjNn4TI,15944
|
|
123
124
|
cidc_schemas/schemas/templates/analyses/tcr_analysis_template.json,sha256=ai5KUp6q5GGTxDybOHBaseOnvQCVqIRh4SurETz5Vx0,3054
|
|
@@ -130,7 +131,7 @@ cidc_schemas/schemas/templates/assays/cytof_template.json,sha256=YGaLt7DKsz32o3n
|
|
|
130
131
|
cidc_schemas/schemas/templates/assays/elisa_template.json,sha256=Q8cv5ZpaRZUfvr6e4PC4uvMqhhaDGLdvVMN_s8Uiajw,2259
|
|
131
132
|
cidc_schemas/schemas/templates/assays/hande_template.json,sha256=BNMQO4JpBrjuD8ITH1x7cJfkqI4bgKZilvN9yqavaqs,4293
|
|
132
133
|
cidc_schemas/schemas/templates/assays/ihc_template.json,sha256=lOSP6v24FMk-WN7Za4IYQkM94R-1TEvrnllRopEEYa4,7341
|
|
133
|
-
cidc_schemas/schemas/templates/assays/mibi_template.json,sha256=
|
|
134
|
+
cidc_schemas/schemas/templates/assays/mibi_template.json,sha256=T5gAgsmWpUkkO6CI7aFpyD4efSTZsNmbsLLBrHXpNzg,7787
|
|
134
135
|
cidc_schemas/schemas/templates/assays/microbiome_template.json,sha256=2qaTB8W-tG6NhbSJ3KAEIacp1E4g-cFBGMOMc5zTafo,3578
|
|
135
136
|
cidc_schemas/schemas/templates/assays/mif_template.json,sha256=ozyMdziNxtAReTL7guFIwTiJGhEWam9Hsb_fOhIYXIY,19272
|
|
136
137
|
cidc_schemas/schemas/templates/assays/misc_data_template.json,sha256=88GBWq7hrALrYmmgfqStrhocNtPWWYOMeUk9i8_uFRg,1896
|
|
@@ -152,9 +153,9 @@ cidc_schemas/schemas/templates/manifests/tissue_slide_template.json,sha256=sFPyt
|
|
|
152
153
|
cidc_schemas/schemas/templates/manifests/tumor_normal_pairing_template.json,sha256=lVJrGb28n-vyfjGBzhrzjn1lMKw1b4HXXmWtwA603v0,2797
|
|
153
154
|
cidc_schemas/schemas/templates/manifests/tumor_tissue_dna_template.json,sha256=D4ICMeHQgKXFDwaMOqrcLcUEF-dYGalagGYDUFAploU,13276
|
|
154
155
|
cidc_schemas/schemas/templates/manifests/tumor_tissue_rna_template.json,sha256=MpJTjoaTdIlNBAIIxSfmItVevA5BXnajqu_jaEXxBmo,12568
|
|
155
|
-
nci_cidc_schemas-0.26.
|
|
156
|
-
nci_cidc_schemas-0.26.
|
|
157
|
-
nci_cidc_schemas-0.26.
|
|
158
|
-
nci_cidc_schemas-0.26.
|
|
159
|
-
nci_cidc_schemas-0.26.
|
|
160
|
-
nci_cidc_schemas-0.26.
|
|
156
|
+
nci_cidc_schemas-0.26.35.dist-info/LICENSE,sha256=zK77-w4rYCZBHAYJEGkcFuPXwKIsP7jMPZ2iQOXjzko,1072
|
|
157
|
+
nci_cidc_schemas-0.26.35.dist-info/METADATA,sha256=_JLgHeJXExaE0Ojart8M35025nFtBsi3RyrmdUzJaD0,4436
|
|
158
|
+
nci_cidc_schemas-0.26.35.dist-info/WHEEL,sha256=4h2DkfJSb0e6Ob8eR1zE5-yQ9f6nK3Do8SfsDGV3_YQ,109
|
|
159
|
+
nci_cidc_schemas-0.26.35.dist-info/entry_points.txt,sha256=kSyTzXeJQrJp_2ZX0GS_NnbJR8ceQKLBSgER46PM0hs,55
|
|
160
|
+
nci_cidc_schemas-0.26.35.dist-info/top_level.txt,sha256=Wwb5Cu7QrnbmSJxI2d00e3-Mir36t0jTRnSulmfhi30,13
|
|
161
|
+
nci_cidc_schemas-0.26.35.dist-info/RECORD,,
|
|
@@ -1,52 +0,0 @@
|
|
|
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
|
-
}
|
|
@@ -1,121 +0,0 @@
|
|
|
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
|
-
}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|