-
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
Partition sweep #216
Partition sweep #216
Conversation
Pull request merged into ged-lab/bleeding-edge
…g-edge Updates since graceful-fail2 pull
Bleeding edge
…es explicit things i hear)
…ith python glue, appear to be outputting correct colors
Partition sweep
Test FAILed. |
test this please |
Test PASSed. |
# consume the partitioned fasta with which to label the graph | ||
ht = khmer.LabelHash(K, HT_SIZE, N_HT) | ||
print >>sys.stderr, 'consuming fastp...' | ||
ht.consume_partitioned_fasta_and_tag_with_labels(input_fastp) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is input_fastp optional? If it is then you need to deal with the fact that it may be empty. If it isn't (as I suspect) then tell the parser above
Test PASSed. |
* Find all labels associated with the sequence | ||
* For now, check /every/ k-mer with find_all_tags | ||
*/ | ||
unsigned int LabelHash::sweep_sequence_for_labels(const std::string& seq, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This method has no code testing coverage
Please fix the two long lines left and add unit tests for labelhash_consume_sequence_and_tag_with_labels & LabelHash::sweep_sequence_for_labels. Assuming that nothing else pops up from your fixes I will then merge |
…sequence_and_tag_with_labels
Test FAILed. |
Test FAILed. |
please test this Jed |
The function sweep_sequence_for_labels was deprecated in favor of sweep_label_neighborhood; it has been removed. |
Test PASSed. |
Bugs found by coverity from partition_sweep #216
Bugs found by coverity from partition_sweep #216
Merged branch from cswelcher/khmer to ged-lab/khmer; new pull request reflecting that.
See here for original comments.