Skip to content

Commit

Permalink
quick fix for indefinitely loading genes (#790)
Browse files Browse the repository at this point in the history
  • Loading branch information
moriondo2022 authored Nov 20, 2024
1 parent 3db5215 commit ade8027
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/views/PIGEAN/Gene/store.js
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,8 @@ export default new Vuex.Store({
if (!!name) {
context.dispatch("gene/query", { q: name });
context.dispatch("pigeanGene/query", { q:
`${traitGroup},${name},${bioIndexUtils.DEFAULT_SIGMA},${genesetSize}` });
`${traitGroup},${name},${bioIndexUtils.DEFAULT_SIGMA},${genesetSize}`,
limit: 1000 });
}
},
async getPigeanPhenotypes(context) {
Expand Down

0 comments on commit ade8027

Please sign in to comment.