Merge branch 'master' of ssh://gsa1/humgen/gsa-scr1/gsa-engineering/git/unstable
This commit is contained in:
commit
23845ac798
10
build.xml
10
build.xml
|
|
@ -547,10 +547,12 @@
|
||||||
|
|
||||||
<target name="vcf.jar" depends="gatk.compile,init.jar">
|
<target name="vcf.jar" depends="gatk.compile,init.jar">
|
||||||
<jar jarfile="${dist.dir}/vcf.jar">
|
<jar jarfile="${dist.dir}/vcf.jar">
|
||||||
<classfileset dir="${java.classes}">
|
<fileset dir="${java.classes}">
|
||||||
<rootfileset dir="${java.classes}" includes="org/broadinstitute/sting/utils/codecs/vcf/**/*.class" />
|
<include name="**/utils/codecs/**/*.class"/>
|
||||||
<rootfileset dir="${java.classes}" includes="org/broadinstitute/sting/utils/variantcontext/**/*.class" />
|
<include name="**/utils/variantcontext/**/*.class"/>
|
||||||
</classfileset>
|
<include name="org/broadinstitute/sting/utils/exceptions/**"/>
|
||||||
|
<include name="org/broadinstitute/sting/utils/help/DocumentedGATKFeature.class"/>
|
||||||
|
</fileset>
|
||||||
</jar>
|
</jar>
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -130,6 +130,10 @@ public class CountVariants extends VariantEvaluator implements StandardEval {
|
||||||
nVariantLoci++;
|
nVariantLoci++;
|
||||||
nMixed++;
|
nMixed++;
|
||||||
break;
|
break;
|
||||||
|
case SYMBOLIC:
|
||||||
|
// ignore symbolic alleles, but don't fail
|
||||||
|
// todo - consistent way of treating symbolic alleles thgoughout codebase?
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
throw new ReviewedStingException("Unexpected VariantContext type " + vc1.getType());
|
throw new ReviewedStingException("Unexpected VariantContext type " + vc1.getType());
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue