Skip to content

Commit 846911a

Browse files
committed
Merge remote-tracking branch 'origin/main' into unify_license
2 parents 981d194 + 0ffa6c5 commit 846911a

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

unidock/src/main/main.cpp

-5
Original file line numberDiff line numberDiff line change
@@ -109,11 +109,6 @@ void classifyLigands(const std::vector<Ligand>& ligands,std::vector<Ligand> &sma
109109
} else if (lig.num_atoms <= atomThresholds[3] && lig.num_torsions <= torsionThresholds[3] &&
110110
lig.num_rigids <= rigidThresholds[3] && lig.num_lig_pairs <= pairThresholds[3]) {
111111
extraLargeGroup.push_back(lig);
112-
} else if (lig.num_atoms <= atomThresholds[4] &&
113-
lig.num_torsions <= torsionThresholds[4] &&
114-
lig.num_rigids <= rigidThresholds[4] &&
115-
lig.num_lig_pairs <= pairThresholds[4]) {
116-
maxGroup.push_back(lig);
117112
} else {
118113
overflowGroup.push_back(lig);
119114
}

0 commit comments

Comments
 (0)