-
Notifications
You must be signed in to change notification settings - Fork 603
Renamed OutputMode.EMIT_ALL_SITES to EMIT_ALL_ACTIVE_SITES #6181
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
Conversation
michaelgatzen
commented
Sep 24, 2019
- Modified GenotypeGVCFsEngine.OutputMode enum documentation to reflect this change
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.
Two quick comment requests then I think its good to go and you can merge.
/** produces calls at any callable site regardless of confidence; this argument is intended only for point | ||
* mutations (SNPs); it will not produce a comprehensive set of indels. */ | ||
EMIT_ALL_SITES | ||
/** produces calls at any callable site regardless of confidence. This does not necessarily output calls for all |
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.
produces calls at any callable site regardless of confidence
-> Produces calls at any region over the activity threshold regardless of confidence
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.
done
@@ -376,7 +376,7 @@ protected final boolean hasTooManyAlternativeAlleles(final VariantContext vc) { | |||
} | |||
|
|||
protected boolean emitAllSites() { |
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.
Put a comment here explaining this in somewhat better detail I think.
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.
I put a similar comment there and referred to the OutputMode documentation. Do you want more detail?
I also renamed this function to emitAllActiveSites()
, just to be consistent.
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.
Can you try running haplotype caller with this argument @droazen asked what exactly is happening when you run with this argument in VCF mode. Can you just run this on or test bam for example and let me know if it is making reference calls? Maybe the answer is to rename the argument to EMIT_ALL_LOW_QUALITY_SITES. That might be a little more clear as to what is going on and seeing if there are ref only calls would be helpful.
- Modified GenotypeGVCFsEngine.OutputMode enum documentation to reflect this change
03eb727
to
503c596
Compare