Add method to get read count from individual wells

This commit is contained in:
eugenefischer
2022-09-28 12:57:45 -05:00
parent 856063529b
commit 1a35600f50

View File

@@ -32,6 +32,8 @@ public class Vertex implements Serializable, Comparable<Vertex> {
public Integer getReadCount() { return record.getReadCount(); } public Integer getReadCount() { return record.getReadCount(); }
public Integer getReadCount(Integer well) { return.record.getReadCount(well); }
public Map<Integer, Integer> getWellOccupancies() { return record.getWellOccupancies(); } public Map<Integer, Integer> getWellOccupancies() { return record.getWellOccupancies(); }
@Override //adapted from JGraphT example code @Override //adapted from JGraphT example code