nci-cidc-schemas 0.28.1__py2.py3-none-any.whl → 0.28.3__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.
Files changed (29) hide show
  1. cidc_schemas/__init__.py +1 -1
  2. cidc_schemas/ngs_pipeline_api/__init__.py +29 -0
  3. cidc_schemas/ngs_pipeline_api/atacseq/atacseq.md +55 -0
  4. cidc_schemas/ngs_pipeline_api/atacseq/atacseq_output_API.json +39 -0
  5. cidc_schemas/ngs_pipeline_api/atacseq/imgs/atacseq.png +0 -0
  6. cidc_schemas/ngs_pipeline_api/output_API.schema.json +45 -0
  7. cidc_schemas/ngs_pipeline_api/rna/imgs/RIMA.png +0 -0
  8. cidc_schemas/ngs_pipeline_api/rna/rna.md +54 -0
  9. cidc_schemas/ngs_pipeline_api/rna/rna_config.schema.json +39 -0
  10. cidc_schemas/ngs_pipeline_api/rna/rna_output_API.json +195 -0
  11. cidc_schemas/ngs_pipeline_api/tcr/imgs/TCRseq.png +0 -0
  12. cidc_schemas/ngs_pipeline_api/tcr/tcr.md +101 -0
  13. cidc_schemas/ngs_pipeline_api/wes/imgs/wes.png +0 -0
  14. cidc_schemas/ngs_pipeline_api/wes/wes.md +46 -0
  15. cidc_schemas/ngs_pipeline_api/wes/wes_config.schema.json +82 -0
  16. cidc_schemas/ngs_pipeline_api/wes/wes_output_API.json +503 -0
  17. cidc_schemas/ngs_pipeline_api/wes/wes_output_API.py +548 -0
  18. cidc_schemas/ngs_pipeline_api/wes/wes_tumor_only_output_API.json +213 -0
  19. cidc_schemas/prism/constants.py +2 -0
  20. cidc_schemas/schemas/assays/components/available_assays.json +11 -0
  21. cidc_schemas/schemas/assays/components/nulisa_input.json +46 -0
  22. cidc_schemas/schemas/assays/nulisa_assay.json +63 -0
  23. cidc_schemas/schemas/templates/assays/nulisa_template.json +88 -0
  24. {nci_cidc_schemas-0.28.1.dist-info → nci_cidc_schemas-0.28.3.dist-info}/METADATA +1 -1
  25. {nci_cidc_schemas-0.28.1.dist-info → nci_cidc_schemas-0.28.3.dist-info}/RECORD +29 -9
  26. {nci_cidc_schemas-0.28.1.dist-info → nci_cidc_schemas-0.28.3.dist-info}/WHEEL +0 -0
  27. {nci_cidc_schemas-0.28.1.dist-info → nci_cidc_schemas-0.28.3.dist-info}/entry_points.txt +0 -0
  28. {nci_cidc_schemas-0.28.1.dist-info → nci_cidc_schemas-0.28.3.dist-info}/licenses/LICENSE +0 -0
  29. {nci_cidc_schemas-0.28.1.dist-info → nci_cidc_schemas-0.28.3.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,213 @@
1
+ {
2
+ "run id": [
3
+ {
4
+ "file_path_template": "analysis/{run id}_error.yaml",
5
+ "short_description": "yaml file that specifies error codes for files",
6
+ "long_description": "Explanation of all files which are expected to be empty due to a failed/missing module.",
7
+ "filter_group": "",
8
+ "file_purpose": "Analysis view",
9
+ "optional": true,
10
+ "tumor_only_assay": true
11
+ },
12
+ {
13
+ "file_path_template": "analysis/msisensor2/{run id}/{run id}_msisensor2.txt",
14
+ "short_description": "msisensor2: microsatellite instability calculation",
15
+ "long_description": "Microsatellite instability calculation using msisensor2 (https://github.com/niu-lab/msisensor2)",
16
+ "filter_group": "msisensor2",
17
+ "file_purpose": "Analysis view",
18
+ "optional": false,
19
+ "tumor_only_assay": true
20
+ },
21
+ {
22
+ "file_path_template": "analysis/neoantigen/{run id}/combined/{run id}.filtered.tsv",
23
+ "short_description": "neaontigen: list of predicted neoantigens",
24
+ "long_description": "The combined MHC class I and II predicted neoantigens using the pVACseq software. The column definitions are given here (ref: https://pvactools.readthedocs.io/en/latest/pvacseq/output_files.html)",
25
+ "filter_group": "neoantigen",
26
+ "file_purpose": "Analysis view",
27
+ "optional": false,
28
+ "tumor_only_assay": true
29
+ },
30
+ {
31
+ "file_path_template": "analysis/report.tar.gz",
32
+ "short_description": "wes report: wes summary html report",
33
+ "long_description": "This is a gzipped file of the report directory, which contains the report.html file. After unzipping the file, the user can load report/report.html into any browser to view the WES Summary Report. The report contains run information (i.e. wes software version used to run the analysis as well as the software version of the major tools) as well as summarizations of sample quality, copy number variation, somatic variants, and HLA-type/neoantigen predictions.",
34
+ "filter_group": "report",
35
+ "file_purpose": "Analysis view",
36
+ "optional": false,
37
+ "tumor_only_assay": true
38
+ },
39
+ {
40
+ "file_path_template": "analysis/report/WES_Meta/02_WES_Run_Version.tsv",
41
+ "short_description": "wes pipeline version- INTERNAL ONLY- for reproducibility",
42
+ "long_description": "wes pipeline version- INTERNAL ONLY- for reproducibility",
43
+ "filter_group": "report",
44
+ "file_purpose": "Miscellaneous",
45
+ "optional": false,
46
+ "tumor_only_assay": true
47
+ },
48
+ {
49
+ "file_path_template": "analysis/report/config.yaml",
50
+ "short_description": "wes pipeline config file- INTERNAL ONLY- for reproducibility",
51
+ "long_description": "wes pipeline config file- INTERNAL ONLY- for reproducibility",
52
+ "filter_group": "report",
53
+ "file_purpose": "Miscellaneous",
54
+ "optional": false,
55
+ "tumor_only_assay": true
56
+ },
57
+ {
58
+ "file_path_template": "analysis/report/metasheet.csv",
59
+ "short_description": "wes pipeline metasheet file- INTERNAL ONLY- for reproducibility",
60
+ "long_description": "wes pipeline metasheet file- INTERNAL ONLY- for reproducibility",
61
+ "filter_group": "report",
62
+ "file_purpose": "Miscellaneous",
63
+ "optional": false,
64
+ "tumor_only_assay": true
65
+ },
66
+ {
67
+ "file_path_template": "analysis/report/json/{run id}.wes.json",
68
+ "short_description": "wes sample json for cohort report generation-INTERNAL ONLY",
69
+ "long_description": "wes sample json for cohort report generation-INTERNAL ONLY",
70
+ "filter_group": "report",
71
+ "file_purpose": "Miscellaneous",
72
+ "optional": false,
73
+ "tumor_only_assay": true
74
+ },
75
+ {
76
+ "file_path_template": "analysis/rna/{run id}/{run id}.haplotyper.rna.vcf.gz",
77
+ "short_description": "rna: Variants called from RNA-seq data",
78
+ "long_description": "RNA-seq variants called using the Sentieon RNA Variant Calling pipeline(https://support.sentieon.com/manual/RNA_call/rna/). Sentieon's Haplotyper algorithm was used for the variant calling.",
79
+ "filter_group": "rna",
80
+ "file_purpose": "Analysis view",
81
+ "optional": true,
82
+ "tumor_only_assay": true
83
+ },
84
+ {
85
+ "file_path_template": "analysis/rna/{run id}/{run id}_tnscope.output.twist.neoantigen.vep.rna.vcf",
86
+ "short_description": "rna: Shared RNA and WES variants that is used for neoantigen prediction when RNA-seq data is provided with the WES run",
87
+ "long_description": "Variants file representing the common variants between RNA (haplotyper.rna.vcf.gz) and WES data (output.twist.neoantigen.vep.vcf).",
88
+ "filter_group": "rna",
89
+ "file_purpose": "Analysis view",
90
+ "optional": true,
91
+ "tumor_only_assay": true
92
+ },
93
+ {
94
+ "file_path_template": "analysis/somatic/{run id}/{run id}_tnscope.output.vcf.gz",
95
+ "short_description": "somatic variants: vcf file of somatic variants",
96
+ "long_description": "VCF file of somatic variants using one of the following the Sentieon somatic callers {tnscope (default), tnhaplotyper2, tnsnv}.\n\nTNscope algorithm- https://support.sentieon.com/manual/usages/general/#tnscope-algorithm\nTNhaplotyper2- https://support.sentieon.com/manual/usages/general/#tnhaplotyper2-algorithm\nTNsnv - https://support.sentieon.com/manual/usages/general/#tnsnv-algorithm",
97
+ "filter_group": "somatic",
98
+ "file_purpose": "Analysis view",
99
+ "optional": false,
100
+ "tumor_only_assay": true
101
+ },
102
+ {
103
+ "file_path_template": "analysis/somatic/{run id}/{run id}_tnscope.output.twist.vcf",
104
+ "short_description": "somatic variants: vcf file of somatic variants in TWIST targed capture region",
105
+ "long_description": "VCF file of variants that fall within the TWIST excome capture regions. bcftools is used to filter reads in output.vcf.gz that intersect with the TWIST capture regions.",
106
+ "filter_group": "somatic",
107
+ "file_purpose": "Analysis view",
108
+ "optional": false,
109
+ "tumor_only_assay": true
110
+ },
111
+ {
112
+ "file_path_template": "analysis/somatic/{run id}/{run id}_tnscope.output.twist.maf",
113
+ "short_description": "somatic variants: maf file of somatic variants in TWIST targed capture region",
114
+ "long_description": "MAF file of variants that fall within the TWIST excome capture regions generated using vcf2maf tool (https://github.com/mskcc/vcf2maf). VEP was used to annotate twist.vcf file, which was then used as input to vcf2maf. NOTE: Some columns in this maf file may be affected by the ExACdb assembly compatibility issue discussed in the WES pipeline overview page (https://cidc.nci.nih.gov/pipelines/wes).",
115
+ "filter_group": "somatic",
116
+ "file_purpose": "Analysis view",
117
+ "optional": false,
118
+ "tumor_only_assay": true
119
+ },
120
+ {
121
+ "file_path_template": "analysis/somatic/{run id}/{run id}_tnscope.output.twist.filtered.vcf",
122
+ "short_description": "somatic variants: vcf file of somatic variants in TWIST targed capture region filtered by PASS column",
123
+ "long_description": "VCF file of variants that fall within the TWIST excome capture regions filtered to remove vairants where the PASS column contained one of the following- germline-risk, low_t_alt_frac, t_lod_fstar, or triallelic_site",
124
+ "filter_group": "somatic",
125
+ "file_purpose": "Analysis view",
126
+ "optional": false,
127
+ "tumor_only_assay": true
128
+ },
129
+ {
130
+ "file_path_template": "analysis/somatic/{run id}/{run id}_tnscope.output.twist.filtered.maf",
131
+ "short_description": "somatic variants: maf file of somatic variants in TWIST targed capture region filtered by PASS column",
132
+ "long_description": "MAF file generated by converting twist.filtered.vcf to maf using VEP to annotate variants and vcf2maf to do the conversion. NOTE: Some columns in this maf file may be affected by the ExACdb assembly compatibility issue discussed in the WES pipeline overview page (https://cidc.nci.nih.gov/pipelines/wes).",
133
+ "filter_group": "somatic",
134
+ "file_purpose": "Analysis view",
135
+ "optional": false,
136
+ "tumor_only_assay": true
137
+ },
138
+ {
139
+ "file_path_template": "analysis/tcellextrect/{run id}/{run id}_tcellextrect.txt",
140
+ "short_description": "tcell: TCell fraction estimates generated by TcellExTRECT",
141
+ "long_description": "TCell fraction estimates generated by the TcellExTRECT software (https://github.com/McGranahanLab/TcellExTRECT)",
142
+ "filter_group": "tcell",
143
+ "file_purpose": "Analysis view",
144
+ "optional": false,
145
+ "tumor_only_assay": true
146
+ }
147
+ ],
148
+ "tumor cimac id": [
149
+ {
150
+ "file_path_template": "analysis/align/{tumor cimac id}/{tumor cimac id}.sorted.dedup.bam",
151
+ "short_description": "alignment: bam file with deduplicated reads",
152
+ "long_description": "Aligned reads were sorted and marked duplicates were removed using the Sentieon Dedup tool (https://support.sentieon.com/manual/usages/general/#dedup-algorithm)",
153
+ "filter_group": "alignment",
154
+ "file_purpose": "Source view",
155
+ "optional": false,
156
+ "tumor_only_assay": true
157
+ },
158
+ {
159
+ "file_path_template": "analysis/align/{tumor cimac id}/{tumor cimac id}.sorted.dedup.bam.bai",
160
+ "short_description": "alignment: index file for deduplicated bam",
161
+ "long_description": "Bam index file for deduplicated bam file generated by the Sentieon Dedup tool (https://support.sentieon.com/manual/usages/general/#dedup-algorithm)",
162
+ "filter_group": "alignment",
163
+ "file_purpose": "Source view",
164
+ "optional": false,
165
+ "tumor_only_assay": true
166
+ },
167
+ {
168
+ "file_path_template": "analysis/align/{tumor cimac id}/{tumor cimac id}_recalibrated.bam",
169
+ "short_description": "alignment: Base Qualtiy Score Recalibration (BQSR) bam file",
170
+ "long_description": "The Sentieon QualCal (https://support.sentieon.com/manual/usages/general/#qualcal-algorithm) is used to perform BSQR and remove any technical artifacts in the base quality scores.",
171
+ "filter_group": "alignment",
172
+ "file_purpose": "Source view",
173
+ "optional": false,
174
+ "tumor_only_assay": true
175
+ },
176
+ {
177
+ "file_path_template": "analysis/align/{tumor cimac id}/{tumor cimac id}_recalibrated.bam.bai",
178
+ "short_description": "alignment: index file for Base Qualtiy Score Recalibration (BQSR) bam file",
179
+ "long_description": "Index file for the BQSR bam file",
180
+ "filter_group": "alignment",
181
+ "file_purpose": "Source view",
182
+ "optional": false,
183
+ "tumor_only_assay": true
184
+ },
185
+ {
186
+ "file_path_template": "analysis/hlahd/{tumor cimac id}/result/{tumor cimac id}_final.result.txt",
187
+ "short_description": "hla: MHC Class I and II results (using HLA-HD)",
188
+ "long_description": "Predicted MHC Class II and II results using the HLA-HD software (https://www.genome.med.kyoto-u.ac.jp/HLA-HD/). Chromosome 6 reads from the deduplicated bam file were extracted and fed into the HLA-HD prediction algorithm.",
189
+ "filter_group": "HLA",
190
+ "file_purpose": "Analysis view",
191
+ "optional": false,
192
+ "tumor_only_assay": true
193
+ },
194
+ {
195
+ "file_path_template": "analysis/optitype/{tumor cimac id}/{tumor cimac id}_result.tsv",
196
+ "short_description": "hla: MHC Class I results (using OptiType)",
197
+ "long_description": "Predicted MHC Class I alleles using the Optitype software (https://github.com/FRED-2/OptiType). Chromosome 6 reads from the deduplicated bam file were extracted and fed into the Optitype prediction algorithm.",
198
+ "filter_group": "HLA",
199
+ "file_purpose": "Analysis view",
200
+ "optional": false,
201
+ "tumor_only_assay": true
202
+ },
203
+ {
204
+ "file_path_template": "analysis/xhla/{tumor cimac id}/report-{tumor cimac id}-hla.json",
205
+ "short_description": "hla: MHC Class I and II results (using xhla)",
206
+ "long_description": "Predicted MHC Class I and II results using the xHLA software(https://github.com/humanlongevity/HLA). Chromosome 6 reads from the deduplicated bam file were extracted and fed into the xHLA prediction algorithm.",
207
+ "filter_group": "HLA",
208
+ "file_purpose": "Analysis view",
209
+ "optional": false,
210
+ "tumor_only_assay": true
211
+ }
212
+ ]
213
+ }
@@ -28,6 +28,7 @@ SUPPORTED_ASSAYS = [
28
28
  "mihc",
29
29
  "scrnaseq",
30
30
  "visium",
31
+ "nulisa",
31
32
  ]
32
33
 
33
34
  SUPPORTED_SHIPPING_MANIFESTS = [
@@ -143,6 +144,7 @@ ASSAY_TO_FILEPATH: Dict[str, str] = {
143
144
  "scrnaseq_analysis",
144
145
  "visium",
145
146
  "visium_analysis",
147
+ "nulisa",
146
148
  ]
147
149
  },
148
150
  }
@@ -167,6 +167,17 @@
167
167
  "$ref": "assays/microbiome_assay.json"
168
168
  },
169
169
  "mergeStrategy": "append"
170
+ },
171
+ "nulisa": {
172
+ "type": "array",
173
+ "description": "NULISA",
174
+ "items": {
175
+ "$ref": "assays/nulisa_assay.json"
176
+ },
177
+ "mergeStrategy": "arrayMergeById",
178
+ "mergeOptions": {
179
+ "idRef": "batch_id"
180
+ }
170
181
  }
171
182
  }
172
183
  }
@@ -0,0 +1,46 @@
1
+ {
2
+ "$schema": "metaschema/strict_meta_schema.json#",
3
+ "$id": "nulisa_input",
4
+ "title": "NULISA Input Files and Data",
5
+ "type": "object",
6
+ "description": "NULISA assay input files and data",
7
+ "inheritableBase": true,
8
+ "properties": {
9
+ "ic_median": {
10
+ "description": "Percentage sample IC reads relative to the median (within +/- 40% of the plate median)",
11
+ "type": "number"
12
+ },
13
+ "detectability": {
14
+ "description": "Percentage of targets with reads above the Limit of Detection (LOD) (Minimum threshold = plasma-90%, serum-90%, csf-70%, other-0%)",
15
+ "type": "number"
16
+ },
17
+ "ic_reads": {
18
+ "description": "Number of Internal Control (IC) reads within a sample (Minimum threshold = 1,000)",
19
+ "type": "integer"
20
+ },
21
+ "qc_status": {
22
+ "description": "Status",
23
+ "type": "string",
24
+ "enum": [
25
+ "warning",
26
+ "passed",
27
+ "NA"
28
+ ]
29
+ },
30
+ "reads": {
31
+ "description": "Number of reads within a sample (Minimum threshold = 500,000)",
32
+ "type": "integer"
33
+ },
34
+ "auto_well_position": {
35
+ "description": "Auto well position label",
36
+ "type": "string"
37
+ }
38
+ },
39
+ "required": [
40
+ "ic_median",
41
+ "ic_reads",
42
+ "qc_status",
43
+ "reads",
44
+ "auto_well_position"
45
+ ]
46
+ }
@@ -0,0 +1,63 @@
1
+ {
2
+ "$schema": "metaschema/strict_meta_schema.json#",
3
+ "$id": "nulisa_assay",
4
+ "title": "NULISA Assay",
5
+ "type": "object",
6
+ "$comment": "description used in docs/index.html and docs/assays.nulisa.html",
7
+ "description": "Nucleic acid Linked Immuno-Sandwich Assay (NULISA) assay",
8
+ "additionalProperties": false,
9
+ "definitions": {
10
+ "record": {
11
+ "type": "object",
12
+ "mergeStrategy": "objectMerge",
13
+ "description": "A single data record from a NULISA assay.",
14
+ "additionalProperties": false,
15
+ "required": [
16
+ "cimac_id",
17
+ "details"
18
+ ],
19
+ "properties": {
20
+ "cimac_id": {
21
+ "description": "Id of an sample within this clinical trial, that this assay record is based upon.",
22
+ "$ref": "sample.json#properties/cimac_id"
23
+ },
24
+ "details": {
25
+ "$ref": "assays/components/nulisa_input.json"
26
+ }
27
+ }
28
+ }
29
+ },
30
+ "properties": {
31
+ "assay_creator": {
32
+ "$ref": "assays/components/assay_core.json#properties/assay_creator"
33
+ },
34
+ "batch_id": {
35
+ "description": "Batch identification number. Unique to every upload.",
36
+ "type": "string"
37
+ },
38
+ "npq_file": {
39
+ "$ref": "artifacts/artifact_csv.json"
40
+ },
41
+ "raw_counts_file": {
42
+ "$ref": "artifacts/artifact_csv.json"
43
+ },
44
+ "metadata_csv": {"$ref": "artifacts/artifact_csv.json"},
45
+
46
+
47
+ "records": {
48
+ "type": "array",
49
+ "description": "A single data record from a NULISA assay.",
50
+ "items": {
51
+ "$ref": "assays/nulisa_assay.json#definitions/record"
52
+ },
53
+ "mergeStrategy": "append"
54
+ }
55
+ },
56
+ "required": [
57
+ "assay_creator",
58
+ "batch_id",
59
+ "npq_file",
60
+ "raw_counts_file",
61
+ "records"
62
+ ]
63
+ }
@@ -0,0 +1,88 @@
1
+ {
2
+ "title": "NULISA assay template",
3
+ "description": "NULISA submission.",
4
+ "prism_template_root_object_schema": "assays/nulisa_assay.json",
5
+ "prism_template_root_object_pointer": "/assays/nulisa/0",
6
+ "properties":
7
+ {
8
+ "worksheets":
9
+ {
10
+ "NULISA":
11
+ {
12
+ "preamble_rows":
13
+ {
14
+ "protocol identifier":
15
+ {
16
+ "merge_pointer": "3/protocol_identifier",
17
+ "type_ref": "clinical_trial.json#properties/protocol_identifier"
18
+ },
19
+ "assay creator":
20
+ {
21
+ "merge_pointer": "0/assay_creator",
22
+ "type_ref": "assays/scrnaseq_assay.json#properties/assay_creator"
23
+ },
24
+ "batch id": {
25
+ "merge_pointer": "0/batch_id",
26
+ "type_ref": "assays/scrnaseq_assay.json#properties/batch_id"
27
+ },
28
+ "npq file": {
29
+ "merge_pointer": "0/npq_file",
30
+ "gcs_uri_format": "{protocol identifier}/nulisa/{batch id}/npq_file.csv",
31
+ "is_artifact": 1,
32
+ "type_ref": "assays/components/local_file.json#properties/file_path"
33
+ },
34
+ "raw counts file": {
35
+ "merge_pointer": "0/raw_counts_file",
36
+ "gcs_uri_format": "{protocol identifier}/nulisa/{batch id}/raw_counts_file.csv",
37
+ "is_artifact": 1,
38
+ "type_ref": "assays/components/local_file.json#properties/file_path"
39
+ },
40
+ "metadata csv": {
41
+ "merge_pointer": "0/metadata_csv",
42
+ "gcs_uri_format": "{protocol identifier}/nulisa/{batch id}/metadata.csv",
43
+ "is_artifact": 1,
44
+ "type_ref": "assays/components/local_file.json#properties/file_path",
45
+ "allow_empty": true
46
+ }
47
+ },
48
+ "prism_data_object_pointer": "/records/-",
49
+ "data_columns":
50
+ {
51
+ "Samples":
52
+ {
53
+ "Cimac ID":
54
+ {
55
+ "merge_pointer": "0/cimac_id",
56
+ "type_ref": "sample.json#properties/cimac_id"
57
+ },
58
+ "IC Median": {
59
+ "merge_pointer": "0/details/ic_median",
60
+ "type": "number"
61
+ },
62
+ "Detectability": {
63
+ "merge_pointer": "0/details/detectability",
64
+ "type": "number",
65
+ "allow_empty": true
66
+ },
67
+ "IC Reads": {
68
+ "merge_pointer": "0/details/ic_reads",
69
+ "type": "integer"
70
+ },
71
+ "QC Status": {
72
+ "merge_pointer": "0/details/qc_status",
73
+ "type": "string"
74
+ },
75
+ "Reads": {
76
+ "merge_pointer": "0/details/reads",
77
+ "type": "integer"
78
+ },
79
+ "AUTO_WELLPOSITION": {
80
+ "merge_pointer": "0/details/auto_well_position",
81
+ "type": "string"
82
+ }
83
+ }
84
+ }
85
+ }
86
+ }
87
+ }
88
+ }
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: nci_cidc_schemas
3
- Version: 0.28.1
3
+ Version: 0.28.3
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
@@ -1,4 +1,4 @@
1
- cidc_schemas/__init__.py,sha256=4lhMRxh2IN3Z7QsxgbJxJiGSha0cwykVNIFIpM6JMCI,135
1
+ cidc_schemas/__init__.py,sha256=ZhhU8G6vhZDwCRTjZUSvsWDgfM9KmaaVdhcContfbVo,135
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
@@ -9,9 +9,26 @@ cidc_schemas/template_writer.py,sha256=Lk5hw05owoLLsGXimd2H8FSyqBZ2_HpC5wCWw-Xxm
9
9
  cidc_schemas/unprism.py,sha256=TOD3CSGkgNnTtT-OeCCE3Ihlam84lr8XGOmtdSy2lL8,13545
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=Z_ZBeaNmnc-AKW1dnuT8vFN6Re3YcKne6kjE00xvHds,867
13
+ cidc_schemas/ngs_pipeline_api/output_API.schema.json,sha256=jqEcIpBRDy6r9TPgnRMSRX_UyZ-5bSfST46B-6eo67c,1453
14
+ cidc_schemas/ngs_pipeline_api/atacseq/atacseq.md,sha256=AM6C54du9dTsn4mZP_j0Z_OOjoeQnAmFMiTSjV-vto4,3884
15
+ cidc_schemas/ngs_pipeline_api/atacseq/atacseq_output_API.json,sha256=23XiUq-G_w608yl6-IV3kiYveAGWe5UjHbGcGfqSmuM,2186
16
+ cidc_schemas/ngs_pipeline_api/atacseq/imgs/atacseq.png,sha256=MDIo5LyUjR_bT1mvJwNjXbGLGTU8hIyBvV9fzLw6Hpg,708487
17
+ cidc_schemas/ngs_pipeline_api/rna/rna.md,sha256=ihNx0GBzG4blLHWdOJcymxXlZCKeVWUBP-phJQRSylI,3221
18
+ cidc_schemas/ngs_pipeline_api/rna/rna_config.schema.json,sha256=yyn756y8WS8MJ2pR0xRg6wsiWR-BjYneOTfPcFXjS8k,691
19
+ cidc_schemas/ngs_pipeline_api/rna/rna_output_API.json,sha256=KPib4_Nzv_7lIflU1g-X4rNarz6Uy2OHSZBtfxKWJCs,9179
20
+ cidc_schemas/ngs_pipeline_api/rna/imgs/RIMA.png,sha256=0-0FCUj8xMTGUNkK2f7sPi0LvpPy3wk0mCT_glZ5F0A,1153150
21
+ cidc_schemas/ngs_pipeline_api/tcr/tcr.md,sha256=q0fCrSg4O0z_oiTZcP4Vkx_Ja5lx8afkfPKlK8SlqCM,4708
22
+ cidc_schemas/ngs_pipeline_api/tcr/imgs/TCRseq.png,sha256=62Ks2ccWqUgwVeJ1C3Mu-OUupUsJ_D4kOTHyWup-9gQ,160896
23
+ cidc_schemas/ngs_pipeline_api/wes/wes.md,sha256=UYiHYmccCrrtAdZoyqofTWzYc027EF2rHyRksZBroyI,3830
24
+ cidc_schemas/ngs_pipeline_api/wes/wes_config.schema.json,sha256=assQdV2ts4YPwPcKreQf12Kv1DbFhdG5Oals6li-Vz0,2530
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=osdqm1OVBhArItFCXpsVRLKnuTGtheCAk9QQQbl2n7c,31065
27
+ cidc_schemas/ngs_pipeline_api/wes/wes_tumor_only_output_API.json,sha256=BxRIHrhuL-eeCRpmOrkCPsTNLZPjDATA5G6PY9_TCXQ,12173
28
+ cidc_schemas/ngs_pipeline_api/wes/imgs/wes.png,sha256=QQPDqTUSOgaS6s0bLu2g2y_WQgVoujtwDTF9z5xZKCE,403116
12
29
  cidc_schemas/pipeline_configs/rna_level1_analysis_config.yaml.j2,sha256=6no9sFqwzb1T61RZGD-owDt2K5R8G_fPTzflV4fOroo,2832
