We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The current detection code is:
for (int i = 0; i < er.resultLines.size(); i++) { //Look at Matthias ExomePipeline extension. The code is mainly taken from there. String dCString = null String dRString = "gzip -c" //POSSIBLE-ERROR: Not zipper set for 'cat'/ASCII String type = er.resultLines[i] if (type.startsWith("setgid ")) type = type[7..-1].trim().split(" ")[0] if (type == "0") continue if (type == "gzip") { dCString = "gunzip -c" dRString = "gzip -c" } else if (type == "bzip2") { dCString = "bunzip2 -c -k" dRString = "bzip2 -c -k" } else if (type == "ASCII" || type == "ASCII text") { dCString = "cat" dRString = "head -n E" } allLaneFiles[i].setDecompressionString(dCString) allLaneFiles[i].setRecompressionString(dRString) }
file -bL used to work? (or we did not recognize that it never worked properly due to other circumstances). It needs to recognize strings e.g. from:
ASCII text with very long lines
The text was updated successfully, but these errors were encountered:
What do you mean, it needs to recognize strings? Can you add a test file where it fails and the desired outcome?
Sorry, something went wrong.
No branches or pull requests
The current detection code is:
file -bL used to work? (or we did not recognize that it never worked properly due to other circumstances). It needs to recognize strings e.g. from:
The text was updated successfully, but these errors were encountered: