Skip to content

Commit

Permalink
Fix graph creation
Browse files Browse the repository at this point in the history
  • Loading branch information
matthiasblum committed Feb 15, 2024
1 parent bb148d9 commit 591b684
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1121,7 +1121,7 @@ public int compare(Domain d1, Domain d2) {

for (int j = 0; j < bestDomainsInGroup.size(); j++) {
if (i != j) {
edges.add(i);
edges.add(j);
}
}

Expand All @@ -1142,7 +1142,6 @@ public int compare(Domain d1, Domain d2) {
}

List<Set<Integer>> subgroups = new DomainResolver(graph).resolve();

int maxCoverage = 0;
int maxPfams = 0;
List<Domain> bestSubgroup = null;
Expand Down

0 comments on commit 591b684

Please sign in to comment.