13
30
  cidc_schemas/prism/__init__.py,sha256=J5Tj0X7Di6cyxAjaduOUp2aVyvl8UI67bgxEkgttvcU,530
14
- cidc_schemas/prism/constants.py,sha256=PevSn-geY8VTGMx1iXdUJ2LgoeuhEdKfIpZYk_LbzwI,4088
31
+ cidc_schemas/prism/constants.py,sha256=5Gr6xD_XrJpR7g6WC-twIEzaSnG7Oa1p09kDNWvDx5c,4124
15
32
  cidc_schemas/prism/core.py,sha256=tXDCCHurvcrxfU11meH3NRAVo9niklup0dpLRoIXwPk,20242
16
33
  cidc_schemas/prism/extra_metadata.py,sha256=2qs2PCvWRknZk56GrnRCjQ2hifAQz2YcJ8qXeMlG-Zg,8769
17
34
  cidc_schemas/prism/merger.py,sha256=36CKBPVoWecHuvGp3oT9a2d4jWIkvKuS_UofKTEpMYs,13065
@@ -82,6 +99,7 @@ cidc_schemas/schemas/assays/mif_assay.json,sha256=IG-s80kl8PUUi4U6FGmJbziG0nJf5O
82
99
  cidc_schemas/schemas/assays/mihc_assay.json,sha256=OgcklPvtUoCB-Gdvg4DF9fHFI15h9oalGW9lB4SL4xc,3104
