-
Notifications
You must be signed in to change notification settings - Fork 596
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
added option for ValidateBasicSomaticShortMutations to output a vcf #4999
Conversation
41cc07b
to
f79fbcb
Compare
Codecov Report
@@ Coverage Diff @@
## master #4999 +/- ##
===============================================
- Coverage 86.382% 86.378% -0.004%
- Complexity 28674 28679 +5
===============================================
Files 1785 1785
Lines 132713 132742 +29
Branches 14766 14773 +7
===============================================
+ Hits 114640 114660 +20
- Misses 12746 12748 +2
- Partials 5327 5334 +7
|
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.
Minor comments no need to pass it back!
import java.util.stream.Collectors; | ||
|
||
import static org.broadinstitute.hellbender.utils.variant.GATKVCFConstants.ALLELE_BALANCE_HET_KEY; |
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.
There's a bunch of unused imports
"Validation judgment: validated, unvalidated, or skipped."); | ||
|
||
|
||
public static enum Judgment { |
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.
IntelliJ says nested enums are implicitly static
@@ -180,4 +180,49 @@ private void assertValidationResult(final List<AnnotatedInterval> variantValidat | |||
discoveryAltCoverage, discoveryAltCoverage + discoveryRefCoverage, | |||
minCount)); | |||
} | |||
|
|||
|
|||
//TODO delete this!!!! |
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.
Either delete or make this a real test
78d0fc8
to
311b1c4
Compare
@takutosato This lets
ValidateBasicSomaticShortMutations
optionally annotate theeval
vcf with validationINFO
fields in addition to the standard output of a tsv. Having a vcf is more convenient for some things in MC3.