Examples of BimFileDriver


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

  private HashMap<String, Biallele> snpCoding;

  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;
 
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.