Package ru.autosome.commons.motifModel.di

Examples of ru.autosome.commons.motifModel.di.DiPCM


    super(count);
  }

  @Override
  protected DiPCM createMotif(double[][] matrix, String name) {
    return new DiPCM(matrix, name);
  }
View Full Code Here


  @Override
  public DiPWM createMotif(double matrix[][], String name) {
    DiPWM dipwm;
    switch (dataModel) {
      case PCM:
        dipwm = new DiPCM(matrix, name).to_pwm(background);
        break;
      case PPM:
        dipwm = new DiPPM(matrix, name).to_pwm(background, effectiveCount);
        break;
      case PWM:
View Full Code Here

TOP

Related Classes of ru.autosome.commons.motifModel.di.DiPCM

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.