Skip to content

Commit

Permalink
Refactored into potential and interaction
Browse files Browse the repository at this point in the history
  • Loading branch information
FNTwin committed Mar 5, 2024
1 parent 9b70b84 commit 0dd2184
Show file tree
Hide file tree
Showing 22 changed files with 65 additions and 19 deletions.
38 changes: 19 additions & 19 deletions openqdc/datasets/__init__.py
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
from .ani import ANI1, ANI1CCX, ANI1X # noqa
from .base import BaseDataset # noqa
from .comp6 import COMP6 # noqa
from .des import DES # noqa
from .dummy import Dummy # noqa
from .gdml import GDML # noqa
from .geom import GEOM # noqa
from .iso_17 import ISO17 # noqa
from .molecule3d import Molecule3D # noqa
from .nabladft import NablaDFT # noqa
from .orbnet_denali import OrbnetDenali # noqa
from .pcqm import PCQM_B3LYP, PCQM_PM6 # noqa
from .qm7x import QM7X # noqa
from .qmugs import QMugs # noqa
from .sn2_rxn import SN2RXN # noqa
from .solvated_peptides import SolvatedPeptides # noqa
from .spice import Spice # noqa
from .tmqm import TMQM # noqa
from .transition1x import Transition1X # noqa
from .waterclusters3_30 import WaterClusters # noqa
from .interaction.des import DES # noqa
from .potential.ani import ANI1, ANI1CCX, ANI1X # noqa
from .potential.comp6 import COMP6 # noqa
from .potential.dummy import Dummy # noqa
from .potential.gdml import GDML # noqa
from .potential.geom import GEOM # noqa
from .potential.iso_17 import ISO17 # noqa
from .potential.molecule3d import Molecule3D # noqa
from .potential.nabladft import NablaDFT # noqa
from .potential.orbnet_denali import OrbnetDenali # noqa
from .potential.pcqm import PCQM_B3LYP, PCQM_PM6 # noqa
from .potential.qm7x import QM7X # noqa
from .potential.qmugs import QMugs # noqa
from .potential.sn2_rxn import SN2RXN # noqa
from .potential.solvated_peptides import SolvatedPeptides # noqa
from .potential.spice import Spice # noqa
from .potential.tmqm import TMQM # noqa
from .potential.transition1x import Transition1X # noqa
from .potential.waterclusters3_30 import WaterClusters # noqa

AVAILABLE_DATASETS = {
"ani1": ANI1,
Expand Down
3 changes: 3 additions & 0 deletions openqdc/datasets/interaction/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
from .des import DES

AVAILABLE_DATASETS = {"des": DES}
File renamed without changes.
43 changes: 43 additions & 0 deletions openqdc/datasets/potential/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
from .ani import ANI1, ANI1CCX, ANI1X # noqa
from .comp6 import COMP6 # noqa
from .des import DES # noqa
from .dummy import Dummy # noqa
from .gdml import GDML # noqa
from .geom import GEOM # noqa
from .iso_17 import ISO17 # noqa
from .molecule3d import Molecule3D # noqa
from .nabladft import NablaDFT # noqa
from .orbnet_denali import OrbnetDenali # noqa
from .pcqm import PCQM_B3LYP, PCQM_PM6 # noqa
from .qm7x import QM7X # noqa
from .qmugs import QMugs # noqa
from .sn2_rxn import SN2RXN # noqa
from .solvated_peptides import SolvatedPeptides # noqa
from .spice import Spice # noqa
from .tmqm import TMQM # noqa
from .transition1x import Transition1X # noqa
from .waterclusters3_30 import WaterClusters # noqa

AVAILABLE_DATASETS = {
"ani1": ANI1,
"ani1ccx": ANI1CCX,
"ani1x": ANI1X,
"comp6": COMP6,
"des": DES,
"gdml": GDML,
"geom": GEOM,
"iso17": ISO17,
"molecule3d": Molecule3D,
"nabladft": NablaDFT,
"orbnetdenali": OrbnetDenali,
"pcqmb3lyp": PCQM_B3LYP,
"pcqmpm6": PCQM_PM6,
"qm7x": QM7X,
"qmugs": QMugs,
"sn2rxn": SN2RXN,
"solvatedpeptides": SolvatedPeptides,
"spice": Spice,
"tmqm": TMQM,
"transition1x": Transition1X,
"watercluster": WaterClusters,
}
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 0dd2184

Please sign in to comment.