Shaun Jackman

Results 270 comments of Shaun Jackman

I'm able to reproduce this issue at home as well. > What happens when you remove the file manually from another terminal? The file does not exist. ``` glibtool: link:...

Could `vg` use the brewed version of `gperftools` rather than compile it from scratch?

I believe TravisCI uses Ubuntu 14.04 LTS (Trusty Tahr) by default, whose default compiler is GCC 4.8.2. https://packages.ubuntu.com/trusty/gcc

Ah, getting my threads crossed. Any thoughts on this build failure on Ubuntu 16.04 on CircleCI? https://github.com/brewsci/homebrew-bio/pull/179#issuecomment-377671793

Building `gperftools` 2.7 on Ubuntu 16.04 on CircleCI does not deadlock. I'd prefer to use this existing version of `gperftools` with `vg` if possible rather than compiling the version included...

I have an animal mitochondrial genome assembled by Unicycler (so no overlap). I'd like to orient and rotate the genome to agree with its closest relative in Genbank. I have...

https://play.rust-lang.org/?gist=501fb52b2beb650d2ac9ec6872f269e9 ```rust #[allow(arithmetic_overflow)] fn main() { let m: i32 = 2_000; let n: i32 = 1_080_000; println!("{}", m * n); println!("{}", (m * n) as usize); println!("{}", m as usize...

`cmake` fails when extracting external dependencies for me. See #10. I'd also like to be able to use the existing installed versions of dependencies. For me they're installed by Linuxbrew.

As a user, I prefer autotools to cmake. cmake breaks way more often in my hands/experience than autotools. As a developer, I've only used autotools, so my previous opinion is...

The languages of both autotools and CMake are pretty terrible. I actually like the Make language; I think it gets a bad wrap. Other than `config.h` was there any other...