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
|
//The constructor is called only once inside PairHMMLikelihoodCalculationEngine
|
||||||
public VectorLoglessPairHMM() {
|
public VectorLoglessPairHMM() {
|
||||||
super();
|
super();
|
||||||
|
|
||||||
|
logger.warn("WARNING: the VectorLoglessPairHMM is an experimental implementation still under active development. " +
|
||||||
|
"Use at your own risk!");
|
||||||
|
|
||||||
synchronized(isVectorLoglessPairHMMLibraryLoaded) {
|
synchronized(isVectorLoglessPairHMMLibraryLoaded) {
|
||||||
//Load the library and initialize the FieldIDs
|
//Load the library and initialize the FieldIDs
|
||||||
if(!isVectorLoglessPairHMMLibraryLoaded) {
|
if(!isVectorLoglessPairHMMLibraryLoaded) {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue