Relocate overlap threshold filters

This commit is contained in:
2022-02-20 03:05:56 -06:00
parent cb2c5a6024
commit d1c37b5ccd
4 changed files with 42 additions and 57 deletions

View File

@@ -14,8 +14,6 @@ public class GraphWithMapData implements java.io.Serializable {
private Integer[] wellConcentrations;
private Integer alphaCount;
private Integer betaCount;
private Integer lowThreshold;
private Integer highThreshold;
private final Map<Integer, Integer> distCellsMapAlphaKey;
private final Map<Integer, Integer> plateVtoAMap;
private final Map<Integer, Integer> plateVtoBMap;
@@ -26,7 +24,7 @@ public class GraphWithMapData implements java.io.Serializable {
private final Duration time;
public GraphWithMapData(SimpleWeightedGraph graph, Integer numWells, Integer[] wellConcentrations,
Integer alphaCount, Integer betaCount, Integer lowThreshold, Integer highThreshold,
Integer alphaCount, Integer betaCount,
Map<Integer, Integer> distCellsMapAlphaKey, Map<Integer, Integer> plateVtoAMap,
Map<Integer,Integer> plateVtoBMap, Map<Integer, Integer> plateAtoVMap,
Map<Integer, Integer> plateBtoVMap, Map<Integer, Integer> alphaWellCounts,
@@ -36,8 +34,6 @@ public class GraphWithMapData implements java.io.Serializable {
this.wellConcentrations = wellConcentrations;
this.alphaCount = alphaCount;
this.betaCount = betaCount;
this.lowThreshold = lowThreshold;
this.highThreshold = highThreshold;
this.distCellsMapAlphaKey = distCellsMapAlphaKey;
this.plateVtoAMap = plateVtoAMap;
this.plateVtoBMap = plateVtoBMap;
@@ -68,14 +64,6 @@ public class GraphWithMapData implements java.io.Serializable {
return betaCount;
}
public Integer getLowThreshold() {
return lowThreshold;
}
public Integer getHighThreshold() {
return highThreshold;
}
public Map<Integer, Integer> getDistCellsMapAlphaKey() {
return distCellsMapAlphaKey;
}