-
Notifications
You must be signed in to change notification settings - Fork 308
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
FastaConverter Refactor #211
Conversation
arahuja
commented
Apr 8, 2014
- Bug in FastaConverter where it would incorrectly identify the header line with an associated sequence (see broken test case on older code (https://github.com/hammerlab/adam/compare/fasta-branch?expand=1)
- General cleanup, splitting out into functions for readability
- Added adamSequenceLoad to load either fasta or adam sequences
Can one of the admins verify this patch? |
Jenkins, add to whitelist and test this please. |
.map(kv => (kv._1.get._2, kv._2)) | ||
.groupByKey() | ||
sequenceLines.keyBy(row => findContigIndex(row._1, indexToContigDescription.value.keys.toList)) | ||
.map(kv => (kv._1.get, kv._2)) |
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 get is not doing anything
All automated tests passed. |
This looks ready to me but it needs to be run through scalariform, @arahuja Can you update this pull request? |
All automated tests passed. |
Thanks, Arun! |