switch compiler to go instead of tinygo, TODO: increases size significantly
This commit is contained in:
+2
-2
@@ -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}`;
|
||||
})
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user