Package ru.autosome.commons.motifModel.mono

Examples of ru.autosome.commons.motifModel.mono.PCM


    super(count);
  }

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


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

TOP

Related Classes of ru.autosome.commons.motifModel.mono.PCM

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.