Skip to content

Commit

Permalink
removing unnecesary angle tools
Browse files Browse the repository at this point in the history
  • Loading branch information
Jgmedina95 committed Jan 24, 2025
1 parent 16c0be9 commit 5467132
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 40 deletions.
22 changes: 1 addition & 21 deletions mdagent/tools/base_tools/analysis_tools/__init__.py
Original file line number Diff line number Diff line change
@@ -1,15 +1,4 @@
from .bond_angles_dihedrals_tool import (
ComputeAngles,
ComputeChi1,
ComputeChi2,
ComputeChi3,
ComputeChi4,
ComputeDihedrals,
ComputeOmega,
ComputePhi,
ComputePsi,
RamachandranPlot,
)
from .bond_angles_dihedrals_tool import ComputeAngles
from .distance_tools import ContactsTool, DistanceMatrixTool
from .inertia import MomentOfInertia
from .pca_tools import PCATool
Expand All @@ -22,14 +11,6 @@

__all__ = [
"ComputeAngles",
"ComputeChi1",
"ComputeChi2",
"ComputeChi3",
"ComputeChi4",
"ComputeDihedrals",
"ComputeOmega",
"ComputePhi",
"ComputePsi",
"ComputeLPRMSD",
"ComputeRMSD",
"ComputeRMSF",
Expand All @@ -39,7 +20,6 @@
"PCATool",
"PPIDistance",
"RadiusofGyrationTool",
"RamachandranPlot",
"RMSDCalculator",
"SimulationOutputFigures",
"SolventAccessibleSurfaceArea",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ class ComputeAngles(BaseTool):
analysis of the phi-psi angles, chi1-chi2 angles, or both. """

path_registry: PathRegistry | None = None
args_schema = ComputingAnglesSchema

def __init__(self, path_registry: PathRegistry):
super().__init__()
Expand Down
20 changes: 1 addition & 19 deletions mdagent/tools/maketools.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,20 +13,12 @@
from .base_tools import (
CleaningToolFunction,
ComputeAcylindricity,
ComputeAngles,
ComputeAsphericity,
ComputeDSSP,
ComputeGyrationTensor,
ComputeAngles,
ComputeChi1,
ComputeChi2,
ComputeChi3,
ComputeChi4,
ComputeDihedrals,
ComputeLPRMSD,
ComputeRelativeShapeAntisotropy,
ComputeOmega,
ComputePhi,
ComputePsi,
ComputeRMSD,
ComputeRMSF,
ContactsTool,
Expand Down Expand Up @@ -56,7 +48,6 @@
PPIDistance,
ProteinName2PDBTool,
RadiusofGyrationTool,
RamachandranPlot,
RDFTool,
Scholar2ResultLLM,
SetUpandRunFunction,
Expand Down Expand Up @@ -96,14 +87,6 @@ def make_all_tools(
ComputeGyrationTensor(path_registry=path_instance),
ComputeRelativeShapeAntisotropy(path_registry=path_instance),
ComputeAngles(path_registry=path_instance),
ComputeChi1(path_registry=path_instance),
ComputeChi2(path_registry=path_instance),
ComputeChi3(path_registry=path_instance),
ComputeChi4(path_registry=path_instance),
ComputeDihedrals(path_registry=path_instance),
ComputeOmega(path_registry=path_instance),
ComputePhi(path_registry=path_instance),
ComputePsi(path_registry=path_instance),
CleaningToolFunction(path_registry=path_instance),
ComputeLPRMSD(path_registry=path_instance),
ComputeRMSD(path_registry=path_instance),
Expand All @@ -117,7 +100,6 @@ def make_all_tools(
PPIDistance(path_registry=path_instance),
ProteinName2PDBTool(path_registry=path_instance),
RadiusofGyrationTool(path_registry=path_instance),
RamachandranPlot(path_registry=path_instance),
RDFTool(path_registry=path_instance),
SetUpandRunFunction(path_registry=path_instance),
SimulationOutputFigures(path_registry=path_instance),
Expand Down

0 comments on commit 5467132

Please sign in to comment.