Skip to content

Commit

Permalink
Report all root-to-selected-tip mutations
Browse files Browse the repository at this point in the history
  • Loading branch information
jameshadfield committed Mar 8, 2021
1 parent 0653954 commit 4fee777
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/tree/infoPanels/click.js
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ const MutationTable = ({mutations}) => {
.map(([gene, muts], index) => (
<tr key={gene}>
<th style={infoPanelStyles.item}>{index===0 ? "Mutations from root" : ""}</th>
<td style={infoPanelStyles.item}>{`${gene}:${muts.sort(mutSortFn).join(", ").substring(0, 200)}`}</td>
<td style={infoPanelStyles.item}>{`${gene}:${muts.sort(mutSortFn).join(", ")}`}</td>
</tr>
))
);
Expand Down

0 comments on commit 4fee777

Please sign in to comment.