-
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
BQSR using vcf loader #180
Conversation
One or more automated tests failed |
All automated tests passed. |
@@ -73,4 +72,12 @@ object SnpTable { | |||
// construct SnpTable from immutable copy of `table` | |||
new SnpTable(table.mapValues(_.toSet).toMap) | |||
} | |||
|
|||
def apply(variants : RDD[RichADAMVariant]) : SnpTable = | |||
{ |
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.
Nit: braces style.
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.
Ugh, clearly picked this habit up somewhere and can't break it. Will fix.
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.
No prob; I write all my C++ code this way, so I can relate...
I had one small nit, otherwise this looks good to merge. |
Thanks for making this change, @arahuja! |
All automated tests passed. |
Merged! Thanks @arahuja! |
Changes BQSR command to use standard VCF loading process as opposed to separate parser. I left in the other way as another option, but we can remove it as well.