Shaun Jackman

Results 270 comments of Shaun Jackman

I chatted with Guillaume yesterday at RECOMB-Seq, so he's definitely not ☠️ 😉

`go get` doesn't seem to install any executables. ```sh ❯❯❯ GOPATH=~/.go go get -u github.com/brentp/goleft/... package github.com/brentp/goleft/emdepth/mops: found packages mops (mops.go) and emdepth (mops_test.go) in /Users/sjackman/.go/src/github.com/brentp/goleft/emdepth/mops ❯❯❯ which goleft goleft...

I'd suggest add `GOPATH` and `PATH` to the installation instructions: ```sh export GOPATH=~/.go PATH="$GOPATH/bin:$PATH" go get -u github.com/brentp/goleft/... go install github.com/brentp/goleft/cmd/goleft goleft --help ``` ``` ❯❯❯ GOPATH=~/.go go get -u...

> for those wishing to build from source. Perhaps I'm being pedantic, but `go install github.com/brentp/goleft/cmd/goleft` does install from source. How would the `INSTALL-dev.md` instructions differ from the `README.md` instructions?...

Hi, Dirk! =) I'd still love to see this feature. A command to print a bar-chart histogram of each variable, one histogram per row, would be quite useful to me.

> `pigz -d` decompresses in parallel faster than `gzip`. Slight misstatement here. `pigz -d` is faster than `gzip`, but it's not parallelized AFAIK. Parallelized decompression of standard non-block gzip is...

Amazing! Lots of good stuff in those Miller 6 release notes. That's great news about automatically decompressing compressed files! I was thinking that `mlr -P` could execute `pv` if it...

https://www.htslib.org/doc/tabix.html https://doi.org/10.1093/bioinformatics/btq671 I work in bioinformatics too! Tabix allows indexing a sorted bgzip-compressed tabular file, so that you can seek to an arbitrary record in the file.

If your goal is just to install ABySS, you may wish to try installing ABySS using Linuxbrew. See http://linuxbrew.sh/ then `brew install abyss`. If your goal is to fix the...

Compiling `ABYSS-P` requires installing the dependency Open-MPI.