Oops, got the logic wrong.

This commit is contained in:
Eric Banks 2012-07-17 13:37:11 -04:00
parent a963b37424
commit 110886e8b9
1 changed files with 1 additions and 1 deletions

View File

@ -207,7 +207,7 @@ public class GenomeAnalysisEngine {
*/ */
public boolean isGATKLite() { public boolean isGATKLite() {
if ( isLiteVersion == null ) { if ( isLiteVersion == null ) {
isLiteVersion = new PluginManager<Object>(Object.class).exists(DummyProtectedWalkerName); isLiteVersion = !(new PluginManager<Object>(Object.class).exists(DummyProtectedWalkerName));
} }
return isLiteVersion; return isLiteVersion;
} }