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.
- count
-
Type:
integer
(int64
)Number of objects in the 'items' collection. - hasMore
-
Type:
boolean
Default Value:false
A boolean indicating if more pages are available. - items
-
Type:
array
itemsA collection of paged items. - links
-
Type:
array
linksA collection of links containing hrefs to the current, next, and previous pages as applicable. - resourceType
-
Type:
string
Identify the resource type
Nested Schema : items
Nested Schema : links
Nested Schema : GenomicAssembly
Type:
object
- assembly
-
Type:
string
Assembly/Alignment Name. For ex.,GRCh38 - assemblyAlias
-
Type:
string
Alias Name - ensemblVersion
-
Type:
array
ensemblVersionList of Ensembl Versions - identifier
-
Type:
object
IdentifierIdentifier assigned by a given system - PAR
-
Type:
array
PARList of Chromosome Details - species
-
Type:
string
Scientific Species Name
Nested Schema : ensemblVersion
Nested Schema : Identifier
Type:
object
Identifier assigned by a given system
- system
-
Type:
string
System which assigned this identifier - value
-
Type:
string
Identifier value
Nested Schema : PAR
Nested Schema : DNARefVersion
Type:
object
- chromosome
-
Type:
array
chromosomeList of Chromosome Genomic Positions - ensemblVersion
-
Type:
string
Ensembl Version. For ex.,GRCH37.75 - identifier
-
Type:
object
IdentifierIdentifier assigned by a given system - isPreferred
-
Type:
string
- versionWID
-
Type:
integer
(int64
)
Nested Schema : chromosome
Nested Schema : GenomicPosition
Type:
object
- chromosome
-
Type:
string
Chromosome Name. For ex.,'Y' - chromosomeId
-
Type:
string
- chromosomeName
-
Type:
string
Chromosome Name. For ex.,'Y' - dateOfLoading
-
Type:
string
(date-time
)Insert Date - dnaReferenceVersion
-
Type:
string
Version Label. For ex.,SIFT_VER2_75 - endPosition
-
Type:
integer
(int64
)End location of sequence - ensemblReleaseDate
-
Type:
string
(date-time
)Date that this sequence source is released to be used to add versions of the same data - numberInSequence
-
Type:
integer
(int64
)Ordering of each Segment of the Component - position
-
Type:
integer
(int64
) - startPosition
-
Type:
integer
(int64
)Start location of sequence - strand
-
Type:
string
Strand Value
Nested Schema : AssemblyPar
Type:
object
- chromosome
-
Type:
string
Chromosome Name. For ex.,'Y' - endPosition
-
Type:
integer
(int64
)End location of sequence - startPosition
-
Type:
integer
(int64
)Start location of sequence
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" } ] }