Emit a warning whenever the VectorLoglessPairHMM is used
This commit is contained in:
parent
35aa24ab54
commit
c67ced5f3b
|
|
@ -117,6 +117,10 @@ public class VectorLoglessPairHMM extends JNILoglessPairHMM {
|
|||
//The constructor is called only once inside PairHMMLikelihoodCalculationEngine
|
||||
public VectorLoglessPairHMM() {
|
||||
super();
|
||||
|
||||
logger.warn("WARNING: the VectorLoglessPairHMM is an experimental implementation still under active development. " +
|
||||
"Use at your own risk!");
|
||||
|
||||
synchronized(isVectorLoglessPairHMMLibraryLoaded) {
|
||||
//Load the library and initialize the FieldIDs
|
||||
if(!isVectorLoglessPairHMMLibraryLoaded) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue