Ejemplo n.º 1
0
  @Override
  public String toString() {

    StringBuilder sb = new StringBuilder();

    sb.append("ExtendedHaplotype [haplo.size = " + haplo.size() + "]\n");
    for (IDStrand ids : haplo) {
      sb.append("\t" + ids.toString() + "\n");
    }

    return sb.toString();
  }
Ejemplo n.º 2
0
  public int getNextStrand() {

    IDStrand top = haplo.getFirst();
    return top.getStrand();
  }