Ejemplo n.º 1
0
 public int getDelCount(int pos) {
   AlignmentCounts c = counts;
   if (pos >= c.getStart() && pos < c.getEnd()) {
     return c.getDelCount(pos);
   }
   return 0;
 }
Ejemplo n.º 2
0
 public int getMaxCount(int origin, int end) {
   return counts.getMaxCount(origin, end);
 }