Skip to content

Commit

Permalink
update molecular trait column
Browse files Browse the repository at this point in the history
  • Loading branch information
remo87 committed Aug 18, 2022
1 parent 9bbfb24 commit 6c8bc87
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,10 @@ export const getTableColumns = (data, uniqueTissues) => {
renderCell: d => <Link to={`/gene/${d.gene.id}`}>{d.gene.symbol}</Link>,
};
const phenotypeIdColumn = {
id: 'phenotypeId',
id: 'gene.id',
label: 'Molecular trait',
comparator: (a, b) => ascending(a.gene.id, b.gene.id),
renderCell: d => <span>{d.gene.id}</span>,
};
const studyColumn = {
id: 'qtlStudyName',
Expand Down

0 comments on commit 6c8bc87

Please sign in to comment.