Retrieve Genomic Assemblies

get

/HSDataService-web/api/3.2.0/genomeAssemblies

This endpoint supports the retrieval of Genomic Assemblies loaded in Oracle Healthcare Omics. It returns Genomic Assembly information like Assembly Identifier and Name.

Request

Supported Media Types
  • application/json
  • application/xml
Query Parameters
limit
Type: integer (int32)
Number of rows to return
offset
Type: integer (int32)
Row number to start from

Response

Supported Media Types
  • application/json
  • application/xml
200 Response
successful operation
Body
Model for paginated collections of data.
Root Schema : PageableCollectionGenomicAssembly
Type: object
Model for paginated collections of data.
Nested Schema : items
Type: array
A collection of paged items.
Nested Schema : GenomicAssembly
Type: object
Nested Schema : ensemblVersion
Type: array
List of Ensembl Versions
Nested Schema : Identifier
Type: object
Identifier assigned by a given system
Nested Schema : PAR
Type: array
List of Chromosome Details
Nested Schema : DNARefVersion
Type: object
Nested Schema : chromosome
Type: array
List of Chromosome Genomic Positions
Nested Schema : GenomicPosition
Type: object
Nested Schema : AssemblyPar
Type: object
400 Response
Invalid parameters supplied
404 Response
genomeAssemblies not found

Examples

The following example shows how to view the genomic assemblies Genomic Assemblies loaded in Oracle Healthcare Omics by submitting a GET request.

API URL

http://localhost:7001/HSDataService-web/api/3.2.0/genomeAssemblies

Example of Response Body

The following example shows the response returned in JSON format.

{
  "resourceType": "GenomeAssembly",
  "items": [
    {
      "identifier": {
        "system": "ODB",
        "value": "1"
      },
      "assembly": "GRCh37"
    }
  ],
  "count": 1,
  "hasMore": false,
  "links": [
    {
      "rel": "self",
      "href": "http://localhost:7001/HSDataService-web/api/3.2.0/genomeAssemblies"
    }
  ]
}