Package ru.autosome.commons.converter.di

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

package ru.autosome.commons.converter.di;

import ru.autosome.commons.motifModel.di.DiPCM;
import ru.autosome.commons.motifModel.di.DiPPM;

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

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

Related Classes of ru.autosome.commons.converter.di.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.