Package ru.autosome.commons.converter.mono

Source Code of ru.autosome.commons.converter.mono.PPM2PCM

package ru.autosome.commons.converter.mono;

import ru.autosome.commons.motifModel.mono.PCM;
import ru.autosome.commons.motifModel.mono.PPM;

public class PPM2PCM extends ru.autosome.commons.converter.generalized.PPM2PCM<PPM, PCM> {
  public PPM2PCM(double count) {
    super(count);
  }

  @Override
  protected PCM createMotif(double[][] matrix, String name) {
    return new PCM(matrix, name);
  }
}
TOP

Related Classes of ru.autosome.commons.converter.mono.PPM2PCM

TOP
Copyright © 2018 www.massapi.com. 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.