83
100
  cidc_schemas/schemas/assays/misc_data.json,sha256=R6q-B8E-fIihlDNbe34gy7_aQeU1eIL9R_Yolg8SotU,2005
84
101
  cidc_schemas/schemas/assays/nanostring_assay.json,sha256=XAL6n80sxaAwUcNrx-pgA_YC5tyOlJrHOi8ID2vnFBo,2599
102
+ cidc_schemas/schemas/assays/nulisa_assay.json,sha256=CMiAr-TsqRB6R6UcfWjjMrilN9vAQNSBcnv-vo3gPfk,2004
85
103
  cidc_schemas/schemas/assays/olink_assay.json,sha256=kQrUPjDKLKYyWpXoauiNDa0FANxPH_1bOfHeQEY-qAQ,5193
86
104
  cidc_schemas/schemas/assays/rna_assay-v0.json,sha256=skNGXbVVDY-6RpPosTHweQYtLntvo0bAiXcOxVSeh1s,3043
87
105
  cidc_schemas/schemas/assays/rna_assay.json,sha256=Gh47rRWYJSUIoLK3vvOb8_kFXhlISScrtA7nWasoBZI,409
@@ -97,7 +115,7 @@ cidc_schemas/schemas/assays/wes_core.json,sha256=dwAe2Hi-K5G0rm_icSbFUEIhDNG7HkE
97
115
  cidc_schemas/schemas/assays/wes_tumor_only_analysis.json,sha256=dU3oaeBbPnEv2Xjym7ikWr5ywwolnVbWDu1Weq2m8Wg,2018
