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
It looks like pychopper do not support gzipped fastq file as input, as the code using fh = open(fname, "r") in utils.py.
fh = open(fname, "r")
just wonder will pychopper support using gzipped fastq file as input in the future?
Thanks.
The text was updated successfully, but these errors were encountered:
HI @defendant602
Pychopper already supports gzipped input.
pychopper/pychopper/utils.py
Line 54 in 139cc1c
fh = opener(fname, "r")
open(fname, "r")
opener comes from here:
opener
pychopper/pychopper/scripts/pychopper.py
Line 211 in 139cc1c
Sorry, something went wrong.
No branches or pull requests
It looks like pychopper do not support gzipped fastq file as input, as the code using
fh = open(fname, "r")
in utils.py.just wonder will pychopper support using gzipped fastq file as input in the future?
Thanks.
The text was updated successfully, but these errors were encountered: