nci-cidc-schemas 0.26.35__py2.py3-none-any.whl → 0.26.37__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.

Files changed (21) hide show
  1. cidc_schemas/__init__.py +1 -1
  2. cidc_schemas/json_validation.py +1 -1
  3. cidc_schemas/schemas/assays/components/hande_local_file.json +16 -0
  4. cidc_schemas/schemas/assays/ctdna_assay.json +2 -4
  5. cidc_schemas/schemas/templates/assays/ctdna_template.json +4 -2
  6. cidc_schemas/schemas/templates/assays/hande_template.json +6 -4
  7. cidc_schemas/schemas/templates/manifests/h_and_e_template.json +2 -1
  8. cidc_schemas/schemas/templates/manifests/microbiome_dna_template.json +2 -1
  9. cidc_schemas/schemas/templates/manifests/normal_blood_dna_template.json +8 -4
  10. cidc_schemas/schemas/templates/manifests/normal_tissue_dna_template.json +8 -4
  11. cidc_schemas/schemas/templates/manifests/pbmc_template.json +2 -1
  12. cidc_schemas/schemas/templates/manifests/plasma_template.json +2 -1
  13. cidc_schemas/schemas/templates/manifests/tissue_slide_template.json +2 -1
  14. cidc_schemas/schemas/templates/manifests/tumor_tissue_dna_template.json +8 -4
  15. cidc_schemas/schemas/templates/manifests/tumor_tissue_rna_template.json +2 -1
  16. {nci_cidc_schemas-0.26.35.dist-info → nci_cidc_schemas-0.26.37.dist-info}/METADATA +1 -2
  17. {nci_cidc_schemas-0.26.35.dist-info → nci_cidc_schemas-0.26.37.dist-info}/RECORD +21 -20
  18. {nci_cidc_schemas-0.26.35.dist-info → nci_cidc_schemas-0.26.37.dist-info}/WHEEL +1 -1
  19. {nci_cidc_schemas-0.26.35.dist-info → nci_cidc_schemas-0.26.37.dist-info}/LICENSE +0 -0
  20. {nci_cidc_schemas-0.26.35.dist-info → nci_cidc_schemas-0.26.37.dist-info}/entry_points.txt +0 -0
  21. {nci_cidc_schemas-0.26.35.dist-info → nci_cidc_schemas-0.26.37.dist-info}/top_level.txt +0 -0
cidc_schemas/__init__.py CHANGED
@@ -2,4 +2,4 @@
2
2
 
3
3
  __author__ = """NCI"""
4
4
  __email__ = "nci-cidc-tools-admin@mail.nih.gov"
5
- __version__ = "0.26.35"
5
+ __version__ = "0.26.37"
@@ -497,7 +497,7 @@ def convert(fmt: str, value: str) -> str:
497
497
  elif fmt == "date":
498
498
  reformatter = _to_date
499
499
  elif fmt == "string":
500
- reformatter = lambda n: n and str(n)
500
+ reformatter = lambda n: (n or n == 0) and str(n)
501
501
  elif fmt == "integer":
502
502
  reformatter = lambda n: n and int(n)
503
503
  elif fmt == "boolean":
@@ -0,0 +1,16 @@
1
+ {
2
+ "$schema": "metaschema/strict_meta_schema.json#",
3
+ "$id": "local_file",
4
+ "title": "Local file type",
5
+ "type": "object",
6
+ "description": "A type to store local file paths.",
7
+ "additionalProperties": false,
8
+ "properties": {
9
+ "file_path": {
10
+ "$id": "local_file_path",
11
+ "type": "string",
12
+ "description": "Path to file, relative to the intake bucket. One of image file or annotated file is required."
13
+ }
14
+ },
15
+ "required": []
16
+ }
@@ -22,10 +22,8 @@
22
22
  "bias_qc_plots",
23
23
  "optimal_solution",
24
24
  "other_solutions",
25
- "fraction_cna_subclonal",
26
25
  "fraction_genome_subclonal",
27
26
  "gc_map_correction_mad",
28
- "subclone_fraction",
29
27
  "tumor_fraction",
30
28
  "tumor_ploidy"
31
29
  ],
@@ -46,7 +44,7 @@
46
44
  "on_premise_rdata_file": {"$ref": "artifacts/artifact_rdata.json"},
47
45
 
48
46
  "fraction_cna_subclonal": {
49
- "description": "Fraction of copy number altered bins that are subclonal. Accepts NaN. (0-1)",
47
+ "description": "Fraction of copy number altered bins that are subclonal (0-1)",
50
48
  "type": ["number", "string"]
51
49
  },
