Skip to content

Commit

Permalink
fix: variantvalidator query doesnt work (#234) (#235)
Browse files Browse the repository at this point in the history
  • Loading branch information
stolpeo authored Aug 1, 2024
1 parent 2b47962 commit 9e27292
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/api/variantValidator/client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export class VariantValidatorClient {
const release = genomeBuild === 'grch37' ? 'hg19' : 'hg38'
const url =
`${this.apiBaseUrl}/${release}/` +
`${chrom}-${pos}-${del}-${ins}/mane/?content-type=application%2Fjson`
`${chrom}-${pos}-${del}-${ins}/mane?content-type=application%2Fjson`

const response = await fetch(url, { method: 'GET' })
if (!response.ok) {
Expand Down

0 comments on commit 9e27292

Please sign in to comment.