Skip to content

Commit

Permalink
Merge pull request #3893 from kids-first/fix/SKFP-936-variants-cadd
Browse files Browse the repository at this point in the history
fix(variants): SKFP-936 CADD value
  • Loading branch information
AltefrohneGaelle authored Feb 2, 2024
2 parents d8c11fe + ec45051 commit d84303e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -384,8 +384,8 @@ const getDefaultColumns = (queryBuilderId: string, noData: boolean = false): Pro
const pickedConsequence = geneWithPickedConsequence.consequences?.hits?.edges?.find(
(c) => c.node.picked,
);
return pickedConsequence?.node?.predictions?.cadd_score
? pickedConsequence.node.predictions.cadd_score
return pickedConsequence?.node?.predictions?.cadd_phred
? pickedConsequence.node.predictions.cadd_phred
: TABLE_EMPTY_PLACE_HOLDER;
},
width: 90,
Expand Down

0 comments on commit d84303e

Please sign in to comment.