Variants Phenotypes Score Summary
curl --request GET \
--url https://catalog-api-dev.demo.igvf.org/api/variants/phenotypes/score-summaryimport requests
url = "https://catalog-api-dev.demo.igvf.org/api/variants/phenotypes/score-summary"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://catalog-api-dev.demo.igvf.org/api/variants/phenotypes/score-summary', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));[
{
"dataType": "<string>",
"score": 123,
"portalLink": "<string>",
"variant_id": "<string>",
"hgvsp": "<string>",
"gene_name": "<string>",
"transcript_id": "<string>"
}
]{
"message": "<string>",
"code": "<string>",
"issues": [
{
"message": "<string>"
}
]
}API Reference
Variants Phenotypes Score Summary
DEPRECATED. Please use coding-variants/phenotypes/summary.
Retrieve scores of variants associated with phenotypes. Via coding variants edges.
Either variant_id or coding_variant_name are required.
Example: variant_id = NC_000018.10:31546002:CA:GT,
coding_variant_name = DSG2_ENST00000261590_p.Gln873Val_c.2617_2618delinsGT,
files_fileset = IGVFFI6893ZOAA.
Variants Phenotypes Score Summary
curl --request GET \
--url https://catalog-api-dev.demo.igvf.org/api/variants/phenotypes/score-summaryimport requests
url = "https://catalog-api-dev.demo.igvf.org/api/variants/phenotypes/score-summary"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://catalog-api-dev.demo.igvf.org/api/variants/phenotypes/score-summary', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));[
{
"dataType": "<string>",
"score": 123,
"portalLink": "<string>",
"variant_id": "<string>",
"hgvsp": "<string>",
"gene_name": "<string>",
"transcript_id": "<string>"
}
]{
"message": "<string>",
"code": "<string>",
"issues": [
{
"message": "<string>"
}
]
}