nci-cidc-schemas 0.28.3__py2.py3-none-any.whl → 0.28.13__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/ngs_pipeline_api/__init__.py +0 -1
- cidc_schemas/ngs_pipeline_api/wes/wes_output_API.py +1 -1
- cidc_schemas/prism/constants.py +7 -8
- cidc_schemas/prism/pipelines.py +2 -24
- cidc_schemas/schemas/artifacts/artifact_ibd.json +51 -0
- cidc_schemas/schemas/artifacts/artifact_imzml.json +51 -0
- cidc_schemas/schemas/artifacts/artifact_parquet.json +51 -0
- cidc_schemas/schemas/assays/atacseq_assay.json +4 -0
- cidc_schemas/schemas/assays/components/available_assays.json +34 -1
- cidc_schemas/schemas/assays/components/maldi_glycan_input.json +28 -0
- cidc_schemas/schemas/assays/components/ngs/atacseq/atacseq_analysis.json +4 -0
- cidc_schemas/schemas/assays/components/ngs/rna/rna_analysis.json +10 -1
- cidc_schemas/schemas/assays/components/ngs_assay_core.json +2 -1
- cidc_schemas/schemas/assays/ctdna_assay.json +4 -0
- cidc_schemas/schemas/assays/cytof_assay.json +4 -0
- cidc_schemas/schemas/assays/cytof_assay_core.json +4 -0
- cidc_schemas/schemas/assays/elisa_assay.json +8 -4
- cidc_schemas/schemas/assays/hande_assay.json +18 -1
- cidc_schemas/schemas/assays/ihc_assay.json +9 -1
- cidc_schemas/schemas/assays/maldi_glycan_assay.json +72 -0
- cidc_schemas/schemas/assays/mibi_assay.json +4 -0
- cidc_schemas/schemas/assays/microbiome_assay.json +5 -1
- cidc_schemas/schemas/assays/mif_assay.json +10 -3
- cidc_schemas/schemas/assays/mihc_assay.json +4 -1
- cidc_schemas/schemas/assays/misc_data.json +9 -1
- cidc_schemas/schemas/assays/nanostring_assay.json +5 -1
- cidc_schemas/schemas/assays/nulisa_assay.json +4 -0
- cidc_schemas/schemas/assays/olink_assay.json +4 -0
- cidc_schemas/schemas/assays/olink_ht_assay.json +100 -0
- cidc_schemas/schemas/assays/rna_assay-v0.json +9 -0
- cidc_schemas/schemas/assays/scrnaseq_analysis.json +4 -0
- cidc_schemas/schemas/assays/scrnaseq_assay.json +4 -0
- cidc_schemas/schemas/assays/tcr_analysis.json +4 -0
- cidc_schemas/schemas/assays/tcr_assay.json +4 -0
- cidc_schemas/schemas/assays/tcrseq_rna_assay.json +64 -0
- cidc_schemas/schemas/assays/visium_analysis.json +4 -0
- cidc_schemas/schemas/assays/visium_assay.json +4 -0
- cidc_schemas/schemas/assays/wes_analysis.json +9 -1
- cidc_schemas/schemas/assays/wes_assay.json +25 -3
- cidc_schemas/schemas/assays/wes_tumor_only_analysis.json +9 -1
- cidc_schemas/schemas/clinical_data.json +8 -0
- cidc_schemas/schemas/shipping_core.json +3 -1
- cidc_schemas/schemas/templates/analyses/atacseq_analysis_template.json +6 -2
- cidc_schemas/schemas/templates/analyses/cytof_analysis_template.json +16 -12
- cidc_schemas/schemas/templates/analyses/rna_level1_analysis_template.json +9 -1
- cidc_schemas/schemas/templates/analyses/scrnaseq_analysis_template.json +32 -28
- cidc_schemas/schemas/templates/analyses/tcr_analysis_template.json +9 -5
- cidc_schemas/schemas/templates/analyses/visium_analysis_template.json +11 -7
- cidc_schemas/schemas/templates/analyses/wes_analysis_template.json +9 -1
- cidc_schemas/schemas/templates/analyses/wes_tumor_only_analysis_template.json +9 -1
- cidc_schemas/schemas/templates/assays/atacseq_fastq_template.json +6 -2
- cidc_schemas/schemas/templates/assays/clinical_data_template.json +8 -0
- cidc_schemas/schemas/templates/assays/ctdna_template.json +15 -11
- cidc_schemas/schemas/templates/assays/cytof_template.json +9 -4
- cidc_schemas/schemas/templates/assays/elisa_template.json +8 -4
- cidc_schemas/schemas/templates/assays/hande_template.json +10 -2
- cidc_schemas/schemas/templates/assays/ihc_template.json +8 -0
- cidc_schemas/schemas/templates/assays/maldi_glycan_template.json +143 -0
- cidc_schemas/schemas/templates/assays/mibi_template.json +8 -4
- cidc_schemas/schemas/templates/assays/microbiome_template.json +12 -8
- cidc_schemas/schemas/templates/assays/mif_template.json +8 -0
- cidc_schemas/schemas/templates/assays/mihc_template.json +6 -2
- cidc_schemas/schemas/templates/assays/misc_data_template.json +8 -0
- cidc_schemas/schemas/templates/assays/nanostring_template.json +10 -6
- cidc_schemas/schemas/templates/assays/nulisa_template.json +8 -4
- cidc_schemas/schemas/templates/assays/olink_ht_template.json +86 -0
- cidc_schemas/schemas/templates/assays/olink_template.json +8 -4
- cidc_schemas/schemas/templates/assays/rna_bam_template.json +9 -1
- cidc_schemas/schemas/templates/assays/rna_fastq_template.json +9 -1
- cidc_schemas/schemas/templates/assays/scrnaseq_template.json +8 -4
- cidc_schemas/schemas/templates/assays/tcr_adaptive_template.json +9 -5
- cidc_schemas/schemas/templates/assays/tcr_fastq_template.json +10 -6
- cidc_schemas/schemas/templates/assays/tcrseq_rna_template.json +59 -0
- cidc_schemas/schemas/templates/assays/visium_template.json +13 -9
- cidc_schemas/schemas/templates/assays/wes_bam_template.json +8 -0
- cidc_schemas/schemas/templates/assays/wes_fastq_template.json +8 -0
- cidc_schemas/template.py +0 -4
- cidc_schemas/unprism.py +3 -3
- {nci_cidc_schemas-0.28.3.dist-info → nci_cidc_schemas-0.28.13.dist-info}/METADATA +21 -15
- {nci_cidc_schemas-0.28.3.dist-info → nci_cidc_schemas-0.28.13.dist-info}/RECORD +85 -76
- {nci_cidc_schemas-0.28.3.dist-info → nci_cidc_schemas-0.28.13.dist-info}/WHEEL +1 -1
- cidc_schemas/schemas/templates/manifests/tumor_normal_pairing_template.json +0 -63
- {nci_cidc_schemas-0.28.3.dist-info → nci_cidc_schemas-0.28.13.dist-info}/entry_points.txt +0 -0
- {nci_cidc_schemas-0.28.3.dist-info → nci_cidc_schemas-0.28.13.dist-info}/licenses/LICENSE +0 -0
- {nci_cidc_schemas-0.28.3.dist-info → nci_cidc_schemas-0.28.13.dist-info}/top_level.txt +0 -0
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
cidc_schemas/__init__.py,sha256=
|
|
1
|
+
cidc_schemas/__init__.py,sha256=YdqRFinwGuHZdtnuw1tkZ2CVCXUj3NT07RuIv632q3s,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=4UxcYrofXlDT-Lz6uiQGO1Jwz5bRs0mN_UH4p_A84ks,23262
|
|
5
5
|
cidc_schemas/migrations.py,sha256=Amg_T4cFgMzySD7yNnT_PWpqP7hwlTWGeHlI_RSXuRI,14766
|
|
6
|
-
cidc_schemas/template.py,sha256=
|
|
6
|
+
cidc_schemas/template.py,sha256=lEIfJ1WfGcmbWR1PI8PgdSVx_Foy6Ykwyt9h3PiT4Jw,51192
|
|
7
7
|
cidc_schemas/template_reader.py,sha256=3E9acCr_3TP-PP2qXNyxAnIg1m4TJ6v8VVPogUKW5qA,13126
|
|
8
8
|
cidc_schemas/template_writer.py,sha256=Lk5hw05owoLLsGXimd2H8FSyqBZ2_HpC5wCWw-Xxm5w,18243
|
|
9
|
-
cidc_schemas/unprism.py,sha256=
|
|
9
|
+
cidc_schemas/unprism.py,sha256=gsJjDr3ahU8ecpMUEAdspBohqwDKL6Jz0huzQfbCuPY,13521
|
|
10
10
|
cidc_schemas/util.py,sha256=P-889E64I3i9iroxw5qORguzr09Ac7tsgzsoGeGsfwM,4716
|
|
11
11
|
cidc_schemas/metaschema/strict_meta_schema.json,sha256=3FiS0r2dAXgfPsruJwZYbQoQnHhC_yl-3mclX8gfiQU,6428
|
|
12
|
-
cidc_schemas/ngs_pipeline_api/__init__.py,sha256=
|
|
12
|
+
cidc_schemas/ngs_pipeline_api/__init__.py,sha256=auXSsh33BHbV4THQAw4HitLCOye98eTD0yCifa5Ufig,866
|
|
13
13
|
cidc_schemas/ngs_pipeline_api/output_API.schema.json,sha256=jqEcIpBRDy6r9TPgnRMSRX_UyZ-5bSfST46B-6eo67c,1453
|
|
14
14
|
cidc_schemas/ngs_pipeline_api/atacseq/atacseq.md,sha256=AM6C54du9dTsn4mZP_j0Z_OOjoeQnAmFMiTSjV-vto4,3884
|
|
15
15
|
cidc_schemas/ngs_pipeline_api/atacseq/atacseq_output_API.json,sha256=23XiUq-G_w608yl6-IV3kiYveAGWe5UjHbGcGfqSmuM,2186
|
|
@@ -23,22 +23,22 @@ cidc_schemas/ngs_pipeline_api/tcr/imgs/TCRseq.png,sha256=62Ks2ccWqUgwVeJ1C3Mu-OU
|
|
|
23
23
|
cidc_schemas/ngs_pipeline_api/wes/wes.md,sha256=UYiHYmccCrrtAdZoyqofTWzYc027EF2rHyRksZBroyI,3830
|
|
24
24
|
cidc_schemas/ngs_pipeline_api/wes/wes_config.schema.json,sha256=assQdV2ts4YPwPcKreQf12Kv1DbFhdG5Oals6li-Vz0,2530
|
|
25
25
|
cidc_schemas/ngs_pipeline_api/wes/wes_output_API.json,sha256=W-KGExZvLhxJx-ubbV5MLIzYNXefFzaEo5waWXHONx4,28898
|
|
26
|
-
cidc_schemas/ngs_pipeline_api/wes/wes_output_API.py,sha256=
|
|
26
|
+
cidc_schemas/ngs_pipeline_api/wes/wes_output_API.py,sha256=N0H0K5R2vgMAaUnPs3G7PHuj8AV2kCBgf1dfGYPkHpI,31063
|
|
27
27
|
cidc_schemas/ngs_pipeline_api/wes/wes_tumor_only_output_API.json,sha256=BxRIHrhuL-eeCRpmOrkCPsTNLZPjDATA5G6PY9_TCXQ,12173
|
|
28
28
|
cidc_schemas/ngs_pipeline_api/wes/imgs/wes.png,sha256=QQPDqTUSOgaS6s0bLu2g2y_WQgVoujtwDTF9z5xZKCE,403116
|
|
29
29
|
cidc_schemas/pipeline_configs/rna_level1_analysis_config.yaml.j2,sha256=6no9sFqwzb1T61RZGD-owDt2K5R8G_fPTzflV4fOroo,2832
|
|
30
30
|
cidc_schemas/prism/__init__.py,sha256=J5Tj0X7Di6cyxAjaduOUp2aVyvl8UI67bgxEkgttvcU,530
|
|
31
|
-
cidc_schemas/prism/constants.py,sha256=
|
|
31
|
+
cidc_schemas/prism/constants.py,sha256=gAEvY227Ji-hT7Dmw8Vwn8yyHrxnqkyffLpV8UO426w,4076
|
|
32
32
|
cidc_schemas/prism/core.py,sha256=tXDCCHurvcrxfU11meH3NRAVo9niklup0dpLRoIXwPk,20242
|
|
33
33
|
cidc_schemas/prism/extra_metadata.py,sha256=2qs2PCvWRknZk56GrnRCjQ2hifAQz2YcJ8qXeMlG-Zg,8769
|
|
34
34
|
cidc_schemas/prism/merger.py,sha256=36CKBPVoWecHuvGp3oT9a2d4jWIkvKuS_UofKTEpMYs,13065
|
|
35
|
-
cidc_schemas/prism/pipelines.py,sha256=
|
|
35
|
+
cidc_schemas/prism/pipelines.py,sha256=r3mqpNwfvdXdgY6f96bW4o59fIO2sWqEmyX04MbidNQ,32362
|
|
36
36
|
cidc_schemas/schemas/aliquot.json,sha256=F24s6xGTeJl-VT6s6wvV8YtMA4O-0BsUCwtD2OEx_cY,1943
|
|
37
|
-
cidc_schemas/schemas/clinical_data.json,sha256=
|
|
37
|
+
cidc_schemas/schemas/clinical_data.json,sha256=bHfjRMS5Ti2ctrKrjmG6YtmtZh197wdELFagOriLRdg,1746
|
|
38
38
|
cidc_schemas/schemas/clinical_trial.json,sha256=aUjYgdtlRWDfULk0-apralt4-KrtjriUqt3qNTdL2Rc,4442
|
|
39
39
|
cidc_schemas/schemas/participant.json,sha256=X72GQSdLqhZl_Vg8OHPqRotblIluNSmiw8N5UeM-di8,2843
|
|
40
40
|
cidc_schemas/schemas/sample.json,sha256=pZeMT-Mn_Y8Lq12Ozl72bvxBnh-hiFUegWhopRxMIbQ,22223
|
|
41
|
-
cidc_schemas/schemas/shipping_core.json,sha256=
|
|
41
|
+
cidc_schemas/schemas/shipping_core.json,sha256=sxMK7T73sfBfyZBn7KaR-hEXEa6ZYf0eBku-Uejr8P0,4660
|
|
42
42
|
cidc_schemas/schemas/artifacts/artifact_bam.json,sha256=nPy3qx07--arLyb9VgfdVK6OJoMPhr6rnp-3AF6o82Q,1653
|
|
43
43
|
cidc_schemas/schemas/artifacts/artifact_bam_bai.json,sha256=S1LxCZVyN3v-Hxhs7TEDbGcV-y7LVdAoLzGblT9IhEk,1671
|
|
44
44
|
cidc_schemas/schemas/artifacts/artifact_bed.json,sha256=nGPKiAd2GQGJ6JkdLaqZhfOuyDmsAdUqril1Yao2qmE,1653
|
|
@@ -58,7 +58,9 @@ cidc_schemas/schemas/artifacts/artifact_file.json,sha256=DLY3Gipxpw9N20OJE2t_upA
|
|
|
58
58
|
cidc_schemas/schemas/artifacts/artifact_gz.json,sha256=mtUUc2n3npxhp_JhM-W-6wqVSvMT3nvIv9HJP_R37wg,1649
|
|
59
59
|
cidc_schemas/schemas/artifacts/artifact_h5ad.json,sha256=JaDerbzmR0ABxqaNyWZlHy4rEK3L62e0W-O3Y4xvf6E,1657
|
|
60
60
|
cidc_schemas/schemas/artifacts/artifact_html.json,sha256=qzJJ5W4X1SaLvU-uDdhsmLNbCRRzfSlEHpYkjSLpEyk,1657
|
|
61
|
+
cidc_schemas/schemas/artifacts/artifact_ibd.json,sha256=8OkUW4poLMgqE-hHMM6ODFjMOLJ4yuYR8t_fQByqIpI,1653
|
|
61
62
|
cidc_schemas/schemas/artifacts/artifact_image.json,sha256=y8uY4DqfzeM8cHVkI-aH5BMrbJ3QbbBinJOqudlrlPI,2015
|
|
63
|
+
cidc_schemas/schemas/artifacts/artifact_imzml.json,sha256=5_68OKhr1LzS5WmUyHT5UX4fBzgSHhEhgp3_pU_I1SU,1662
|
|
62
64
|
cidc_schemas/schemas/artifacts/artifact_jpg.json,sha256=Z4-FxEdoiQ7MzzC7uEqkakjaHjoph5rULrBnlQhls5M,1653
|
|
63
65
|
cidc_schemas/schemas/artifacts/artifact_json.json,sha256=dE2ch8Ycs6ORJ3bdDD8Yyp-ixI3OjFHuabZ5pbQVeSU,1657
|
|
64
66
|
cidc_schemas/schemas/artifacts/artifact_junction.json,sha256=KRRlU5Lanmho5u9gOz1dBbOhCtAiT7_JnDFuB0f7wEQ,1775
|
|
@@ -69,6 +71,7 @@ cidc_schemas/schemas/artifacts/artifact_narrowPeak.json,sha256=EOGIAmpo46qZdSzZj
|
|
|
69
71
|
cidc_schemas/schemas/artifacts/artifact_npx.json,sha256=I0o8C9ilOrbLBmLpTOQ1ARFyQHyaSd321mPjuJMGUUw,2134
|
|
70
72
|
cidc_schemas/schemas/artifacts/artifact_ome_tiff.json,sha256=wSIQPf2mi00BwikFlz8qL3wmVvtYWhuOxrHLc3ngzS0,1673
|
|
71
73
|
cidc_schemas/schemas/artifacts/artifact_out.json,sha256=hgFfI9up7dYoQ33XpyILZgffL2H1dp-vi-F-Nx--SqU,1653
|
|
74
|
+
cidc_schemas/schemas/artifacts/artifact_parquet.json,sha256=hPiHjJeepq3IXR8mXXGGQNyWX312UanuOo46-lC6bNg,1669
|
|
72
75
|
cidc_schemas/schemas/artifacts/artifact_pdf.json,sha256=t-RR4gftGD-wjB7t40lb1TbnKLosPQCDyP-SL1V5dWc,1674
|
|
73
76
|
cidc_schemas/schemas/artifacts/artifact_png.json,sha256=cGzHZQg3qbungIkxvLh6TY8iqKjtutBU2XmBnRyiijQ,1653
|
|
74
77
|
cidc_schemas/schemas/artifacts/artifact_rcc.json,sha256=IyqqsxPdFZjRoFuBpnkBKBLbc-SoWvrQoqFWeNLU_as,1704
|
|
@@ -86,36 +89,39 @@ cidc_schemas/schemas/artifacts/artifact_vcf_gz.json,sha256=R37aMZQCorDCqEJQBVB6f
|
|
|
86
89
|
cidc_schemas/schemas/artifacts/artifact_xlsx.json,sha256=PmQ3NY_8ywS3iFa4vvLzcXbewdY41jxa6isnPrWfWUQ,1659
|
|
87
90
|
cidc_schemas/schemas/artifacts/artifact_yaml.json,sha256=Eey5T68k4jXqiFXfgWTVi3ZoiY5EZxc75rWCEvaZscE,1657
|
|
88
91
|
cidc_schemas/schemas/artifacts/artifact_zip.json,sha256=L9TyKfKm2j0jUo7ED7Lb43Z6VRHP7hEirC349viEBhQ,1653
|
|
89
|
-
cidc_schemas/schemas/assays/atacseq_assay.json,sha256=
|
|
90
|
-
cidc_schemas/schemas/assays/ctdna_assay.json,sha256=
|
|
91
|
-
cidc_schemas/schemas/assays/cytof_assay.json,sha256=
|
|
92
|
-
cidc_schemas/schemas/assays/cytof_assay_core.json,sha256=
|
|
93
|
-
cidc_schemas/schemas/assays/elisa_assay.json,sha256=
|
|
94
|
-
cidc_schemas/schemas/assays/hande_assay.json,sha256=
|
|
95
|
-
cidc_schemas/schemas/assays/ihc_assay.json,sha256=
|
|
96
|
-
cidc_schemas/schemas/assays/
|
|
97
|
-
cidc_schemas/schemas/assays/
|
|
98
|
-
cidc_schemas/schemas/assays/
|
|
99
|
-
cidc_schemas/schemas/assays/
|
|
100
|
-
cidc_schemas/schemas/assays/
|
|
101
|
-
cidc_schemas/schemas/assays/
|
|
102
|
-
cidc_schemas/schemas/assays/
|
|
103
|
-
cidc_schemas/schemas/assays/
|
|
104
|
-
cidc_schemas/schemas/assays/
|
|
92
|
+
cidc_schemas/schemas/assays/atacseq_assay.json,sha256=1RWHVQQL9ibZGOHaN_BjZn7BXM0Nwc3HMc0fP5RLDYc,2703
|
|
93
|
+
cidc_schemas/schemas/assays/ctdna_assay.json,sha256=22OrrpLM6mxTSomDDM4-WDImiZ9ByT-YIR5Th7DIvZ8,3577
|
|
94
|
+
cidc_schemas/schemas/assays/cytof_assay.json,sha256=5Gu2i633WePb-3dsgLZ9-lllYtcSof00FESS2_ctWxQ,3821
|
|
95
|
+
cidc_schemas/schemas/assays/cytof_assay_core.json,sha256=9YzIG84pGSHC22MWHCjWY0vR6JOu1cys0OSLMbqgQN4,8990
|
|
96
|
+
cidc_schemas/schemas/assays/elisa_assay.json,sha256=PxlnMsUOvg8E-c7NEV44TSlcQnvOs7-eDXSCzkXDfEw,2369
|
|
97
|
+
cidc_schemas/schemas/assays/hande_assay.json,sha256=57pSnJ6iOrvAGL6LUXkOw_F33QxVfEEY4Xm9N0DS2_w,3809
|
|
98
|
+
cidc_schemas/schemas/assays/ihc_assay.json,sha256=J6BV5NVlH4GpHIJaHiW7PO_-lJnTX6DshPDpDrJQZ2k,7056
|
|
99
|
+
cidc_schemas/schemas/assays/maldi_glycan_assay.json,sha256=CSpIUHiHUPxv4M_sZXCyqeUDTytqCLpOzv8cgzCKbnQ,2380
|
|
100
|
+
cidc_schemas/schemas/assays/mibi_assay.json,sha256=PQn7ua5KmBAiBSx-imQLWJq9oqZHpu0LH4wJSUSQmw8,2326
|
|
101
|
+
cidc_schemas/schemas/assays/microbiome_assay.json,sha256=kkZ7c0gkVQJ0g8VOpc--rEc7BW9Tk2YYv9Uf8KhbI_M,2221
|
|
102
|
+
cidc_schemas/schemas/assays/mif_assay.json,sha256=HS1b2wF0CkHCE-5HGfI9DTE8AuHOkRATxdA3STXKr8A,2878
|
|
103
|
+
cidc_schemas/schemas/assays/mihc_assay.json,sha256=bbux1Twvqag3vOhx-6IuIRwG2r_eVwzTbp-D-h-W3uk,3265
|
|
104
|
+
cidc_schemas/schemas/assays/misc_data.json,sha256=hPVS2iSGtxJlU1qg6fYWkOZcEo9gEJK1m0oGEtX_g88,2313
|
|
105
|
+
cidc_schemas/schemas/assays/nanostring_assay.json,sha256=LFVnmzWM0vRgpIY4e6VrW_cLaA69KBREM-AqH1PEa5U,2753
|
|
106
|
+
cidc_schemas/schemas/assays/nulisa_assay.json,sha256=xBeyYWAt73Mis593fgfe92w59Kj1sVQ5lrj661JCniI,2166
|
|
107
|
+
cidc_schemas/schemas/assays/olink_assay.json,sha256=zq4R_cAsF_P4vEx6VTqNLnLKN_ZD0f0-CbFm3Jsnuyk,5351
|
|
108
|
+
cidc_schemas/schemas/assays/olink_ht_assay.json,sha256=8uyboelbvHUz48HdQ7JXulFvQEOwQuX8NxV4mZhSp3k,3646
|
|
109
|
+
cidc_schemas/schemas/assays/rna_assay-v0.json,sha256=XGkBvWbtMeM5006YxivQPWXyF8U3W3AUp22TSiTwmu8,3326
|
|
105
110
|
cidc_schemas/schemas/assays/rna_assay.json,sha256=Gh47rRWYJSUIoLK3vvOb8_kFXhlISScrtA7nWasoBZI,409
|
|
106
|
-
cidc_schemas/schemas/assays/scrnaseq_analysis.json,sha256=
|
|
107
|
-
cidc_schemas/schemas/assays/scrnaseq_assay.json,sha256=
|
|
108
|
-
cidc_schemas/schemas/assays/tcr_analysis.json,sha256=
|
|
109
|
-
cidc_schemas/schemas/assays/tcr_assay.json,sha256=
|
|
110
|
-
cidc_schemas/schemas/assays/
|
|
111
|
-
cidc_schemas/schemas/assays/
|
|
112
|
-
cidc_schemas/schemas/assays/
|
|
113
|
-
cidc_schemas/schemas/assays/
|
|
111
|
+
cidc_schemas/schemas/assays/scrnaseq_analysis.json,sha256=bxycjtqdBs1GRhPyAKZA5TqoyH7YQlJsQ5haEJ7-Yhw,4657
|
|
112
|
+
cidc_schemas/schemas/assays/scrnaseq_assay.json,sha256=vZiASgA3jm1CviAxFCiAjUR38Uh2S24ShFBY2p2pYgY,2819
|
|
113
|
+
cidc_schemas/schemas/assays/tcr_analysis.json,sha256=e-V7-CQkTmp8UCa21MJuzem3xzk3iyzcTOrCXZYQRyk,2538
|
|
114
|
+
cidc_schemas/schemas/assays/tcr_assay.json,sha256=UNZ6KLoLNWQcDKJZ12AMsO7gt2PEpLeRi3BNYEnD0tk,4837
|
|
115
|
+
cidc_schemas/schemas/assays/tcrseq_rna_assay.json,sha256=St1cOLS6GUfqOdSyivANhX_fpUF4nzHbiGl_oLX0_z0,2287
|
|
116
|
+
cidc_schemas/schemas/assays/visium_analysis.json,sha256=sfxOVe4fPLfxBvqn7UfMm_uhXFxrzMDCIO-JFPskxMo,2194
|
|
117
|
+
cidc_schemas/schemas/assays/visium_assay.json,sha256=_iEaVZHrwo6YAF6o34Ngy1XHs5UODA_eIGlAlu0BNCs,2558
|
|
118
|
+
cidc_schemas/schemas/assays/wes_analysis.json,sha256=y1ET1NjL5ofPXRuwYmNzUhOKPhB4Nq__ypOTCX4G6xI,3048
|
|
119
|
+
cidc_schemas/schemas/assays/wes_assay.json,sha256=1xyeNASbxy84JwzDOcPO2QaYYxqEnLygAbR0If8fJTE,4297
|
|
114
120
|
cidc_schemas/schemas/assays/wes_core.json,sha256=dwAe2Hi-K5G0rm_icSbFUEIhDNG7HkESYKEGhV9L7wM,12858
|
|
115
|
-
cidc_schemas/schemas/assays/wes_tumor_only_analysis.json,sha256=
|
|
121
|
+
cidc_schemas/schemas/assays/wes_tumor_only_analysis.json,sha256=uwLuc_PjNwBuC0oQupz6IfFMQXE52dFJlg7ThMtwVX4,2295
|
|
116
122
|
cidc_schemas/schemas/assays/components/antibody.json,sha256=vfLxXkXIcaJ1BXeUjCaJehrRCdVrBW3gxibwrD7zzd4,960
|
|
117
123
|
cidc_schemas/schemas/assays/components/assay_core.json,sha256=QGuLiArVb7lEF2t1Ml4Qt7g4SXY58WuGBPFVgvOLI5w,485
|
|
118
|
-
cidc_schemas/schemas/assays/components/available_assays.json,sha256=
|
|
124
|
+
cidc_schemas/schemas/assays/components/available_assays.json,sha256=2QzIo0ErCRPoQMhXwKW1PReIw42HnUTWXqBqO-X2hf8,5298
|
|
119
125
|
cidc_schemas/schemas/assays/components/available_ngs_analyses.json,sha256=Y_CL6A5hg4w57En9q1TsLH5ZBdlFeEpE6ggb3-dIIDk,1732
|
|
120
126
|
cidc_schemas/schemas/assays/components/composite_image.json,sha256=k9EaBG3y9j-lvg3nQNZbfVpo9fK_gUz1-9iTwjlTDfE,733
|
|
121
127
|
cidc_schemas/schemas/assays/components/controls.json,sha256=_Wxz7W2msTGJ2Ei4XZg0Qy1t8A5_rLSHNvdPurC073E,458
|
|
@@ -125,13 +131,14 @@ cidc_schemas/schemas/assays/components/hande_local_file.json,sha256=0fMiJo3DMIzL
|
|
|
125
131
|
cidc_schemas/schemas/assays/components/image.json,sha256=3bMLbOR4ypGBRgAHsoWDTI6RmnCjNZR29vyGGA-ozVs,1314
|
|
126
132
|
cidc_schemas/schemas/assays/components/imaging_data.json,sha256=pFMGY03w6VkA4RGvx9YFeT969oLGWxEmjvPe01mk3FU,926
|
|
127
133
|
cidc_schemas/schemas/assays/components/local_file.json,sha256=NWBTV1FIr8KQXFNFiUwxe68ZRiCKxx8Z2rPcMZLp5ug,405
|
|
134
|
+
cidc_schemas/schemas/assays/components/maldi_glycan_input.json,sha256=Ic5uY4nCxo3M5nibm3OPelsTUVLx6ZZAcFiSlY8INm0,637
|
|
128
135
|
cidc_schemas/schemas/assays/components/mapping.json,sha256=y6XSPcqdXgyxywsSDFJPP81ZHJahKCPEBVycoe171kU,1663
|
|
129
136
|
cidc_schemas/schemas/assays/components/mibi_antibody.json,sha256=KpfDSy3at4QyRciG68bZ-bAr6tpJqXGI5Qzslhk4M5w,1831
|
|
130
137
|
cidc_schemas/schemas/assays/components/mif_antibody.json,sha256=zzSI5fu9Lema80fY7zHWuMuTI87bfghKKncHcVnQqzk,2191
|
|
131
138
|
cidc_schemas/schemas/assays/components/mihc_antibody.json,sha256=h9suQ0kgGIDV3U3IxUsVjMt8Y00ao8xqmI8Un3UgDYQ,2144
|
|
132
139
|
cidc_schemas/schemas/assays/components/mihc_input.json,sha256=KozUg3J_0PgQm3b5EEmh1Oh0hdiMS1u9V1zu8_2hsRQ,803
|
|
133
140
|
cidc_schemas/schemas/assays/components/multiple_local_files.json,sha256=VVG6Yvz9yEchgFO9FHQLm7nwM_BcPMjYIecWMnRKp00,480
|
|
134
|
-
cidc_schemas/schemas/assays/components/ngs_assay_core.json,sha256=
|
|
141
|
+
cidc_schemas/schemas/assays/components/ngs_assay_core.json,sha256=YqA7eWs7HJZC21tvimresltBPrOoH8dzPLGYtsKliZk,1258
|
|
135
142
|
cidc_schemas/schemas/assays/components/ngs_assay_record.json,sha256=DwHKyRNDQ6h8PUz0KdBfmcd0Pz1Q1rOeqWpKfUIwjZM,615
|
|
136
143
|
cidc_schemas/schemas/assays/components/nulisa_input.json,sha256=Wu_Vx2TfwBXSaB9e9ngA7FJpcqycxwaFeyxJzosYS54,1271
|
|
137
144
|
cidc_schemas/schemas/assays/components/reads_core.json,sha256=p5RWN2TEGefenpz6pZlOG6MZ6tTAviKUx1bLCZtsNLk,1139
|
|
@@ -146,48 +153,51 @@ cidc_schemas/schemas/assays/components/imaging/mif_input.json,sha256=Hf1PKkk6pHR
|
|
|
146
153
|
cidc_schemas/schemas/assays/components/imaging/mif_roi.json,sha256=XL80pl3_5xj40Y4fpE0THDjCDNYojtxDpjtatoFcNAA,1112
|
|
147
154
|
cidc_schemas/schemas/assays/components/mibi_imaging/mibi_input.json,sha256=JvigxrK5namtAjUHvBm6QVBZWePVLXWTNaORoUH_aBA,1522
|
|
148
155
|
cidc_schemas/schemas/assays/components/ngs/ngs_assay_record.json,sha256=DwHKyRNDQ6h8PUz0KdBfmcd0Pz1Q1rOeqWpKfUIwjZM,615
|
|
149
|
-
cidc_schemas/schemas/assays/components/ngs/atacseq/atacseq_analysis.json,sha256=
|
|
156
|
+
cidc_schemas/schemas/assays/components/ngs/atacseq/atacseq_analysis.json,sha256=QmGeXbc9HvUAvVrRvYnFgOj8apXYtsGNhPkpcVsjGpI,2445
|
|
150
157
|
cidc_schemas/schemas/assays/components/ngs/rna/fusion.json,sha256=lgGWX9unADhT4xNDGqQD_VbC6cUo1JMgH9Ii7ZBvofQ,392
|
|
151
158
|
cidc_schemas/schemas/assays/components/ngs/rna/microbiome.json,sha256=HWm3bOL-y28tV2tYyagEdhUswhVGtk3KEuoy9TZiS3Y,395
|
|
152
159
|
cidc_schemas/schemas/assays/components/ngs/rna/msisensor.json,sha256=wwp_fgHUWofgaqZ3V_MMup7ApR1jsVxw6rXFVg6-_A0,398
|
|
153
160
|
cidc_schemas/schemas/assays/components/ngs/rna/neoantigen.json,sha256=Lbh2ClgtttpcsNz2Zayr2SVNEZw-bPp-lG5Jkg9NlWQ,385
|
|
154
|
-
cidc_schemas/schemas/assays/components/ngs/rna/rna_analysis.json,sha256=
|
|
161
|
+
cidc_schemas/schemas/assays/components/ngs/rna/rna_analysis.json,sha256=XLQpPX9YEZBCC82U3v2PYyseS_v88RnhWOtCWh3kpTY,901
|
|
155
162
|
cidc_schemas/schemas/assays/components/ngs/rna/rna_level1_analysis.json,sha256=Rw1fKEpepV9chtsBF8RMHtL8s0nqTaa8P7sBFt1qBYg,1432
|
|
156
163
|
cidc_schemas/schemas/assays/components/ngs/rna/rseqc.json,sha256=Aq2Ytg8xw9hrzSCHDL3DAWpFcNWD4uDHyjPd6lGYf-0,541
|
|
157
164
|
cidc_schemas/schemas/assays/components/ngs/rna/salmon.json,sha256=GRJaC4MhupuRrEffBxb5q-3QVO32CS5e9S9Bd7MMP5I,1375
|
|
158
165
|
cidc_schemas/schemas/assays/components/ngs/rna/star.json,sha256=XoL1Ro8YDr-ZQQOmYZC8NnREDW-7qzR6IzJi3tLQ2ks,772
|
|
159
166
|
cidc_schemas/schemas/assays/components/ngs/rna/trust4.json,sha256=o-fxkTL-1Tho1kPkJ6CcMUp5kE5mnkZU8cdSCzHR5cQ,382
|
|
160
|
-
cidc_schemas/schemas/templates/analyses/atacseq_analysis_template.json,sha256=
|
|
161
|
-
cidc_schemas/schemas/templates/analyses/cytof_analysis_template.json,sha256=
|
|
162
|
-
cidc_schemas/schemas/templates/analyses/rna_level1_analysis_template.json,sha256=
|
|
163
|
-
cidc_schemas/schemas/templates/analyses/scrnaseq_analysis_template.json,sha256=
|
|
164
|
-
cidc_schemas/schemas/templates/analyses/tcr_analysis_template.json,sha256=
|
|
165
|
-
cidc_schemas/schemas/templates/analyses/visium_analysis_template.json,sha256=
|
|
166
|
-
cidc_schemas/schemas/templates/analyses/wes_analysis_template.json,sha256
|
|
167
|
-
cidc_schemas/schemas/templates/analyses/wes_tumor_only_analysis_template.json,sha256=
|
|
168
|
-
cidc_schemas/schemas/templates/assays/atacseq_fastq_template.json,sha256=
|
|
169
|
-
cidc_schemas/schemas/templates/assays/clinical_data_template.json,sha256=
|
|
170
|
-
cidc_schemas/schemas/templates/assays/ctdna_template.json,sha256=
|
|
171
|
-
cidc_schemas/schemas/templates/assays/cytof_template.json,sha256=
|
|
172
|
-
cidc_schemas/schemas/templates/assays/elisa_template.json,sha256=
|
|
173
|
-
cidc_schemas/schemas/templates/assays/hande_template.json,sha256=
|
|
174
|
-
cidc_schemas/schemas/templates/assays/ihc_template.json,sha256=
|
|
175
|
-
cidc_schemas/schemas/templates/assays/
|
|
176
|
-
cidc_schemas/schemas/templates/assays/
|
|
177
|
-
cidc_schemas/schemas/templates/assays/
|
|
178
|
-
cidc_schemas/schemas/templates/assays/
|
|
179
|
-
cidc_schemas/schemas/templates/assays/
|
|
180
|
-
cidc_schemas/schemas/templates/assays/
|
|
181
|
-
cidc_schemas/schemas/templates/assays/
|
|
182
|
-
cidc_schemas/schemas/templates/assays/
|
|
183
|
-
cidc_schemas/schemas/templates/assays/
|
|
184
|
-
cidc_schemas/schemas/templates/assays/
|
|
185
|
-
cidc_schemas/schemas/templates/assays/
|
|
186
|
-
cidc_schemas/schemas/templates/assays/
|
|
187
|
-
cidc_schemas/schemas/templates/assays/
|
|
188
|
-
cidc_schemas/schemas/templates/assays/
|
|
189
|
-
cidc_schemas/schemas/templates/assays/
|
|
190
|
-
cidc_schemas/schemas/templates/assays/
|
|
167
|
+
cidc_schemas/schemas/templates/analyses/atacseq_analysis_template.json,sha256=5kUruoFlYK-VA5arko-cQ9jN7BH_wx0cT8pAUp67f74,5622
|
|
168
|
+
cidc_schemas/schemas/templates/analyses/cytof_analysis_template.json,sha256=JRos9LRB2dLAPdJlVwGWD3moceIjYKjdSAK9oKgu5dM,6663
|
|
169
|
+
cidc_schemas/schemas/templates/analyses/rna_level1_analysis_template.json,sha256=p8BVblC6uUc6tB4T5NQ83QDHf2cfeVMcXvFgeL5SYMU,16357
|
|
170
|
+
cidc_schemas/schemas/templates/analyses/scrnaseq_analysis_template.json,sha256=4HgiBP05Wwj7fPBhydzxRRiJKX-30ckNytaAC-QjPhs,13205
|
|
171
|
+
cidc_schemas/schemas/templates/analyses/tcr_analysis_template.json,sha256=jqawYgD5UpjJmShmAytgRDvg2J55iJLeFBFuL27VyEs,3248
|
|
172
|
+
cidc_schemas/schemas/templates/analyses/visium_analysis_template.json,sha256=lcpRV3bdmjqu7H68bDPPp5sf8acu8g64VDAOCEaP98A,4649
|
|
173
|
+
cidc_schemas/schemas/templates/analyses/wes_analysis_template.json,sha256=-ucy53AW1B9qNkom_LlyYClbfva3dZbdAgAX9Uc1ufg,35704
|
|
174
|
+
cidc_schemas/schemas/templates/analyses/wes_tumor_only_analysis_template.json,sha256=j7aBUKOMeWzqL9Wboky9tKv-NgtwLdUXUQKtG7nTxRg,16671
|
|
175
|
+
cidc_schemas/schemas/templates/assays/atacseq_fastq_template.json,sha256=o315vw2Gla9CK1S-moqyhuLRl72b5iT8NkT0b_GcJTI,4104
|
|
176
|
+
cidc_schemas/schemas/templates/assays/clinical_data_template.json,sha256=uYHe8TCKFcyzVyZMk6kDXbtmsmYrlkjwNho5RD3wtA4,2593
|
|
177
|
+
cidc_schemas/schemas/templates/assays/ctdna_template.json,sha256=9CX6yv8kV3qiDmC-YZN6DwYcrvoXH0XMPX1uA2wIV8g,6383
|
|
178
|
+
cidc_schemas/schemas/templates/assays/cytof_template.json,sha256=Xryrqj0Lv6fAnYxfrTZ9toqjsmftKBuWrZ-sLNdYgx8,13568
|
|
179
|
+
cidc_schemas/schemas/templates/assays/elisa_template.json,sha256=mQNgI_OXmIRcMyQrdI4h1YxUmuKsPpmMgmSsV4qs_f0,2433
|
|
180
|
+
cidc_schemas/schemas/templates/assays/hande_template.json,sha256=hOZicLAYZ2nw7a2aC90gA2MOfJw8sm4C9kCn8JvdjVA,4809
|
|
181
|
+
cidc_schemas/schemas/templates/assays/ihc_template.json,sha256=MznRuxoSzWeP1od4oUybovFbz7we0OGT7X82v5lmCvA,7747
|
|
182
|
+
cidc_schemas/schemas/templates/assays/maldi_glycan_template.json,sha256=xtmLcBHuB7lPKYH9obqbMSR-b8rgHh8H1LVuttPJHRk,7589
|
|
183
|
+
cidc_schemas/schemas/templates/assays/mibi_template.json,sha256=odESl6wynT21k2J2IGdRQRsGZ5RXj_x6DobURtjQ5aQ,8020
|
|
184
|
+
cidc_schemas/schemas/templates/assays/microbiome_template.json,sha256=FbynxB_wTVQNrxzcIWmGunOsVRaBLMZ-SVb20eC2gBE,3800
|
|
185
|
+
cidc_schemas/schemas/templates/assays/mif_template.json,sha256=bz4KYt9Xj3x2CE_30HX8BjNV45H-KtC_wMDaTHZPN2w,19678
|
|
186
|
+
cidc_schemas/schemas/templates/assays/mihc_template.json,sha256=zY1Bale7ZvO2tjnbrCLeJ0Bs4O08TvpEbLgYrwCOC2A,11195
|
|
187
|
+
cidc_schemas/schemas/templates/assays/misc_data_template.json,sha256=ijXejUzXLa0O5nNs1ciqO1O3kW7JjOk2icEDAxixv1s,2214
|
|
188
|
+
cidc_schemas/schemas/templates/assays/nanostring_template.json,sha256=W8T8kdPA-Rl3OFi7VLgnHZp0Uk_F3ksaX_KmchgpYaY,3421
|
|
189
|
+
cidc_schemas/schemas/templates/assays/nulisa_template.json,sha256=n2mTcVKdUjh5r5R2t1GPfOit4zwS4Y0S_y_scbFxUAA,3986
|
|
190
|
+
cidc_schemas/schemas/templates/assays/olink_ht_template.json,sha256=i8DQPvZsvgKmXkbPZ1sRRuH4QqwZ2-HEkVzSZ4F31eg,4147
|
|
191
|
+
cidc_schemas/schemas/templates/assays/olink_template.json,sha256=Bc6aql9MFJj1zC77o-rHLqt0lPEfyKQWgPk33hFNKkA,6511
|
|
192
|
+
cidc_schemas/schemas/templates/assays/rna_bam_template.json,sha256=pJhAdZqLzxByM7BgMM3pMwwjoubHyYwN1SDy_kg44XI,3409
|
|
193
|
+
cidc_schemas/schemas/templates/assays/rna_fastq_template.json,sha256=VrKY_wpWmPTZ64Uw7_bHdIkoG3XELvQkyo6INgZlIqc,3669
|
|
194
|
+
cidc_schemas/schemas/templates/assays/scrnaseq_template.json,sha256=_09XxY73l5Ii8Z0pQ1RtSxwGPEs1tw3E1v589iyGrQQ,5080
|
|
195
|
+
cidc_schemas/schemas/templates/assays/tcr_adaptive_template.json,sha256=GE0_r9aNzxQLRK86p3gftNj-1D0oR2_rFmjAt1Ry0jA,3463
|
|
196
|
+
cidc_schemas/schemas/templates/assays/tcr_fastq_template.json,sha256=MagEMi36rkpuyV2tXdp1WIbxlbyjIVrHCYGsoBCpU88,3657
|
|
197
|
+
cidc_schemas/schemas/templates/assays/tcrseq_rna_template.json,sha256=PO0ivqDF31aSSO081nKRCbGyybNcjZDj0cYUMdA52tM,2855
|
|
198
|
+
cidc_schemas/schemas/templates/assays/visium_template.json,sha256=cw0f7I-Rxzu6ua9QGWIC3BWjuCc1E9zoUAKhLzxTkIA,8163
|
|
199
|
+
cidc_schemas/schemas/templates/assays/wes_bam_template.json,sha256=CEoE_XY2Hf_CbSLAry7S_27jnZKliUHJ0ahOAyMjMSs,3042
|
|
200
|
+
cidc_schemas/schemas/templates/assays/wes_fastq_template.json,sha256=XJSMIT7G6DpMOFBQWEtChkQID1vPISFCgKNj4bWaL8g,3461
|
|
191
201
|
cidc_schemas/schemas/templates/manifests/h_and_e_template.json,sha256=8fbhWxKWhITds1KkbEdQxHHoeoKB2Tm40plzsxz3_FE,18009
|
|
192
202
|
cidc_schemas/schemas/templates/manifests/microbiome_dna_template.json,sha256=POucJzR6ac_ndXgttL8Pm6s7BKtu5tqJz4Y49U8zLj0,17848
|
|
193
203
|
cidc_schemas/schemas/templates/manifests/normal_blood_dna_template.json,sha256=emT2mC8vwKU4rjBNm-NMS5JYxDelDNH2YL5QESOXm-s,18980
|
|
@@ -195,12 +205,11 @@ cidc_schemas/schemas/templates/manifests/normal_tissue_dna_template.json,sha256=
|
|
|
195
205
|
cidc_schemas/schemas/templates/manifests/pbmc_template.json,sha256=esGW9nVQ6Elgf0LeELowwpxlP7EOgSgnF6Jka0AnsPA,18778
|
|
196
206
|
cidc_schemas/schemas/templates/manifests/plasma_template.json,sha256=VNraMcIdpxvPJC5SH4nnUeqOCz5HUuiGiMcKC20Ctso,16138
|
|
197
207
|
cidc_schemas/schemas/templates/manifests/tissue_slide_template.json,sha256=q2GmOA2bstMRJmkigOri_uFYKJNHJG3qjVXUjV410Ls,16557
|
|
198
|
-
cidc_schemas/schemas/templates/manifests/tumor_normal_pairing_template.json,sha256=lVJrGb28n-vyfjGBzhrzjn1lMKw1b4HXXmWtwA603v0,2797
|
|
199
208
|
cidc_schemas/schemas/templates/manifests/tumor_tissue_dna_template.json,sha256=LpaoDXDS11NCa-Dv37N-tzEGomswQrx5fypkUcG7xJk,18956
|
|
200
209
|
cidc_schemas/schemas/templates/manifests/tumor_tissue_rna_template.json,sha256=-gww6NCHbtbI5z7UmNSmKyPK3IqKCE8F6n4XwTAb_gk,18101
|
|
201
|
-
nci_cidc_schemas-0.28.
|
|
202
|
-
nci_cidc_schemas-0.28.
|
|
203
|
-
nci_cidc_schemas-0.28.
|
|
204
|
-
nci_cidc_schemas-0.28.
|
|
205
|
-
nci_cidc_schemas-0.28.
|
|
206
|
-
nci_cidc_schemas-0.28.
|
|
210
|
+
nci_cidc_schemas-0.28.13.dist-info/licenses/LICENSE,sha256=zK77-w4rYCZBHAYJEGkcFuPXwKIsP7jMPZ2iQOXjzko,1072
|
|
211
|
+
nci_cidc_schemas-0.28.13.dist-info/METADATA,sha256=IPHFpD4wp_VckIZSYCpg-uiUFlc0rPNapCMKox0UZrI,5375
|
|
212
|
+
nci_cidc_schemas-0.28.13.dist-info/WHEEL,sha256=Mk1ST5gDzEO5il5kYREiBnzzM469m5sI8ESPl7TRhJY,110
|
|
213
|
+
nci_cidc_schemas-0.28.13.dist-info/entry_points.txt,sha256=kSyTzXeJQrJp_2ZX0GS_NnbJR8ceQKLBSgER46PM0hs,55
|
|
214
|
+
nci_cidc_schemas-0.28.13.dist-info/top_level.txt,sha256=Wwb5Cu7QrnbmSJxI2d00e3-Mir36t0jTRnSulmfhi30,13
|
|
215
|
+
nci_cidc_schemas-0.28.13.dist-info/RECORD,,
|
|
@@ -1,63 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"title": "Metadata manifest for WES analysis pairing",
|
|
3
|
-
"description": "Metadata manifest for tumor / normal pairing for WES assay analysis.",
|
|
4
|
-
"properties": {
|
|
5
|
-
"worksheets": {
|
|
6
|
-
|
|
7
|
-
"Pairing": {
|
|
8
|
-
"prism_preamble_object_schema": "clinical_trial.json",
|
|
9
|
-
"prism_preamble_object_pointer": "#",
|
|
10
|
-
"preamble_rows": {
|
|
11
|
-
"protocol identifier": {
|
|
12
|
-
"merge_pointer": "/protocol_identifier",
|
|
13
|
-
"type_ref": "clinical_trial.json#properties/protocol_identifier"
|
|
14
|
-
}
|
|
15
|
-
},
|
|
16
|
-
"prism_data_object_pointer": "/analysis/wes_analysis/pair_runs/-",
|
|
17
|
-
"data_columns": {
|
|
18
|
-
"Pair": {
|
|
19
|
-
"tumor sample CIMAC ID": {
|
|
20
|
-
"merge_pointer": "/tumor/cimac_id",
|
|
21
|
-
"type_ref": "sample.json#properties/cimac_id",
|
|
22
|
-
"process_as": [
|
|
23
|
-
{
|
|
24
|
-
"merge_pointer": "/run_id",
|
|
25
|
-
"type_ref": "assays/wes_analysis.json#definitions/pair_analysis/properties/run_id"
|
|
26
|
-
}
|
|
27
|
-
]
|
|
28
|
-
},
|
|
29
|
-
"normal sample CIMAC ID": {
|
|
30
|
-
"merge_pointer": "/normal/cimac_id",
|
|
31
|
-
"type_ref": "sample.json#properties/cimac_id"
|
|
32
|
-
}
|
|
33
|
-
}
|
|
34
|
-
}
|
|
35
|
-
},
|
|
36
|
-
"Tumor-only": {
|
|
37
|
-
"prism_preamble_object_schema": "clinical_trial.json",
|
|
38
|
-
"prism_preamble_object_pointer": "#",
|
|
39
|
-
"preamble_rows": {
|
|
40
|
-
"protocol identifier": {
|
|
41
|
-
"merge_pointer": "/protocol_identifier",
|
|
42
|
-
"type_ref": "clinical_trial.json#properties/protocol_identifier"
|
|
43
|
-
}
|
|
44
|
-
},
|
|
45
|
-
"prism_data_object_pointer": "/analysis/wes_tumor_only_analysis/runs/-",
|
|
46
|
-
"data_columns": {
|
|
47
|
-
"Tumor-only": {
|
|
48
|
-
"tumor sample CIMAC ID": {
|
|
49
|
-
"merge_pointer": "/tumor/cimac_id",
|
|
50
|
-
"type_ref": "sample.json#properties/cimac_id",
|
|
51
|
-
"process_as": [
|
|
52
|
-
{
|
|
53
|
-
"merge_pointer": "/run_id",
|
|
54
|
-
"type_ref": "assays/wes_tumor_only_analysis.json#definitions/sample_analysis/properties/run_id"
|
|
55
|
-
}
|
|
56
|
-
]
|
|
57
|
-
}
|
|
58
|
-
}
|
|
59
|
-
}
|
|
60
|
-
}
|
|
61
|
-
}
|
|
62
|
-
}
|
|
63
|
-
}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|