Turn ligation list to table in README

This commit is contained in:
be5invis 2020-10-30 22:29:03 -07:00
parent 0bcd3a9027
commit c5f01d5356
92 changed files with 167 additions and 91 deletions

View file

@ -261,13 +261,13 @@ function buildLigationSet(ligData, getKey) {
tag: comp.tag,
rank: 1,
ligSets: [...ligSets],
tagName: comp.tag,
tagName: [comp.tag],
desc: comp.desc,
brief: comp.brief || comp.desc
};
ligationSets.set(key, item);
} else {
item.tagName += ", " + comp.tag;
item.tagName = [...item.tagName, comp.tag];
item.desc += ", " + comp.desc;
item.brief += ", " + comp.brief;
}