Roderick Bovee

Results 16 comments of Roderick Bovee

We're seeing this issue quite a bit (I wonder if bioinformaticians just really like gzipping in blocks!) Making the `inflateReset` into an `inflateResetKeep` call fixes the "invalid distance too far...

A guide would be great, but even a table of SQL Diesel would be super helpful. For example, I had difficulty finding out how to emit ` IN ` query...

I'm struggling with how to define the iterable interface at all in Rust. I can make a `next` function, but is there a way to define a function named `Symbol.iterator`?...

With your second snippet (and finally learning how to run code at init), I was finally able to replace this last bit of JS. Thanks so much! If anyone's trying...

Thanks for this! Most of my RAW files are dated so it's really useful to have some more recent ones (version 66) to test on. I poked around a little...

I think both of those are wrapping/using the Thermo parsing library itself, but it's good to know that there's support out there for this. I think I've figured out how...

Thank you for the files! I keep thinking I've figured out all the differences, but it appears there are actually several different things going on (the record layouts are apparently...

Rather than storing the path as a `Vec`, we could store it as a `Vec` of "delimiter" positions (e.g. for XML a `>` and for JSON maybe a `,`) and...

`seq_io` has a pretty well-developed "parallel" processing module that might be worth looking at for inspiration: https://github.com/markschl/seq_io/blob/master/src/parallel.rs

Thanks for all these references! The existing code is just a rough translation of [Aston's REG implementation](https://github.com/bovee/Aston/blob/master/aston/tracefile/agilent_extra_cs.py) into Rust so it's really helpful to have more references. The main issue...