Variants Predictions Count
curl --request GET \
--url https://catalog-api-dev.demo.igvf.org/api/variants/predictions-countimport requests
url = "https://catalog-api-dev.demo.igvf.org/api/variants/predictions-count"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://catalog-api-dev.demo.igvf.org/api/variants/predictions-count', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"message": "<string>",
"code": "<string>",
"issues": [
{
"message": "<string>"
}
]
}API Reference
Variants Predictions Count
Retrieve counts of element gene predictions and cell types associated with a given variant.
At least one of these fields is required: variant_id, spdi, hgvs, rsid, ca_id, or files_filesets.
Example: variant_id = NC_000001.11:1628997:GGG:GG,
hgvs = NC_000001.11:g.1629000del,
spdi = NC_000001.11:1628997:GGG:GG,
ca_id = CA1522823495,
files_fileset = ENCFF705MLV.
Variants Predictions Count
curl --request GET \
--url https://catalog-api-dev.demo.igvf.org/api/variants/predictions-countimport requests
url = "https://catalog-api-dev.demo.igvf.org/api/variants/predictions-count"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://catalog-api-dev.demo.igvf.org/api/variants/predictions-count', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"message": "<string>",
"code": "<string>",
"issues": [
{
"message": "<string>"
}
]
}