Skip to content

Commit

Permalink
[Platform]: finemapping confidence tooltip (#556)
Browse files Browse the repository at this point in the history
  • Loading branch information
d0choa authored Nov 25, 2024
1 parent a9f0a80 commit f1369c9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions packages/sections/src/evidence/GWASCredibleSets/Body.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,7 @@ function getColumns() {
id: "confidence",
label: "Fine-mapping confidence",
sortable: true,
tooltip: "Fine-mapping confidence based on the quality of the linkage-desequilibrium information available and fine-mapping method",
renderCell: ({ credibleSet }) => {
if (!credibleSet?.confidence) return naLabel;
return (
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 @@ -162,6 +162,7 @@ function getColumns({ id, referenceAllele, alternateAllele }: getColumnsType) {
{
id: "confidence",
label: "Fine-mapping confidence",
tooltip: "Fine-mapping confidence based on the suitability of the linkage-desequilibrium information and fine-mapping method",
sortable: true,
renderCell: ({ confidence }) => {
if (!confidence) return naLabel;
Expand Down
1 change: 1 addition & 0 deletions packages/sections/src/variant/QTLCredibleSets/Body.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -173,6 +173,7 @@ function getColumns({ id, referenceAllele, alternateAllele }: getColumnsType) {
{
id: "confidence",
label: "Fine-mapping confidence",
tooltip: "Fine-mapping confidence based on the quality of the linkage-desequilibrium information available and fine-mapping method",
sortable: true,
renderCell: ({ confidence }) => {
if (!confidence) return naLabel;
Expand Down

0 comments on commit f1369c9

Please sign in to comment.