File tree Expand file tree Collapse file tree 4 files changed +66
-5
lines changed
packages/genome-nexus-ts-api-client/src/generated Expand file tree Collapse file tree 4 files changed +66
-5
lines changed Original file line number Diff line number Diff line change 1348
1348
}
1349
1349
}
1350
1350
},
1351
+ "AlphaMissense" : {
1352
+ "type" : " object" ,
1353
+ "properties" : {
1354
+ "pathogenicity" : {
1355
+ "type" : " string"
1356
+ },
1357
+ "score" : {
1358
+ "type" : " number" ,
1359
+ "format" : " double"
1360
+ }
1361
+ }
1362
+ },
1351
1363
"ArticleAbstract" : {
1352
1364
"type" : " object" ,
1353
1365
"properties" : {
3309
3321
" transcript_id"
3310
3322
],
3311
3323
"properties" : {
3324
+ "alphaMissense" : {
3325
+ "$ref" : " #/definitions/AlphaMissense"
3326
+ },
3312
3327
"amino_acids" : {
3313
3328
"type" : " string" ,
3314
3329
"description" : " Amino acids"
3413
3428
" transcriptId"
3414
3429
],
3415
3430
"properties" : {
3431
+ "alphaMissense" : {
3432
+ "$ref" : " #/definitions/AlphaMissense"
3433
+ },
3416
3434
"aminoAcidAlt" : {
3417
3435
"type" : " string" ,
3418
3436
"description" : " Alt Amino Acid"
3725
3743
" variant"
3726
3744
],
3727
3745
"properties" : {
3746
+ "alphaMissense" : {
3747
+ "$ref" : " #/definitions/AlphaMissense"
3748
+ },
3728
3749
"assemblyName" : {
3729
3750
"type" : " string" ,
3730
3751
"description" : " Assembly name"
Original file line number Diff line number Diff line change @@ -72,6 +72,12 @@ export type AlleleNumber = {
72
72
export type Alleles = {
73
73
'allele' : string
74
74
75
+ } ;
76
+ export type AlphaMissense = {
77
+ 'pathogenicity' : string
78
+
79
+ 'score' : number
80
+
75
81
} ;
76
82
export type ArticleAbstract = {
77
83
'abstract' : string
@@ -840,7 +846,9 @@ export type StatsByTumorType = {
840
846
841
847
} ;
842
848
export type TranscriptConsequence = {
843
- 'amino_acids' : string
849
+ 'alphaMissense' : AlphaMissense
850
+
851
+ 'amino_acids' : string
844
852
845
853
'canonical' : string
846
854
@@ -886,7 +894,9 @@ export type TranscriptConsequence = {
886
894
887
895
} ;
888
896
export type TranscriptConsequenceSummary = {
889
- 'aminoAcidAlt' : string
897
+ 'alphaMissense' : AlphaMissense
898
+
899
+ 'aminoAcidAlt' : string
890
900
891
901
'aminoAcidRef' : string
892
902
@@ -1026,7 +1036,9 @@ export type VariantAnnotation = {
1026
1036
1027
1037
} ;
1028
1038
export type VariantAnnotationSummary = {
1029
- 'assemblyName' : string
1039
+ 'alphaMissense' : AlphaMissense
1040
+
1041
+ 'assemblyName' : string
1030
1042
1031
1043
'canonicalTranscriptId' : string
1032
1044
Original file line number Diff line number Diff line change 1104
1104
}
1105
1105
}
1106
1106
},
1107
+ "AlphaMissense" : {
1108
+ "type" : " object" ,
1109
+ "properties" : {
1110
+ "pathogenicity" : {
1111
+ "type" : " string"
1112
+ },
1113
+ "score" : {
1114
+ "type" : " number" ,
1115
+ "format" : " double"
1116
+ }
1117
+ }
1118
+ },
1107
1119
"Cosmic" : {
1108
1120
"type" : " object" ,
1109
1121
"properties" : {
2211
2223
" transcriptId"
2212
2224
],
2213
2225
"properties" : {
2226
+ "alphaMissense" : {
2227
+ "$ref" : " #/definitions/AlphaMissense"
2228
+ },
2214
2229
"aminoAcidAlt" : {
2215
2230
"type" : " string" ,
2216
2231
"description" : " Alt Amino Acid"
2306
2321
" variant"
2307
2322
],
2308
2323
"properties" : {
2324
+ "alphaMissense" : {
2325
+ "$ref" : " #/definitions/AlphaMissense"
2326
+ },
2309
2327
"assemblyName" : {
2310
2328
"type" : " string" ,
2311
2329
"description" : " Assembly name"
Original file line number Diff line number Diff line change @@ -76,6 +76,12 @@ export type AlleleNumber = {
76
76
export type Alleles = {
77
77
'allele' : string
78
78
79
+ } ;
80
+ export type AlphaMissense = {
81
+ 'pathogenicity' : string
82
+
83
+ 'score' : number
84
+
79
85
} ;
80
86
export type Cosmic = {
81
87
'alt' : string
@@ -542,7 +548,9 @@ export type StatsByTumorType = {
542
548
543
549
} ;
544
550
export type TranscriptConsequenceSummary = {
545
- 'aminoAcidAlt' : string
551
+ 'alphaMissense' : AlphaMissense
552
+
553
+ 'aminoAcidAlt' : string
546
554
547
555
'aminoAcidRef' : string
548
556
@@ -586,7 +594,9 @@ export type TranscriptConsequenceSummary = {
586
594
587
595
} ;
588
596
export type VariantAnnotationSummary = {
589
- 'assemblyName' : string
597
+ 'alphaMissense' : AlphaMissense
598
+
599
+ 'assemblyName' : string
590
600
591
601
'canonicalTranscriptId' : string
592
602
You can’t perform that action at this time.
0 commit comments