-
Notifications
You must be signed in to change notification settings - Fork 295
New issue
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
Migrate read handling code to utils code. #1466
Labels
Comments
Here, scripts/filter-abund.py and scripts/filter-abund-single.py would be
good targets for a next round of refactoring.
|
This was referenced Oct 1, 2016
ctb
changed the title
Migrate read handling code to ReadBundler
Migrate read handling code to utils code.
Oct 4, 2016
(filter-abund* done in #1469.) |
8 tasks
You can now use from khmer import ReadParser
for index, is_pair, read1, read2 in broken_paired_reader(ReadParser(infile)):
... instead of using |
This was referenced Jan 24, 2017
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
In #1458 and #1435, we added a bunch of generic read handling code to khmer/utils.py, which now has
clean_input_reads
,broken_paired_iter
, andReadBundle
. These should be used to do all Python-based read handling throughout the code.In particular, all uses of
ThreadedSequenceProcessor
should be removed; ref #1470.The text was updated successfully, but these errors were encountered: