Package ru.autosome.commons.converter.mono

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

package ru.autosome.commons.converter.mono;

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


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

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

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

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.