Retrieve Genomic Assembly Reference Versions for Assembly Identifiers
get
/HSDataService-web/api/3.2.0/genomeAssemblyRefVersions
This endpoint supports the retrieval of Genomic Assembly Reference Versions for multiple Assembly/Alignment Identifiers. It returns Genomic Assembly Reference Version information like Version Identifiers, Version Name and other associated information.
Request
Supported Media Types
- application/json
- application/xml
Query Parameters
- id
-
Type:
arrayRequired:trueCollection Format:multiMinimum Number of Items:0Maximum Number of Items:2147483647List of Assembly/Alignment Identifier-
Type:
integer(int64)
- 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 : PageableCollectionDNARefVersion
Type:
objectModel for paginated collections of data.
- count
-
Type:
integer(int64)Number of objects in the 'items' collection. - hasMore
-
Type:
booleanDefault Value:falseA boolean indicating if more pages are available. - items
-
Type:
arrayitemsA collection of paged items. - links
-
Type:
arraylinksA collection of links containing hrefs to the current, next, and previous pages as applicable. - resourceType
-
Type:
stringIdentify the resource type
Nested Schema : items
Nested Schema : links
Nested Schema : DNARefVersion
Type:
object- chromosome
-
Type:
arraychromosomeList of Chromosome Genomic Positions - ensemblVersion
-
Type:
stringEnsembl Version. For ex.,GRCH37.75 - identifier
-
Type:
objectIdentifierIdentifier assigned by a given system - isPreferred
-
Type:
string - versionWID
-
Type:
integer(int64)
Nested Schema : chromosome
Nested Schema : Identifier
Type:
objectIdentifier assigned by a given system
- system
-
Type:
stringSystem which assigned this identifier - value
-
Type:
stringIdentifier value
Nested Schema : GenomicPosition
Type:
object- chromosome
-
Type:
stringChromosome Name. For ex.,'Y' - chromosomeId
-
Type:
string - chromosomeName
-
Type:
stringChromosome Name. For ex.,'Y' - dateOfLoading
-
Type:
string(date-time)Insert Date - dnaReferenceVersion
-
Type:
stringVersion 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:
stringStrand Value
400 Response
Invalid parameters supplied
404 Response
genomeAssembly ensemblVersions not found
Examples
The following example shows how to view the genomic assembly reference versions for multiple assembly or alignment identifiers by submitting a GET request.
API URL
http://localhost:7001/HSDataService-web/api/3.2.0/genomeAssemblyRefVersions?id=1&id=2&limit=10&offset=0
Example of Response Body
The following example shows the response returned in JSON format.
{
"resourceType": "EnsemblVersions",
"items": [
{
"identifier": {
"system": "ODB",
"value": "2"
},
"ensemblVersion": "GRCH37.75"
},
{
"identifier": {
"system": "ODB",
"value": "21"
},
"ensemblVersion": "GRCH37.70"
}
],
"count": 2,
"hasMore": false,
"links": [
{
"rel": "self",
"href": "http://localhost:7001/HSDataService-web/api/3.2.0/genomeAssemblyRefVersions?id=1&id=2&limit=10&offset=0"
}
]
}