Relocate overlap threshold filters
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user