Revert "Add getCell and getRandomCell methods"

This reverts commit adebe1542e.
This commit is contained in:
eugenefischer
2022-09-28 14:36:20 -05:00
parent adebe1542e
commit fb443fe958

View File

@@ -49,13 +49,6 @@ public class CellSample {
return cells; return cells;
} }
public String[] getCell(Integer n) { return cells.get(n); };
public String[] getRandomCell() {
int n = BiGpairSEQ.getRand().nextInt(cells.size());
return getCell(n);
}
public Integer getCdr1Freq() { public Integer getCdr1Freq() {
return cdr1Freq; return cdr1Freq;
} }