Examples of GenomeLocator


Examples of org.bioinfo.ngs.qc.qualimap.beans.GenomeLocator

        return task.call();
    }*/


    private void loadLocator(SAMFileHeader header){
    locator = new GenomeLocator();
    for(int i=0; i<header.getSequenceDictionary().getSequences().size(); i++){
      locator.addContig(header.getSequence(i).getSequenceName(), header.getSequence(i).getSequenceLength());
    }
  }
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.