Skip to content

Commit

Permalink
[Platform]: add/harmonise l2g score tooltips (#581)
Browse files Browse the repository at this point in the history
  • Loading branch information
gjmcn authored Dec 2, 2024
1 parent 767e009 commit a0de3da
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
3 changes: 1 addition & 2 deletions packages/sections/src/credibleSet/Locus2Gene/Body.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,7 @@ const columns = [
id: "score",
label: "L2G score",
sortable: true,
tooltip:
"Overall evidence linking a gene to this credible set using all features. Score range [0,1]",
tooltip: "Machine learning prediction linking a gene to a credible set using all features. Score range [0,1].",
renderCell: ({ score }) => {
if (!score) return naLabel;
return (
Expand Down
1 change: 1 addition & 0 deletions packages/sections/src/study/GWASCredibleSets/Body.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,7 @@ const columns = [
label: "L2G score",
comparator: (rowA, rowB) => rowA?.l2Gpredictions[0]?.score - rowB?.l2Gpredictions[0]?.score,
sortable: true,
tooltip: "Machine learning prediction linking a gene to a credible set using all features. Score range [0,1].",
renderCell: ({ l2Gpredictions }) => {
const score = l2Gpredictions?.[0]?.score;
if (typeof score !== "number") return naLabel;
Expand Down
1 change: 1 addition & 0 deletions packages/sections/src/variant/GWASCredibleSets/Body.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -196,6 +196,7 @@ function getColumns({ id, referenceAllele, alternateAllele }: getColumnsType) {
label: "L2G score",
comparator: (rowA, rowB) => rowA?.l2Gpredictions[0]?.score - rowB?.l2Gpredictions[0]?.score,
sortable: true,
tooltip: "Machine learning prediction linking a gene to a credible set using all features. Score range [0,1].",
renderCell: ({ l2Gpredictions }) => {
if (!l2Gpredictions[0]?.score) return naLabel;
return (
Expand Down

0 comments on commit a0de3da

Please sign in to comment.