Retrieve Variant Cancers for a Variant Identifier

get

/ohfapi/cg/v3.3/variants/{id}/cancer

This endpoint supports the retrieval of Variant Cancers for a Variant Identifier. It retuns Variant Cancer information like HUGO Name, Transcript Identifier, Assembly/Alignment Name, Ensembl Version, Amino Acid Change and other Variant Cancer associated information.

Request

Supported Media Types
Path Parameters
Security
Back to Top

Response

Supported Media Types

200 Response

successful operation
Body ()
Root Schema : VariantCancers
Type: object
Show Source
Nested Schema : cancerVariant
Type: array
List of Variant Cancers
Show Source
Nested Schema : Identifier
Type: object
Identifier assigned by a given system
Show Source
Nested Schema : LinkedReference
Type: object
Show Source
Nested Schema : VariantCancer
Type: object
Show Source

400 Response

Variant Id is not supplied
Back to Top

Examples

The following example submits a GET request.

API URL

http://localhost:7010/ohfapi/cg/v3.3/variants/7678/cancer

Example of Response Body

The following example shows the response returned in JSON format.

{
  "resourceType" : "CancerVariants",
  "identifier" : {
    "system" : "ODB",
    "value" : "7678"
  },
  "cancerVariant" : [ {
    "primaryHistology" : "carcinoma",
    "histologySubtype" : "adenocarcinoma",
    "siteSubType" : "large_intestine",
    "anatomicalSubtype" : "colon",
    "hugoName" : "SAMD11",
    "accession" : "ENST00000342066",
    "hgncId" : "28706",
    "mutationSomaticStatus" : "Variant of unknown origin",
    "referenceID" : "COSM1344644",
    "zygosity" : "het",
    "gwScreen" : "y",
    "coding" : "Y",
    "curationSource" : "COSMIC",
    "version" : "COSMIC.V67",
    "assembly" : "GRCh37"
  }, {
    "primaryHistology" : "carcinoma",
    "histologySubtype" : "NS",
    "siteSubType" : "liver",
    "anatomicalSubtype" : "NS",
    "hugoName" : "SAMD11",
    "accession" : "ENST00000342066",
    "hgncId" : "28706",
    "mutationSomaticStatus" : "Variant of unknown origin",
    "referenceID" : "COSM1344644",
    "zygosity" : "het",
    "gwScreen" : "y",
    "coding" : "Y",
    "curationSource" : "COSMIC",
    "version" : "COSMIC.V67",
    "assembly" : "GRCh37"
  } ],
  "variantReferences" : {
    "reference" : "/ohfapi/cg/v3.3/variants/7678"
  }
}
Back to Top