Package org.bioinfo.ngs.qc.qualimap.beans

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

Related Classes of org.bioinfo.ngs.qc.qualimap.beans.GenomeLocator

Copyright © 2018 www.massapicom. 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.