98
116
  cidc_schemas/schemas/assays/components/antibody.json,sha256=vfLxXkXIcaJ1BXeUjCaJehrRCdVrBW3gxibwrD7zzd4,960
99
117
  cidc_schemas/schemas/assays/components/assay_core.json,sha256=QGuLiArVb7lEF2t1Ml4Qt7g4SXY58WuGBPFVgvOLI5w,485
100
- cidc_schemas/schemas/assays/components/available_assays.json,sha256=5H637v-NAAO9_RRcLyE7LlTmTfdvyQen4lstAWZTcWs,4281
118
+ cidc_schemas/schemas/assays/components/available_assays.json,sha256=A6Spi-U_YsAknrrmKbOQuZQ0HRxWhP7oWpgLAaqSUuM,4528
101
119
  cidc_schemas/schemas/assays/components/available_ngs_analyses.json,sha256=Y_CL6A5hg4w57En9q1TsLH5ZBdlFeEpE6ggb3-dIIDk,1732
102
120
  cidc_schemas/schemas/assays/components/composite_image.json,sha256=k9EaBG3y9j-lvg3nQNZbfVpo9fK_gUz1-9iTwjlTDfE,733
103
121
  cidc_schemas/schemas/assays/components/controls.json,sha256=_Wxz7W2msTGJ2Ei4XZg0Qy1t8A5_rLSHNvdPurC073E,458
@@ -115,6 +133,7 @@ cidc_schemas/schemas/assays/components/mihc_input.json,sha256=KozUg3J_0PgQm3b5EE
115
133
  cidc_schemas/schemas/assays/components/multiple_local_files.json,sha256=VVG6Yvz9yEchgFO9FHQLm7nwM_BcPMjYIecWMnRKp00,480
116
134
  cidc_schemas/schemas/assays/components/ngs_assay_core.json,sha256=jqJbrnSPZV6pmJLM6J9YAxniwqGJ_pkTLak_m9zG3nY,1229
117
135
  cidc_schemas/schemas/assays/components/ngs_assay_record.json,sha256=DwHKyRNDQ6h8PUz0KdBfmcd0Pz1Q1rOeqWpKfUIwjZM,615
136
+ cidc_schemas/schemas/assays/components/nulisa_input.json,sha256=Wu_Vx2TfwBXSaB9e9ngA7FJpcqycxwaFeyxJzosYS54,1271
118
137
  cidc_schemas/schemas/assays/components/reads_core.json,sha256=p5RWN2TEGefenpz6pZlOG6MZ6tTAviKUx1bLCZtsNLk,1139
119
138
  cidc_schemas/schemas/assays/components/reads_with_index.json,sha256=pg3wMQYMawCb1ZxJwiH_yCH3TAYu29EIZnB18AevzmM,1091
120
139
  cidc_schemas/schemas/assays/components/scrnaseq_input.json,sha256=fIvV_xJPXDCoYajbsu21ISdhLaQVYjbPg_3nR_Jo7cE,1003
@@ -159,6 +178,7 @@ cidc_schemas/schemas/templates/assays/mif_template.json,sha256=ozyMdziNxtAReTL7g
159
178
  cidc_schemas/schemas/templates/assays/mihc_template.json,sha256=BvlRCTC3R6Z6QCzqR0sH_lKuSjsd-69HWhT236aAuQQ,10974
160
179
  cidc_schemas/schemas/templates/assays/misc_data_template.json,sha256=88GBWq7hrALrYmmgfqStrhocNtPWWYOMeUk9i8_uFRg,1896
161
180
  cidc_schemas/schemas/templates/assays/nanostring_template.json,sha256=XFbf72EHNspsOUD014WDYjMSmIEz4LpCaY3iP3im2KQ,3214
181
+ cidc_schemas/schemas/templates/assays/nulisa_template.json,sha256=usOvwb-6nCGv31vblQgnrv7bnsxZvRmxcHdtFF9sWY8,3749
162
182
  cidc_schemas/schemas/templates/assays/olink_template.json,sha256=3YqkeVF9PnXUeETkf0RfEB14jprNPMWWwY4GTALfuWY,6335
