Examples of FamFileDriver


Examples of org.molgenis.util.plink.drivers.FamFileDriver

  public BedBimFamReader(File bed, File bim, File fam) throws Exception
  {
    bedfd = new BedFileDriver(bed);
    bimfd = new BimFileDriver(bim);
    famfd = new FamFileDriver(fam);

    nrOfIndividuals = famfd.getNrOfElements();
    nrOfSnps = bimfd.getNrOfElements();
    nrOfGenotypes = nrOfIndividuals * nrOfSnps;
    paddingPerSnp = (int) ((bedfd.getNrOfElements() - nrOfGenotypes) / nrOfSnps);
View Full Code Here
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.