Method signature changed: for extended events, pass array of reference bases (to ensure we cover the full length of the indel event), not just reference base.
git-svn-id: file:///humgen/gsa-scr1/gsa-engineering/svn_contents/trunk@3212 348d0f76-0448-11de-a6fe-93d51630548a
This commit is contained in:
parent
01e6492ba9
commit
5d2fab93f4
|
|
@ -102,7 +102,7 @@ public abstract class GenotypeCalculationModel implements Cloneable {
|
|||
* @return call
|
||||
*/
|
||||
public abstract VariantCallContext callExtendedLocus(RefMetaDataTracker tracker,
|
||||
char ref,
|
||||
char[] ref,
|
||||
GenomeLoc loc,
|
||||
Map<String, StratifiedAlignmentContext> stratifiedContexts);
|
||||
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@ public abstract class JointEstimateGenotypeCalculationModel extends GenotypeCalc
|
|||
|
||||
protected JointEstimateGenotypeCalculationModel() {}
|
||||
|
||||
public VariantCallContext callExtendedLocus(RefMetaDataTracker tracker, char ref, GenomeLoc loc, Map<String, StratifiedAlignmentContext> stratifiedContexts) {
|
||||
public VariantCallContext callExtendedLocus(RefMetaDataTracker tracker, char[] ref, GenomeLoc loc, Map<String, StratifiedAlignmentContext> stratifiedContexts) {
|
||||
return null;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue