Coding Variants Phenotypes Count
curl --request GET \
--url https://catalog-api-dev.demo.igvf.org/api/coding-variants/phenotypes-countimport requests
url = "https://catalog-api-dev.demo.igvf.org/api/coding-variants/phenotypes-count"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://catalog-api-dev.demo.igvf.org/api/coding-variants/phenotypes-count', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));[
{
"method": "<string>",
"count": 123
}
]{
"message": "<string>",
"code": "<string>",
"issues": [
{
"message": "<string>"
}
]
}API Reference
Coding Variants Phenotypes Count
Retrieve counts of coding variants associated with phenotypes.
Example: gene_id = ENSG00000165841,
files_fileset = IGVFFI6893ZOAA.
Coding Variants Phenotypes Count
curl --request GET \
--url https://catalog-api-dev.demo.igvf.org/api/coding-variants/phenotypes-countimport requests
url = "https://catalog-api-dev.demo.igvf.org/api/coding-variants/phenotypes-count"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://catalog-api-dev.demo.igvf.org/api/coding-variants/phenotypes-count', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));[
{
"method": "<string>",
"count": 123
}
]{
"message": "<string>",
"code": "<string>",
"issues": [
{
"message": "<string>"
}
]
}