spacing
This commit is contained in:
@@ -124,6 +124,7 @@ public interface GraphModificationFunctions {
|
|||||||
static Boolean RelativeReadCountFilterFunction(Integer threshold, Integer alphaReadCount, Integer betaReadCount) {
|
static Boolean RelativeReadCountFilterFunction(Integer threshold, Integer alphaReadCount, Integer betaReadCount) {
|
||||||
return Math.abs(alphaReadCount - betaReadCount) < threshold;
|
return Math.abs(alphaReadCount - betaReadCount) < threshold;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void addRemovedEdges(SimpleWeightedGraph<Vertex, DefaultWeightedEdge> graph,
|
static void addRemovedEdges(SimpleWeightedGraph<Vertex, DefaultWeightedEdge> graph,
|
||||||
Map<Vertex[], Integer> removedEdges) {
|
Map<Vertex[], Integer> removedEdges) {
|
||||||
for (Vertex[] edge : removedEdges.keySet()) {
|
for (Vertex[] edge : removedEdges.keySet()) {
|
||||||
|
|||||||
Reference in New Issue
Block a user