Skip to content

Commit

Permalink
Merge pull request #4962 from leexgh/gn-api-model-0812
Browse files Browse the repository at this point in the history
Update Genome Nexus API client to include Alpha Missense
  • Loading branch information
onursumer authored Aug 12, 2024
2 parents dcae06d + 797e4d9 commit 29a5a89
Show file tree
Hide file tree
Showing 4 changed files with 66 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1348,6 +1348,18 @@
}
}
},
"AlphaMissense": {
"type": "object",
"properties": {
"pathogenicity": {
"type": "string"
},
"score": {
"type": "number",
"format": "double"
}
}
},
"ArticleAbstract": {
"type": "object",
"properties": {
Expand Down Expand Up @@ -3309,6 +3321,9 @@
"transcript_id"
],
"properties": {
"alphaMissense": {
"$ref": "#/definitions/AlphaMissense"
},
"amino_acids": {
"type": "string",
"description": "Amino acids"
Expand Down Expand Up @@ -3413,6 +3428,9 @@
"transcriptId"
],
"properties": {
"alphaMissense": {
"$ref": "#/definitions/AlphaMissense"
},
"aminoAcidAlt": {
"type": "string",
"description": "Alt Amino Acid"
Expand Down Expand Up @@ -3725,6 +3743,9 @@
"variant"
],
"properties": {
"alphaMissense": {
"$ref": "#/definitions/AlphaMissense"
},
"assemblyName": {
"type": "string",
"description": "Assembly name"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,12 @@ export type AlleleNumber = {
export type Alleles = {
'allele': string

};
export type AlphaMissense = {
'pathogenicity': string

'score': number

};
export type ArticleAbstract = {
'abstract': string
Expand Down Expand Up @@ -840,7 +846,9 @@ export type StatsByTumorType = {

};
export type TranscriptConsequence = {
'amino_acids': string
'alphaMissense': AlphaMissense

'amino_acids': string

'canonical': string

Expand Down Expand Up @@ -886,7 +894,9 @@ export type TranscriptConsequence = {

};
export type TranscriptConsequenceSummary = {
'aminoAcidAlt': string
'alphaMissense': AlphaMissense

'aminoAcidAlt': string

'aminoAcidRef': string

Expand Down Expand Up @@ -1026,7 +1036,9 @@ export type VariantAnnotation = {

};
export type VariantAnnotationSummary = {
'assemblyName': string
'alphaMissense': AlphaMissense

'assemblyName': string

'canonicalTranscriptId': string

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1104,6 +1104,18 @@
}
}
},
"AlphaMissense": {
"type": "object",
"properties": {
"pathogenicity": {
"type": "string"
},
"score": {
"type": "number",
"format": "double"
}
}
},
"Cosmic": {
"type": "object",
"properties": {
Expand Down Expand Up @@ -2211,6 +2223,9 @@
"transcriptId"
],
"properties": {
"alphaMissense": {
"$ref": "#/definitions/AlphaMissense"
},
"aminoAcidAlt": {
"type": "string",
"description": "Alt Amino Acid"
Expand Down Expand Up @@ -2306,6 +2321,9 @@
"variant"
],
"properties": {
"alphaMissense": {
"$ref": "#/definitions/AlphaMissense"
},
"assemblyName": {
"type": "string",
"description": "Assembly name"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,12 @@ export type AlleleNumber = {
export type Alleles = {
'allele': string

};
export type AlphaMissense = {
'pathogenicity': string

'score': number

};
export type Cosmic = {
'alt': string
Expand Down Expand Up @@ -542,7 +548,9 @@ export type StatsByTumorType = {

};
export type TranscriptConsequenceSummary = {
'aminoAcidAlt': string
'alphaMissense': AlphaMissense

'aminoAcidAlt': string

'aminoAcidRef': string

Expand Down Expand Up @@ -586,7 +594,9 @@ export type TranscriptConsequenceSummary = {

};
export type VariantAnnotationSummary = {
'assemblyName': string
'alphaMissense': AlphaMissense

'assemblyName': string

'canonicalTranscriptId': string

Expand Down

0 comments on commit 29a5a89

Please sign in to comment.