Retrieve Genomic Positions for a Gene Identifier

get

/ohfapi/cg/v3.3/genes/{id}/genomicPositions

This endpoint supports the retrieval of Genomic Positions for a single Gene Row ID passed. It returns Genomic Position information like Genomic Position, HUGO Name, Ensembl Name and other Genomic Position associated information.

Request

Supported Media Types
Path Parameters
Query Parameters
Security
Back to Top

Response

Supported Media Types

200 Response

successful operation
Body ()
Root Schema : PageableCollection
Type: object
Model for paginated collections of data.
Show Source
Nested Schema : items
Type: array
A collection of paged items.
Show Source
Nested Schema : Serializable
Type: object

400 Response

Invalid parameters supplied

404 Response

Genomic position(s) not found
Back to Top

Examples

The following example submits a GET request.

API URL

http://localhost:7010/ohfapi/cg/v3.3/genes/50259/genomicPositions

Example of Response Body

The following example shows the contents of the response body in JSON format:

{
  "resourceType": "GenomicPositions",
  "items": [
    {
      "identifier": {
        "system": "ODB",
        "value": "51649"
      },
      "genomicPosition": {
        "chromosome": "7",
        "startPosition": 55086714,
        "endPosition": 55324313,
        "strand": "+",
        "dnaReferenceVersion": "GRCH37.75"
      },
      "geneReference": {
        "reference": "/ohfapi/cg/v3.3/genes/50259",
        "display": "EGFR"
      },
      "hugoName": "EGFR",
      "assembly": "GRCh37"
    }
  ],
  "count": 1,
  "hasMore": false,
  "links": [
    {
      "rel": "self",
      "href": "http://localhost:7010/ohfapi/cg/v3.3/genes/50259/genomicPositions"
    }
  ]
}
Back to Top