52
50
  "fraction_genome_subclonal": {
@@ -60,7 +58,7 @@
60
58
  "type": "number"
61
59
  },
62
60
  "subclone_fraction": {
63
- "description": "Fraction of tumor-derived DNA that is subclonal. Accepts NA. (0-1)",
61
+ "description": "Fraction of tumor-derived DNA that is subclonal (0-1)",
64
62
  "type": ["number", "string"]
65
63
  },
66
64
  "tumor_fraction": {
@@ -59,7 +59,8 @@
59
59
  },
60
60
  "fraction cna subclonal": {
61
61
  "merge_pointer": "0/fraction_cna_subclonal",
62
- "type_ref": "assays/ctdna_assay.json#definitions/entry/properties/fraction_cna_subclonal"
62
+ "type_ref": "assays/ctdna_assay.json#definitions/entry/properties/fraction_cna_subclonal",
63
+ "allow_empty": true
63
64
  },
64
65
  "fraction genome subclonal": {
65
66
  "merge_pointer": "0/fraction_genome_subclonal",
@@ -87,7 +88,8 @@
87
88
  },
88
89
  "subclone fraction": {
89
90
  "merge_pointer": "0/subclone_fraction",
90
- "type_ref": "assays/ctdna_assay.json#definitions/entry/properties/subclone_fraction"
91
+ "type_ref": "assays/ctdna_assay.json#definitions/entry/properties/subclone_fraction",
92
+ "allow_empty": true
91
93
  },
92
94
  "tumor fraction": {
93
95
  "merge_pointer": "0/tumor_fraction",
@@ -33,8 +33,9 @@
33
33
  "merge_pointer": "0/files/image_file",
34
34
  "is_artifact": 1,
35
35
  "gcs_uri_format": "{protocol identifier}/hande/{cimac id}/image_file.{file type}",
36
- "type_ref": "assays/components/local_file.json#properties/file_path",
37
- "allow_empty": true
36
+ "type_ref": "assays/components/hande_local_file.json#properties/file_path",
37
+ "allow_empty": true,
38
+ "type": "string"
38
39
  },
39
40
  "annotated file type": {
40
41
  "do_not_merge": true,
@@ -46,8 +47,9 @@
46
47
  "merge_pointer": "0/files/annotated_image",
47
48
  "is_artifact": 1,
48
49
  "gcs_uri_format": "{protocol identifier}/hande/{cimac id}/annotated_image.{annotated file type}",
49
- "type_ref": "assays/components/local_file.json#properties/file_path",
50
- "allow_empty": true
50
+ "type_ref": "assays/components/hande_local_file.json#properties/file_path",
51
+ "allow_empty": true,
52
+ "type": "string"
51
53
  },
52
54
  "tumor tissue (% total area)": {
53
55
  "merge_pointer": "0/tumor_tissue_percentage",
@@ -95,7 +95,8 @@
95
95
  },
96
96
  "cohort name": {
97
97
  "merge_pointer": "2/cohort_name",
98
- "type_ref": "participant.json#properties/cohort_name"
98
+ "type_ref": "participant.json#properties/cohort_name",
99
+ "allow_empty": true
99
100
  },
100
101
  "participant ID": {
101
102
  "merge_pointer": "2/participant_id",
@@ -93,7 +93,8 @@
93
93
  },
94
94
  "cohort name": {
95
95
  "merge_pointer": "2/cohort_name",
96
- "type_ref": "participant.json#properties/cohort_name"
96
+ "type_ref": "participant.json#properties/cohort_name",
97
+ "allow_empty": true
97
98
  },
98
99
  "participant ID": {
99
100
  "merge_pointer": "2/participant_id",
@@ -93,7 +93,8 @@
93
93
  },
94
94
  "cohort name": {
95
95
  "merge_pointer": "2/cohort_name",
96
- "type_ref": "participant.json#properties/cohort_name"
96
+ "type_ref": "participant.json#properties/cohort_name",
97
+ "allow_empty": true
97
98
  },
