Skip to content

Commit

Permalink
[Platform]: logbf column explanation (#569)
Browse files Browse the repository at this point in the history
  • Loading branch information
d0choa authored Nov 27, 2024
1 parent df55d8b commit 8fc10b7
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/sections/src/credibleSet/Variants/Body.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -130,8 +130,10 @@ function getColumns({ leadVariantId, leadReferenceAllele, leadAlternateAllele }:
},
{
id: "logBF",
label: "log(Bayes Factor)",
label: "log(BF)",
tooltip: "Natural logarithm of the Bayes Factor indicating relative likelihood of the variant being causal",
filterValue: false,
sortable: true,
renderCell: ({ logBF }) => {
if (typeof logBF !== "number") return naLabel;
return logBF.toPrecision(3);
Expand Down

0 comments on commit 8fc10b7

Please sign in to comment.