add projects

This commit is contained in:
Arthur Lu
2025-01-24 23:06:24 +00:00
parent d140516bd3
commit 1e9bcb1bd3
6 changed files with 92 additions and 11 deletions

32
projects/wfa-js.html Normal file
View File

@@ -0,0 +1,32 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Projects - Arthur Lu</title>
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link rel="stylesheet" href="/css/style.css" type="text/css">
<link rel="stylesheet" href="/css/overlay.css" type="text/css">
<link rel="icon" type="image/x-icon" href="/resources/icon/favicon.svg">
</head>
<body>
<header>
<h1><b><a aria-label="Arthur Lu" href="https://root.tronnet.net" class="site-header">ARTHUR LU</a></b></h1>
<nav>
<a aria-current="page" aria-label="Projects" href="/index.html">PROJECTS</a>
<a aria-label="Photography" href="/photography.html">PHOTOGRAPHY</a>
<a aria-label="About Me" href="/about.html">ABOUT ME</a>
<a aria-label="Notes" href="/notes.html">CLASS NOTES</a>
</nav>
</header>
<main>
<h2>WFA-JS</h2>
<p>An implementation of the Wavefront Alignment Algorithm (<a href="https://github.com/smarco/WFA2-lib">WFA</a>) which can be using in Javascript. WFA is a state-of-the-art string alignment algorithm which compares two strings and calculates the edit distance. Unlike traditional methods, WFA runs proportionally to the length of the strings and the edit distance. WFA is commonly used in bioinformatics, but it can be used in many fuzzy string search algorithms as the edit distance function. WFA-JS is written in Golang and compiled to web assembly which can be loaded into javascript.</p>
<hr>
Want to learn more about this project? Reference the project repository <a href="https://git.tronnet.net/alu/WFA-JS">here</a>.
</main>
<footer>
</footer>
</body>
</html>