Results 7 comments of splichte

The package is not listed on bioconda as available for Mac OS X, only for Linux. See: http://bioconda.github.io/recipes.html I see the same result as you on Mac OS X, but...

async functions return promises. you need to do `const data = await getData()` -- unless you intend to set `data` at the top level of the code, in which case...

I suggest reading a tutorial on async/await, for example: https://medium.com/@_bengarrison/javascript-es8-introducing-async-await-functions-7a471ec7de8a async functions always return promises. you need to await to get the value.

I think I might have been unclear in my earlier comment. I never wanted you to try to `await` outside an `async` function. You can't do that in current Node....

no, it won't output what you want to `myVar`, because `run` is marked `async`, so it returns a `Promise`. the main way to force an async function to yield its...

As a first note, if you're struggling to understand how async/await/Promises work (which is fair, they can be confusing at first), it might be a good idea to experiment with...

Thanks for your reply! I think it would be ideal if HTSlib could handle this situation -- it seems to affect many of the 1000G BAM files, and these files...