Retrieve Diseases for a Variant Identifier
get
/ohfapi/cg/v3.3/variants/{id}/diseases
This endpoint supports the retrieval of Disease for a Variant Identifier. It returns Disease information like Disease Name, Mutation Type, Variant Type, Feature, Confidence, Curation Source, Ensembl Version, Assembly/Alignment Name and other Disease associated information.
Request
Supported Media Types
- application/json
- application/xml
Path Parameters
-
id: integer(int64)
Variant Row ID
Query Parameters
-
limit(optional): integer(int32)
Number of rows to return
-
offset(optional): integer(int32)
Row number to start from
Security
-
basicAuth: basic
Type:
basic
Response
Supported Media Types
- application/json
- application/xml
200 Response
successful operation
Model for paginated collections of data.
Root Schema : PageableCollectionDisease
Type:
objectModel for paginated collections of data.
Show Source
-
count(optional):
integer(int64)
Number of objects in the 'items' collection.
-
hasMore(optional):
boolean
Default Value:
falseA boolean indicating if more pages are available. -
items(optional):
array items
A collection of paged items.
-
links(optional):
array link
A collection of links containing hrefs to the current, next, and previous pages as applicable.
-
resourceType(optional):
string
Identify the resource type
Nested Schema : link
Type:
arrayA collection of links containing hrefs to the current, next, and previous pages as applicable.
Show Source
Example:
{rel: 'next',href: '/patientapi/patients?limit=100&offset=300'}Nested Schema : Disease
Type:
Show Source
object-
assembly(optional):
string
Assembly NameAssembly/Alignment Name. For ex.,GRCh38
-
confidence(optional):
string
Confidence
-
curationSource(optional):
string
Curation Source
-
diseaseName(optional):
string
Disease Name
-
ensemblVersion(optional):
string
Ensembl Version. For ex.,GRCH37.75
-
feature(optional):
string
Feature
-
geneRef(optional):
object LinkedReference
-
mutationType(optional):
string
Mutation Type
-
variantReferences(optional):
object LinkedReference
-
variantType(optional):
string
Variant Type
400 Response
Invalid parameters supplied
404 Response
Variant disease(s) not found
Examples
The following example submits a GET request.
API URL
http://localhost:7010/ohfapi/cg/v3.3/variants/536777/diseases
Example of Request Body
The following example shows the response returned in JSON format.
{
"resourceType" : "DiseasesVariants",
"items" : [ {
"diseaseName" : "Zellweger syndrome",
"mutationType" : "M",
"variantType" : "DM",
"feature" : "Zellweger syndrome:233A>G",
"confidence" : "High",
"curationSource" : "BIOBASE",
"ensemblVersion" : "GRCH37.75",
"assembly" : "GRCh37",
"variantReferences" : {
"reference" : "/ohfapi/cg/v3.3/variants/536777"
}
} ],
"count" : 1,
"hasMore" : false,
"links" : [ {
"rel" : "self",
"href" : "http://localhost:7010/ohfapi/cg/v3.3/variants/536777/diseases"
} ]
}