FASTQE WebAssembly and Biowasm Example
Use an Biowasm compatible Aioli object and create a CLI instance to process FASTQE commands, e.g.
<script src="https://biowasm.com/cdn/v3/aioli.js"></script>
<script type="module">
const CLI = await new Aioli([{tool: "fastqe",
program: "fastqe",
urlPrefix: "https://fastqe.github.io/fastqe_rust/",
}]);
let output_help = await CLI.exec("fastqe --help");
document.getElementById("output_help").innerHTML = output_help;
</script>
<h4>Output of <code>fastqe --help </code>: </h4>
<pre id="output_help">Loading... </pre>
Output of fastqe test.fq
:
Loading...
Output of fastqe --help
:
Loading...