Package org.lightforge.bioinformatics.alignment.dp

Examples of org.lightforge.bioinformatics.alignment.dp.CellEvaluationPrerequisitesException


      initializeAffineCells(oValue, eValue);
    } else if (checkPrerequisites()) {
      evalVector = buildEvalVectorAffineGapPenalty(oValue, eValue);
      evaluate(evalVector);
    } else {
      throw new CellEvaluationPrerequisitesException();
    }
  }
View Full Code Here


   
    if (checkPrerequisites()) {
      evalVector = buildEvalVectorSimpleGapPenalty();
      evaluate(evalVector);
    } else {
      throw new CellEvaluationPrerequisitesException();
    }
  }
View Full Code Here

TOP

Related Classes of org.lightforge.bioinformatics.alignment.dp.CellEvaluationPrerequisitesException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.