(elem)
| 550 | } |
| 551 | |
| 552 | function findPolygon(elem) { |
| 553 | if (elem.localName == 'polygon') return elem; |
| 554 | for (const c of elem.children) { |
| 555 | const p = findPolygon(c); |
| 556 | if (p != null) return p; |
| 557 | } |
| 558 | return null; |
| 559 | } |
| 560 | |
| 561 | function setSampleIndexLink(si) { |
| 562 | const elem = document.getElementById('sampletype-' + si); |
no outgoing calls
no test coverage detected
searching dependent graphs…