-
Notifications
You must be signed in to change notification settings - Fork 591
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Upgrade htsjdk to v3.0.1 and picard to 2.27.5 (#8025)
This upgrades htsjdk h was attempted in #7867 and then reverted in #7960 in order to unblock the jukebox merge. * upgrade htsjdk 2.24.1 -> 3.0.1 * upgrade picard 2.27.1 -> 2.27.5 Co-authored-by: David Roazen <[email protected]>
- Loading branch information
1 parent
19778c1
commit 8dbb78f
Showing
9 changed files
with
26 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 2 additions & 1 deletion
3
src/main/java/org/broadinstitute/hellbender/tools/funcotator/StrandCorrectedAllele.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
package org.broadinstitute.hellbender.tools.walkers.haplotypecaller.graphs; | ||
|
||
import htsjdk.variant.variantcontext.Allele; | ||
import htsjdk.variant.variantcontext.SimpleAllele; | ||
|
||
/** | ||
* Utility class for defining a "not" allele concept that is used to score haplotypes that are not supporting the allele. | ||
|
@@ -10,15 +11,14 @@ | |
* @author Ilya Soifer <[email protected] | ||
*/ | ||
|
||
public class InverseAllele extends Allele { | ||
public class InverseAllele extends SimpleAllele { | ||
final static public long serialVersionUID = 1L; | ||
|
||
private final Allele internalAllele; | ||
private final boolean referenceStatus; | ||
|
||
private InverseAllele(final Allele allele, boolean isReference) { | ||
super(allele, false); | ||
super(allele.getBases(), isReference); | ||
this.internalAllele = allele; | ||
referenceStatus = isReference; | ||
} | ||
|
||
// InverseAllele of inverseAllele. By definition it is the allele. In Allele filtering code we normally genotype | ||
|
@@ -35,10 +35,6 @@ public static Allele of(final Allele allele, boolean refFlag){ | |
public byte [] getBases(){ | ||
return getDisplayString().getBytes(); | ||
} | ||
@Override | ||
public boolean isReference() { | ||
return referenceStatus; | ||
} | ||
|
||
@Override | ||
public boolean isSymbolic() { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters