Skip to content
Snippets Groups Projects
Commit bd751199 authored by HongKee Moon's avatar HongKee Moon
Browse files

Close #10

Species not needed in Protein table on Condensate page for non-Chimeras
parent 9e67786a
No related branches found
No related tags found
No related merge requests found
......@@ -109,10 +109,23 @@
}
},
},
// {
// title: 'Species',
// data: 'species_name',
// className: "text-nowrap"
// },
{
title: 'Species',
title: 'Evidences',
data: 'species_name',
className: "text-nowrap"
className: "text-nowrap",
fnCreatedCell: (nTd, sData, oData) => {
// console.log(sData)
let data = vm.map[oData.uniprot_id];
if(data) {
// $(nTd).html(data.filter(a => a.startsWith('http')).join('\n'));
$(nTd).html(data.map(i => vm.createLink(i)).join('<br/>'));
}
}
},
{
title: 'UniProt',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment