Example 1: Translate NC genomic coordinates into NM transcript coordinates:
curl {{ base_url }}{{ urls['hgvs_to_hgvsc'] }} -d "hgvsg=NC_000007.13:g.36561662C>T&ac=NM_001177507.1&ref=GRCh37.p10"
The JSON response is:
{
"hgvsc": "NM_001177507.1:c.1486C>T",
"hgvsp": "TBD",
"uta_version": "version is not working..."
}
Example 2: Returning the variant genomic coordinates from an NM:
curl {{ base_url}}{{ urls['hgvs_to_genomic_coords'] }} -d "hgvs=NM_001177507.1:c.1486C>T"
The JSON response is:
{
"chr_start": 36561662,
"chr_end": 36561662,
"chrom": "7",
"strand": "-",
"uta_version": "version is not working..."
}