98
99
  "participant ID": {
99
100
  "merge_pointer": "2/participant_id",
@@ -190,15 +191,18 @@
190
191
  "DNA quality": {
191
192
  "din value": {
192
193
  "merge_pointer": "/din",
193
- "type_ref": "sample.json#properties/din"
194
+ "type_ref": "sample.json#properties/din",
195
+ "allow_empty": true
194
196
  },
195
197
  "a260/a280 value": {
196
198
  "merge_pointer": "/a260_a280",
197
- "type_ref": "sample.json#properties/a260_a280"
199
+ "type_ref": "sample.json#properties/a260_a280",
200
+ "allow_empty": true
198
201
  },
199
202
  "a260/a230 value": {
200
203
  "merge_pointer": "/a260_a230",
201
- "type_ref": "sample.json#properties/a260_a230"
204
+ "type_ref": "sample.json#properties/a260_a230",
205
+ "allow_empty": true
202
206
  }
203
207
  },
204
208
  "Filled by CIMAC Lab": {
@@ -95,7 +95,8 @@
95
95
  },
96
96
  "cohort name": {
97
97
  "merge_pointer": "2/cohort_name",
98
- "type_ref": "participant.json#properties/cohort_name"
98
+ "type_ref": "participant.json#properties/cohort_name",
99
+ "allow_empty": true
99
100
  },
100
101
  "participant ID": {
101
102
  "merge_pointer": "2/participant_id",
@@ -187,15 +188,18 @@
187
188
  "DNA quality": {
188
189
  "din value": {
189
190
  "merge_pointer": "/din",
190
- "type_ref": "sample.json#properties/din"
191
+ "type_ref": "sample.json#properties/din",
192
+ "allow_empty": true
191
193
  },
192
194
  "a260/a280 value": {
193
195
  "merge_pointer": "/a260_a280",
194
- "type_ref": "sample.json#properties/a260_a280"
196
+ "type_ref": "sample.json#properties/a260_a280",
197
+ "allow_empty": true
195
198
  },
196
199
  "a260/a230 value": {
197
200
  "merge_pointer": "/a260_a230",
198
- "type_ref": "sample.json#properties/a260_a230"
201
+ "type_ref": "sample.json#properties/a260_a230",
202
+ "allow_empty": true
199
203
  }
200
204
  },
201
205
  "Filled by CIMAC Lab": {
@@ -177,7 +177,8 @@
177
177
  },
178
178
  "cohort name": {
179
179
  "merge_pointer": "2/cohort_name",
180
- "type_ref": "participant.json#properties/cohort_name"
180
+ "type_ref": "participant.json#properties/cohort_name",
181
+ "allow_empty": true
181
182
  },
182
183
  "participant ID": {
183
184
  "merge_pointer": "2/participant_id",
@@ -173,7 +173,8 @@
173
173
  },
174
174
  "cohort name": {
175
175
  "merge_pointer": "2/cohort_name",
176
- "type_ref": "participant.json#properties/cohort_name"
176
+ "type_ref": "participant.json#properties/cohort_name",
177
+ "allow_empty": true
177
178
  },
178
179
  "collection event name": {
179
180
  "merge_pointer": "/collection_event_name",
@@ -95,7 +95,8 @@
95
95
  },
96
96
  "cohort name": {
97
97
  "merge_pointer": "2/cohort_name",
98
- "type_ref": "participant.json#properties/cohort_name"
98
+ "type_ref": "participant.json#properties/cohort_name",
99
+ "allow_empty": true
99
100
  },
100
101
  "participant ID": {
101
102
  "merge_pointer": "2/participant_id",
@@ -95,7 +95,8 @@
95
95
  },
96
96
  "cohort name": {
97
97
  "merge_pointer": "2/cohort_name",
98
- "type_ref": "participant.json#properties/cohort_name"
98
+ "type_ref": "participant.json#properties/cohort_name",
99
+ "allow_empty": true
99
100
  },
100
101
  "participant ID": {
101
102
  "merge_pointer": "2/participant_id",
@@ -192,15 +193,18 @@
192
193
  "DNA quality": {
193
194
  "din value": {
194
195
  "merge_pointer": "/din",
195
- "type_ref": "sample.json#properties/din"
196
+ "type_ref": "sample.json#properties/din",
197
+ "allow_empty": true
196
198
  },
197
199
  "a260/a280 value": {
198
200
  "merge_pointer": "/a260_a280",
199
- "type_ref": "sample.json#properties/a260_a280"
201
+ "type_ref": "sample.json#properties/a260_a280",
202
+ "allow_empty": true
200
203
  },
201
204
  "a260/a230 value": {
202
205
  "merge_pointer": "/a260_a230",
203
- "type_ref": "sample.json#properties/a260_a230"
206
+ "type_ref": "sample.json#properties/a260_a230",
207
+ "allow_empty": true
204
208
  }
205
209
  },
206
210
  "Filled by CIMAC Lab": {
@@ -95,7 +95,8 @@
95
95
  },
96
96
  "cohort name": {
97
97
  "merge_pointer": "2/cohort_name",
98
- "type_ref": "participant.json#properties/cohort_name"
98
+ "type_ref": "participant.json#properties/cohort_name",
99
+ "allow_empty": true
99
100
  },
100
101
  "participant ID": {
101
102
  "merge_pointer": "2/participant_id",
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: nci_cidc_schemas
3
- Version: 0.26.35
3
+ Version: 0.26.37
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
@@ -56,7 +56,6 @@ pip install nci-cidc-schemas
56
56
  - **`docs/`** - the most recent build of the data model documentation, along with templates and scripts for re-generating the documentation.
57
57
  - **`template_examples/`** - example populated Excel files for template specifications in `schemas/templates`, and `.csv`s auto-generated from those `.xlsx`s that allow to transparently keep track of changes in them.
58
58
  - **`tests/`** - tests for the `cidc_schemas` module.
59
- - **`.githooks/`** - git hooks, e.g. for auto-generating `.csv`s in `template_examples/` and `.html` documentation files.
60
59
 
61
60
  ### Developer Setup
62
61
 
@@ -1,7 +1,7 @@
1
- cidc_schemas/__init__.py,sha256=ADFA3YhRSz91I9C5rj115esQzZvq9FJA6KKjjerNOFo,136
1
+ cidc_schemas/__init__.py,sha256=h-hrmAr_pO3lT0PGp-TreTtSOzEBGlYR2jFq8uUp23o,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=SyZSW7AAS-qlYLUUV_ri4393utkNsDexcWB73rEmFLs,20035
4
+ cidc_schemas/json_validation.py,sha256=81Dql5LAw4t-0t1cYKpCNQqiUok9rQvGxSk-9VxyILA,20047
5
5
  cidc_schemas/migrations.py,sha256=Amg_T4cFgMzySD7yNnT_PWpqP7hwlTWGeHlI_RSXuRI,14766
6
6
  cidc_schemas/template.py,sha256=gM6Xp1fOZaF8wOLzY5HGdxi4p8cEYhYXRpqRPncYua0,49865
7
7
  cidc_schemas/template_reader.py,sha256=xXtLRKu1y4FrPj8RgyGOmB2hlsCDXcuvMBWami2_jV8,13119
@@ -61,7 +61,7 @@ cidc_schemas/schemas/artifacts/artifact_xlsx.json,sha256=PmQ3NY_8ywS3iFa4vvLzcXb
61
61
  cidc_schemas/schemas/artifacts/artifact_yaml.json,sha256=Eey5T68k4jXqiFXfgWTVi3ZoiY5EZxc75rWCEvaZscE,1657
62
62
  cidc_schemas/schemas/artifacts/artifact_zip.json,sha256=L9TyKfKm2j0jUo7ED7Lb43Z6VRHP7hEirC349viEBhQ,1653
63
63
  cidc_schemas/schemas/assays/atacseq_assay.json,sha256=5ezVeJmrwOWuXLtf9-gH8iYKhLCys9Ii2VamezNI_hM,2547
64
- cidc_schemas/schemas/assays/ctdna_assay.json,sha256=1AwUYiE93XEVDg_FPFyV2OgaD7Ry7pWoD4AH2DAXasA,3503
64
+ cidc_schemas/schemas/assays/ctdna_assay.json,sha256=NjsS0htltMIN_sGoissbnkCZCQIbNdNF1YNfWAU_Unk,3421
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
@@ -89,6 +89,7 @@ cidc_schemas/schemas/assays/components/composite_image.json,sha256=k9EaBG3y9j-lv
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
91
91
  cidc_schemas/schemas/assays/components/excluded_samples.json,sha256=BAuh31ZTGLBEQkGxTkZQQo05CGD4OeHwFOVyVZgdkHI,663
92
+ cidc_schemas/schemas/assays/components/hande_local_file.json,sha256=0fMiJo3DMIzL6CVm0JCKdgJqT3-L7ppUHNjtLdVQpcU,454
92
93
  cidc_schemas/schemas/assays/components/image.json,sha256=1llHvtKct7EfgVRibufHf6mfB8HPScPe8-vCoQQzKDA,1260
93
94
  cidc_schemas/schemas/assays/components/imaging_data.json,sha256=pFMGY03w6VkA4RGvx9YFeT969oLGWxEmjvPe01mk3FU,926
94
95
  cidc_schemas/schemas/assays/components/local_file.json,sha256=NWBTV1FIr8KQXFNFiUwxe68ZRiCKxx8Z2rPcMZLp5ug,405
@@ -126,10 +127,10 @@ cidc_schemas/schemas/templates/analyses/wes_analysis_template.json,sha256=V5RRZ3
126
127
  cidc_schemas/schemas/templates/analyses/wes_tumor_only_analysis_template.json,sha256=oHQ89pnzqGWE2sfb5sYGYhyknyd0pr0dTEGTYn2y_tQ,16240
127
128
  cidc_schemas/schemas/templates/assays/atacseq_fastq_template.json,sha256=7WygawkxnhFu5xBAuIhSOBD8TwCqDgINjC-HIYeCf4Q,3928
128
129
  cidc_schemas/schemas/templates/assays/clinical_data_template.json,sha256=1luQXzyqbAKKiNVwVQFeZ4dwzVpnTeGAropzd_mYmx4,2193
129
- cidc_schemas/schemas/templates/assays/ctdna_template.json,sha256=kNDDyRDz_521Snxo21GmhbYLJgGIzM6axRKsbK3JR74,6077
130
+ cidc_schemas/schemas/templates/assays/ctdna_template.json,sha256=KDyOPbBh0dytlZRJVKNuaGEB8MAyq6Ls1CvI8d2wF3o,6151
130
131
  cidc_schemas/schemas/templates/assays/cytof_template.json,sha256=YGaLt7DKsz32o3na8NDs-bXteVnAPMiF1hLH643f6kY,13328
131
132
  cidc_schemas/schemas/templates/assays/elisa_template.json,sha256=Q8cv5ZpaRZUfvr6e4PC4uvMqhhaDGLdvVMN_s8Uiajw,2259
132
- cidc_schemas/schemas/templates/assays/hande_template.json,sha256=BNMQO4JpBrjuD8ITH1x7cJfkqI4bgKZilvN9yqavaqs,4293
133
+ cidc_schemas/schemas/templates/assays/hande_template.json,sha256=EtFvoEtXZelqQPYuJKRbo2127MUek6wGnMcOvMMr3Os,4391
133
134
  cidc_schemas/schemas/templates/assays/ihc_template.json,sha256=lOSP6v24FMk-WN7Za4IYQkM94R-1TEvrnllRopEEYa4,7341
134
135
  cidc_schemas/schemas/templates/assays/mibi_template.json,sha256=T5gAgsmWpUkkO6CI7aFpyD4efSTZsNmbsLLBrHXpNzg,7787
135
136
  cidc_schemas/schemas/templates/assays/microbiome_template.json,sha256=2qaTB8W-tG6NhbSJ3KAEIacp1E4g-cFBGMOMc5zTafo,3578
@@ -143,19 +144,19 @@ cidc_schemas/schemas/templates/assays/tcr_adaptive_template.json,sha256=Hb8ngxw6
143
144
  cidc_schemas/schemas/templates/assays/tcr_fastq_template.json,sha256=7Qq4ssI8ErDrHy5RIxjPcNiDf2IBHG42JcngDFKxqlE,3457
144
145
  cidc_schemas/schemas/templates/assays/wes_bam_template.json,sha256=nxbb_lNPi-5cdAlwmSBvn7cS_8gMjROOz7wBWk6ev0Y,2724
145
146
  cidc_schemas/schemas/templates/assays/wes_fastq_template.json,sha256=vuwuIpqXyqpGxCunpjbHKaBQhfKFnr2R-wMkXDiJdKM,3143
146
- cidc_schemas/schemas/templates/manifests/h_and_e_template.json,sha256=sgVDCTfdaPFkCN5KGbwfCJYFQnTw6rqk33eY3AAXkSc,12475
147
- cidc_schemas/schemas/templates/manifests/microbiome_dna_template.json,sha256=Zr5ihmNu4Q2jRb55Cn4EFrxrZQJYvJlCIcNHDbsODUw,11829
148
- cidc_schemas/schemas/templates/manifests/normal_blood_dna_template.json,sha256=Vk7hS-ji-w5d73CkOqFlSAzcm0ouJBAcdgzxNFFB8jQ,13346
149
- cidc_schemas/schemas/templates/manifests/normal_tissue_dna_template.json,sha256=jv4JKiVyyvAvsMMLW8NOGrseOZ8eOWbP1mk9us1Qxqk,12989
150
- cidc_schemas/schemas/templates/manifests/pbmc_template.json,sha256=49e5d5WCstjLrLhC2K-82qs1IdwbWjFgR8hFIXRYyKk,17530
151
- cidc_schemas/schemas/templates/manifests/plasma_template.json,sha256=cdLEb6kt_Z7zjcw_Bh-5-PFpRUC0YpViuYIw-hKTyAs,15099
152
- cidc_schemas/schemas/templates/manifests/tissue_slide_template.json,sha256=sFPytc04_-QtfetvYIeh4PdlBFtlBiOGZY5HmhOzJTM,11024
147
+ cidc_schemas/schemas/templates/manifests/h_and_e_template.json,sha256=PiCpfbWd5I29wwYWCQHjQh10g9l84dligYTVvMcJHgM,12524
148
+ cidc_schemas/schemas/templates/manifests/microbiome_dna_template.json,sha256=u1QPL83DUvPMcMdYbwmmgT0nSOqkbjQR-asXZ_6p0CY,11878
149
+ cidc_schemas/schemas/templates/manifests/normal_blood_dna_template.json,sha256=JudTPeQBjTttX4OXMrVl9DTRM73KgZN3jbtC3lcuQsA,13542
150
+ cidc_schemas/schemas/templates/manifests/normal_tissue_dna_template.json,sha256=xCE0pTXRlKOd0dPMKcDIBKXRa81Ka_H5f6OGE1TNmhw,13185
151
+ cidc_schemas/schemas/templates/manifests/pbmc_template.json,sha256=c0F9xu9za95i2RSVl_9wjiZIUxczOFNWJaXRy8pJhOg,17579
152
+ cidc_schemas/schemas/templates/manifests/plasma_template.json,sha256=43bizjQ7zJt5mQHtUfFHDA_f3L4DxBo4XqgHnFvNPbw,15148
153
+ cidc_schemas/schemas/templates/manifests/tissue_slide_template.json,sha256=Y3951-HNUVfvOK4fjUxGJt2gtmGhKZxWiXVLxyZghn8,11073
153
154
  cidc_schemas/schemas/templates/manifests/tumor_normal_pairing_template.json,sha256=lVJrGb28n-vyfjGBzhrzjn1lMKw1b4HXXmWtwA603v0,2797
154
- cidc_schemas/schemas/templates/manifests/tumor_tissue_dna_template.json,sha256=D4ICMeHQgKXFDwaMOqrcLcUEF-dYGalagGYDUFAploU,13276
155
- cidc_schemas/schemas/templates/manifests/tumor_tissue_rna_template.json,sha256=MpJTjoaTdIlNBAIIxSfmItVevA5BXnajqu_jaEXxBmo,12568
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,,
155
+ cidc_schemas/schemas/templates/manifests/tumor_tissue_dna_template.json,sha256=-CC7Hg-qzZ7e5QrrnkybrS1Vrfq2zlgtxU4kRnR5is8,13472
156
+ cidc_schemas/schemas/templates/manifests/tumor_tissue_rna_template.json,sha256=uPiiEo1xEde6MDhQDapLIjL8XcghgeoCEDdZTzGYFBA,12617
157
+ nci_cidc_schemas-0.26.37.dist-info/LICENSE,sha256=zK77-w4rYCZBHAYJEGkcFuPXwKIsP7jMPZ2iQOXjzko,1072
158
+ nci_cidc_schemas-0.26.37.dist-info/METADATA,sha256=Mt2qQfxGcS3Gk4DCRwnghKWQtfC99WAQb2ypxD3gbmw,4314
159
+ nci_cidc_schemas-0.26.37.dist-info/WHEEL,sha256=TJ49d73sNs10F0aze1W_bTW2P_X7-F4YXOlBqoqA-jY,109
160
+ nci_cidc_schemas-0.26.37.dist-info/entry_points.txt,sha256=kSyTzXeJQrJp_2ZX0GS_NnbJR8ceQKLBSgER46PM0hs,55
161
+ nci_cidc_schemas-0.26.37.dist-info/top_level.txt,sha256=Wwb5Cu7QrnbmSJxI2d00e3-Mir36t0jTRnSulmfhi30,13
162
+ nci_cidc_schemas-0.26.37.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (71.0.3)
2
+ Generator: setuptools (75.2.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py2-none-any
5
5
  Tag: py3-none-any