163
183
  cidc_schemas/schemas/templates/assays/rna_bam_template.json,sha256=l2OLgb8hx3fAupUvdWWtn_QbOiyicYE2u4diVz7C5cg,3084
164
184
  cidc_schemas/schemas/templates/assays/rna_fastq_template.json,sha256=ZSKfzQ38SkpeKTK-xT9YAz0tRafCjo-IUZsr8GBYLOM,3344
@@ -178,9 +198,9 @@ cidc_schemas/schemas/templates/manifests/tissue_slide_template.json,sha256=q2GmO
178
198
  cidc_schemas/schemas/templates/manifests/tumor_normal_pairing_template.json,sha256=lVJrGb28n-vyfjGBzhrzjn1lMKw1b4HXXmWtwA603v0,2797
179
199
  cidc_schemas/schemas/templates/manifests/tumor_tissue_dna_template.json,sha256=LpaoDXDS11NCa-Dv37N-tzEGomswQrx5fypkUcG7xJk,18956
180
200
  cidc_schemas/schemas/templates/manifests/tumor_tissue_rna_template.json,sha256=-gww6NCHbtbI5z7UmNSmKyPK3IqKCE8F6n4XwTAb_gk,18101
181
- nci_cidc_schemas-0.28.1.dist-info/licenses/LICENSE,sha256=zK77-w4rYCZBHAYJEGkcFuPXwKIsP7jMPZ2iQOXjzko,1072
182
- nci_cidc_schemas-0.28.1.dist-info/METADATA,sha256=IGxjB0w5Wqghr6x3I8yysZ50C6rtLwebgMnFSHjCt80,5008
183
- nci_cidc_schemas-0.28.1.dist-info/WHEEL,sha256=JNWh1Fm1UdwIQV075glCn4MVuCRs0sotJIq-J6rbxCU,109
184
- nci_cidc_schemas-0.28.1.dist-info/entry_points.txt,sha256=kSyTzXeJQrJp_2ZX0GS_NnbJR8ceQKLBSgER46PM0hs,55
185
- nci_cidc_schemas-0.28.1.dist-info/top_level.txt,sha256=Wwb5Cu7QrnbmSJxI2d00e3-Mir36t0jTRnSulmfhi30,13
186
- nci_cidc_schemas-0.28.1.dist-info/RECORD,,
201
+ nci_cidc_schemas-0.28.3.dist-info/licenses/LICENSE,sha256=zK77-w4rYCZBHAYJEGkcFuPXwKIsP7jMPZ2iQOXjzko,1072
202
+ nci_cidc_schemas-0.28.3.dist-info/METADATA,sha256=3GZ-RW1G6XvGLo2b3FQxSM_zIajyDBEUJSBCm4uBdDk,5008
203
+ nci_cidc_schemas-0.28.3.dist-info/WHEEL,sha256=JNWh1Fm1UdwIQV075glCn4MVuCRs0sotJIq-J6rbxCU,109
204
+ nci_cidc_schemas-0.28.3.dist-info/entry_points.txt,sha256=kSyTzXeJQrJp_2ZX0GS_NnbJR8ceQKLBSgER46PM0hs,55
205
+ nci_cidc_schemas-0.28.3.dist-info/top_level.txt,sha256=Wwb5Cu7QrnbmSJxI2d00e3-Mir36t0jTRnSulmfhi30,13
206
+ nci_cidc_schemas-0.28.3.dist-info/RECORD,,