Package org.tgen.sol

Examples of org.tgen.sol.MappedBaseInfo


  }

  public void UpdatePositionMetrics (PositionInfo p, char reference_nucleotide) {
    Iterator<MappedBaseInfo> i = p.mappedBases.iterator();
    while (i.hasNext()) {
      MappedBaseInfo b = i.next();

      if (b.nucleotide != reference_nucleotide) {
        mismatch_total++;
        String mismatch_lookup = "";
        mismatch_lookup += reference_nucleotide;
View Full Code Here

TOP

Related Classes of org.tgen.sol.MappedBaseInfo

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.