-
Notifications
You must be signed in to change notification settings - Fork 614
Changes to Mutect2 to support Mutect3 #7663
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
d6e4986
to
1e82224
Compare
@davidbenjamin sorry I may not be able to get to it until later this week, is that acceptable? |
@takutosato Sure, not a problem! |
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 I took so long. Just minor comments and a couple self-serving variable rename requests
src/test/java/org/broadinstitute/hellbender/tools/walkers/mutect/Mutect2IntegrationTest.java
Show resolved
Hide resolved
...org/broadinstitute/hellbender/tools/walkers/mutect/GetNormalArtifactDataIntegrationTest.java
Show resolved
Hide resolved
src/main/java/org/broadinstitute/hellbender/tools/walkers/mutect/SomaticGenotypingEngine.java
Show resolved
Hide resolved
...org/broadinstitute/hellbender/tools/walkers/mutect/GetNormalArtifactDataIntegrationTest.java
Outdated
Show resolved
Hide resolved
src/main/java/org/broadinstitute/hellbender/tools/walkers/mutect/NormalArtifactRecord.java
Outdated
Show resolved
Hide resolved
src/main/java/org/broadinstitute/hellbender/tools/walkers/mutect/Mutect3DatasetEngine.java
Outdated
Show resolved
Hide resolved
src/main/java/org/broadinstitute/hellbender/tools/walkers/mutect/Mutect3DatasetEngine.java
Show resolved
Hide resolved
src/main/java/org/broadinstitute/hellbender/tools/walkers/mutect/Mutect3DatasetEngine.java
Outdated
Show resolved
Hide resolved
final boolean hasNormal = normalDepth > 0; | ||
|
||
final List<Label> labels = new ArrayList<>(numAlt); | ||
final Map<Allele, Integer> altDownsampleMap= new HashMap<>(); |
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.
A comment describing this map would be very useful for the reader (i.e. me). Namely it contains the target alt counts to downsample to
@takutosato Are you able to look at this? The two big changes here are 1) data for the M3 normal artifact filter and 2) outputting tensors for M3 as plain text rather than VCF.