switch compiler to go instead of tinygo, TODO: increases size significantly

This commit is contained in:
alu
2026-09-02 18:46:17 +00:00
parent ab5ab2b81b
commit 7bbd8f6eb3
4 changed files with 337 additions and 312 deletions
+2 -2
View File
@@ -15,8 +15,8 @@
o: 0,
e: 1
};
const { score, CIGAR } = global.wfa.wfAlign(a, b, penalties, true);
const alignment = global.wfa.DecodeCIGAR(CIGAR);
const { score, CIGAR } = wfa.wfAlign(a, b, penalties, true);
const alignment = wfa.DecodeCIGAR(CIGAR);
document.querySelector("#result").innerText = `${score}, ${CIGAR}, ${alignment}`;
})
});