-
Notifications
You must be signed in to change notification settings - Fork 42
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
Add flanks to gather #64
Conversation
Merged build triggered. |
Merged build started. |
Merged build finished. All automated tests passed. |
All automated tests passed. |
Merged build triggered. |
Merged build started. |
Merged build finished. All automated tests passed. |
All automated tests passed. |
@fnothaft This looks good - do you have to rebase before it can be merged? Looks the other commits are still showing in the diff? |
Thanks @arahuja! I've just rebased, which should fix the diff. |
Merged build triggered. |
Merged build started. |
Merged build finished. All automated tests passed. |
All automated tests passed. |
@@ -38,7 +38,7 @@ class TransitionMatrix(val LOG_GAP_OPEN: Double = -4.0, | |||
|
|||
// P( indel -> match) = 1 - P(indel -> indel) = 1 - P( gap-continue) | |||
// in log-space | |||
val LOG_GAP_CLOSE = log10(1 - pow(10, LOG_GAP_CONTINUE)) | |||
val LOG_GAP_CLOSE = -log10(1 - pow(10, LOG_GAP_CONTINUE)) |
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 seems to have snuck back
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.
Sorry about that! I think that was an artifact of the squash/rebase?
@fnothaft This looks good to merge - but a negative sign on the gap_close probability seems to have returned - this should be removed correct? |
…calling variants with assembly.
Merged build triggered. |
Merged build started. |
Merged build finished. All automated tests passed. |
All automated tests passed. |
Thanks! |
Adds code to gather flanking sequence to gather/groupBy phase of assembly. Updates all variant calling algorithms to provide PartitionSet, and also adds configuration hooks to assembler. Depends on #63.