Retrieve misc_RNA Components for a Gene Identifier

get

/ohfapi/cg/v3.3/genes/{id}/components/misc_RNA

This endpoint supports the retrieval of misc_RNA Components for a Gene Row ID passed. It returns all misc_RNA Component information like Gene Name, Ensembl Version, Transcript Identifier, Component Name, Component Identifier, Genomic Positions, Strand and other misc_RNA Component associated information. The 'Count' value displayed in the API represents the count of unique Gene Structure Identifiers

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

Gene misc_RNA component(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/components/misc_RNA

Example of Response Body

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

{
  "resourceType": "GeneComponents",
  "items": [
    {
      "identifier": {
        "system": "ODB",
        "value": "225759"
      },
      "geneName": "ENSG00000146648",
      "ensemblVersion": "GRCH37.75",
      "componentSource": {
        "componentType": [
          {
            "componentName": "misc_RNA",
            "componentId": 1193303,
            "genomicPosition": [
              {
                "chromosome": "7",
                "startPosition": 55086824,
                "endPosition": 55087058,
                "strand": "+",
                "numberInSequence": 1
              },
              {
                "chromosome": "7",
                "startPosition": 55111526,
                "endPosition": 55111742,
                "strand": "+",
                "numberInSequence": 2
              }
            ]
          }
        ]
      },
      "geneReference": {
        "reference": "/ohfapi/cg/v3.3/genes/50259"
      }
    },
    {
      "identifier": {
        "system": "ODB",
        "value": "225761"
      },
      "geneName": "ENSG00000146648",
      "ensemblVersion": "GRCH37.75",
      "componentSource": {
        "componentType": [
          {
            "componentName": "misc_RNA",
            "componentId": 1193305,
            "genomicPosition": [
              {
                "chromosome": "7",
                "startPosition": 55086844,
                "endPosition": 55087058,
                "strand": "+",
                "numberInSequence": 1
              },
              {
                "chromosome": "7",
                "startPosition": 55186749,
                "endPosition": 55187094,
                "strand": "+",
                "numberInSequence": 2
              }
            ]
          }
        ]
      },
      "geneReference": {
        "reference": "/ohfapi/cg/v3.3/genes/50259"
      }
    },
    {
      "identifier": {
        "system": "ODB",
        "value": "225771"
      },
      "geneName": "ENSG00000146648",
      "ensemblVersion": "GRCH37.75",
      "componentSource": {
        "componentType": [
          {
            "componentName": "misc_RNA",
            "componentId": 1193329,
            "genomicPosition": [
              {
                "chromosome": "7",
                "startPosition": 55260504,
                "endPosition": 55260534,
                "strand": "+",
                "numberInSequence": 1
              },
              {
                "chromosome": "7",
                "startPosition": 55266410,
                "endPosition": 55266556,
                "strand": "+",
                "numberInSequence": 2
              },
              {
                "chromosome": "7",
                "startPosition": 55268009,
                "endPosition": 55268495,
                "strand": "+",
                "numberInSequence": 3
              }
            ]
          }
        ]
      },
      "geneReference": {
        "reference": "/ohfapi/cg/v3.3/genes/50259"
      }
    }
  ],
  "count": 3,
  "hasMore": false,
  "links": [
    {
      "rel": "self",
      "href": "http://localhost:7010/ohfapi/cg/v3.3/genes/50259/components/misc_RNA"
    }
  ]
}
Back to Top