Skip to content

Commit

Permalink
fix: display SV gnomAD genomes counts, not exomes (#1424)
Browse files Browse the repository at this point in the history
  • Loading branch information
holtgrewe authored Mar 7, 2024
1 parent c53a830 commit f87b46e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions svs/models/jobs.py
Original file line number Diff line number Diff line change
Expand Up @@ -417,6 +417,7 @@ def _inner(tmpdir):
settings.WORKER_EXE_PATH,
"strucvars",
"query",
"-vv",
"--path-db",
settings.WORKER_DB_PATH,
"--path-query-json",
Expand Down
2 changes: 1 addition & 1 deletion svs/vueapp/src/components/SvFilterResultsTable.vue
Original file line number Diff line number Diff line change
Expand Up @@ -694,7 +694,7 @@ watch(
</template>
<template #item-payload.overlap_counts.gnomad_genomes="{ payload }">
<div class="text-right text-nowrap space">
{{ formatLargeInt(payload.overlap_counts.gnomad_exomes) }}
{{ formatLargeInt(payload.overlap_counts.gnomad_genomes) }}
</div>
</template>
<template #item-payload.overlap_counts.dgv="{ payload }">
Expand Down

0 comments on commit f87b46e

Please sign in to comment.