Skip to content

Commit

Permalink
Rename ortholog phenotype checkbox (#627)
Browse files Browse the repository at this point in the history
Removes option to traverse orthologs for disease associations, since
there's no path to get to it right now. Updates label to be ortholog
phenotypes to match naming in V2 ui.

---------

Co-authored-by: glass-ships <[email protected]>
  • Loading branch information
kevinschaper and glass-ships authored Mar 6, 2024
1 parent fa11d5f commit 20fa0c4
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions frontend/src/pages/node/SectionAssociations.vue
Original file line number Diff line number Diff line change
Expand Up @@ -26,18 +26,14 @@
<AppFlex gap="small">
<AppCheckbox
v-if="
(node.category === 'biolink:Gene' &&
category?.id.startsWith('biolink:GeneToPheno')) ||
(node.category === 'biolink:Gene' &&
category?.id.startsWith('biolink:CausalGeneToDisease')) ||
(node.category === 'biolink:Gene' &&
category?.id.startsWith('biolink:CorrelatedGeneToDisease'))
node.category === 'biolink:Gene' &&
category?.id.startsWith('biolink:GeneToPheno')
"
v-model="includeOrthologs"
v-tooltip="
'Include phenotypes for orthologous genes in the associations table'
"
text="Include orthologous genes"
text="Include ortholog phenotypes"
/>
<AppButton
v-if="
Expand Down

0 comments on commit 20fa0c4

Please sign in to comment.