better error message
This commit is contained in:
parent
53f8be96d2
commit
2018285a39
|
|
@ -103,9 +103,10 @@ public class PairHMMIndelErrorModel {
|
||||||
case CACHING:
|
case CACHING:
|
||||||
case LOGLESS_CACHING:
|
case LOGLESS_CACHING:
|
||||||
pairHMM = new LoglessCachingPairHMM();
|
pairHMM = new LoglessCachingPairHMM();
|
||||||
|
System.err.println("warning: this option (LOGLESS_CACHING in UG) is still under development");
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
throw new UserException.BadArgumentValue("pairHMM", "Specified pairHMM implementation is unrecognized or incompatible with the UnifiedGenotyper. Acceptable options are ORIGINAL and EXACT.");
|
throw new UserException.BadArgumentValue("pairHMM", "Specified pairHMM implementation is unrecognized or incompatible with the UnifiedGenotyper. Acceptable options are ORIGINAL, EXACT or LOGLESS_CACHING (the third option is still under development).");
|
||||||
}
|
}
|
||||||
|
|
||||||
// fill gap penalty table, affine naive model:
|
// fill gap penalty table, affine naive model:
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue