Going through the backlog of emergency hacks I put in for the 1000G release. It is possible to call a site in an analysis panel but when using all samples the site isn't called because of going over the minimum deletion threshold, for example.
git-svn-id: file:///humgen/gsa-scr1/gsa-engineering/svn_contents/trunk@5174 348d0f76-0448-11de-a6fe-93d51630548a
This commit is contained in:
parent
7605f0e6c1
commit
5a8e2c2739
|
|
@ -111,7 +111,7 @@ public class UGCalcLikelihoods extends LocusWalker<VariantCallContext, Integer>
|
||||||
}
|
}
|
||||||
|
|
||||||
public Integer reduce(VariantCallContext value, Integer sum) {
|
public Integer reduce(VariantCallContext value, Integer sum) {
|
||||||
if ( value == null )
|
if ( value == null || value.vc == null )
|
||||||
return sum;
|
return sum;
|
||||||
|
|
||||||
try {
|
try {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue