Retrieve Variant Effects for a Variant Identifier

get

/HSDataService-web/api/3.2.0/variants/{id}/variantEffects

This endpoint supports the retrieval of Variant Effects by Variant Identifier. The returns Variant Effect information like HUGO Name, Transcript Identifier, Assembly/Alignment Name, Ensembl Version, Amino Acid Change and other Variant Effect associated information.

Request

Supported Media Types
  • application/json
  • application/xml
Path Parameters
id
Type: integer (int64)
Required: true
Variant Row ID

Response

Supported Media Types
  • application/json
  • application/xml
200 Response
successful operation
Body
Root Schema : VariantEffects
Type: object
Nested Schema : gene
Type: array
List of Genes
Nested Schema : Identifier
Type: object
Identifier assigned by a given system
Nested Schema : LinkedReference
Type: object
Nested Schema : VariantGene
Type: object
Nested Schema : variantEffect
Type: array
List of Variant Effects
Nested Schema : VariantEffect
Type: object
400 Response
Variant Id is not supplied
404 Response
Variant effect(s) not found

Examples

The following example submits a GET request.

API URL

http://localhost:7001/HSDataService-web/api/3.2.0/variants/7838/variantEffects

Example of Response Body

The following example shows the response returned in JSON format.

{
"resourceType" : "VariantEffects",
  "identifier" : {
    "system" : "ODB",
    "value" : "7838"
  },
  "gene" : [ {
    "hugoName" : "SAMD11",
    "variantEffect" : [ {
      "transcriptId" : "ENST00000341065",
      "assembly" : "GRCh37",
      "ensemblVersion" : "GRCH37.75",
      "netEffect" : "synonymous",
      "aminoAcidChange" : "p.(518=)"
    }, {
      "transcriptId" : "ENST00000342066",
      "assembly" : "GRCh37",
      "ensemblVersion" : "GRCH37.75",
      "netEffect" : "synonymous",
      "aminoAcidChange" : "p.(610=)"
    }, {
      "transcriptId" : "ENST00000455979",
      "assembly" : "GRCh37",
      "ensemblVersion" : "GRCH37.75",
      "netEffect" : "synonymous",
      "aminoAcidChange" : "p.(470=)"
    } ]
  } ],
  "variantReferences" : {
    "reference" : "/HSDataService-web/api/3.2.0/variants/7838"
  }
}