Skip to content

Commit

Permalink
Small fix
Browse files Browse the repository at this point in the history
  • Loading branch information
robertaboukhalil committed Aug 25, 2021
1 parent 753d2da commit cf39e6d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/worker.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ const aioli = {
// ---------------------------------------------------------------------

// Initialize WebAssembly modules (downloads .wasm/.js/.json in parallel)
await Promise.all(aioli.tools.map(this._setup));
await Promise.all(aioli.tools.map(tool => this._setup(tool)));

// Some tools have preloaded files mounted to their filesystems to hold sample data (e.g. /samtools/examples/).
// By default, those are only accessible from the filesystem of the respective tool. Here, we want to allow
Expand Down

0 comments on commit cf39e6d

Please sign in to comment.