Ibrahim Tanyalcin

Results 9 comments of Ibrahim Tanyalcin

This is marked as info needed. Exactly what else does he need to provide? I have the same issue described

We have same error even after we recreate the hash tables using: `dragen --build-hash-table`. The end result is always the same, after running `dragen` ```shell Exception thrown in “path/to/reference_sender.cpp line...

Is there any information when the API will be restored? The server at http://exac.hms.harvard.edu/ is still returning 404 for all requests. Is there a possibility to add some additional information...

if the client send a `Range` request header and also `Accept` request header with the `application/gzip` mime type, then it is the clients responsibility to take into account whether the...

Is it possible to add a config object such as: ```js app.use(compression({ enforceRFC7233: true})) ``` which would default to `false` by *primum non nocere*, thus avoiding breaking apps that rely...

@dougwilson I understand that I can pass a filter function, but that means dropping support for compression for plain text file types (fasta etc.) that would actually benefit the greatest...

In genomics we deal with large files, let's say `mysequence.fasta`. This a plain text file that reads like `ATTTCCGGTTT...` and is around 5Gb: - These files have an accompanying files...

Ok here is some more info, in my route file for serving static content, I have something like: ```js app.use('/static', compression(), _static, function(req, res, next) { //downstream middleware ... ```...

@mscbpi yes you are correct, I never objected the RFC, however from a technical standpoint it is very costly to compute the total zipped size and adjust the `Content-Range` value....