Skip to content

Commit

Permalink
Temp removal of mol endpoints except legacy and summary (#941)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jason Munro authored Feb 16, 2024
1 parent 424841e commit 36fdfff
Showing 1 changed file with 45 additions and 45 deletions.
90 changes: 45 additions & 45 deletions emmet-api/molecule_resources.py
Original file line number Diff line number Diff line change
Expand Up @@ -135,51 +135,51 @@

mp_molecules_resources = list()

# Tasks
mp_molecules_resources.extend(
[
task_resource(task_store),
task_deprecation_resource(task_store),
trajectory_resource(task_store),
]
)

# Assoc
mp_molecules_resources.extend(
[mol_assoc_resource(assoc_store), find_molecule_assoc_resource(assoc_store)]
)

# Molecules
mp_molecules_resources.extend(
[
molecules_resource(mol_store),
find_molecule_resource(mol_store),
]
)

# Partial charges
mp_molecules_resources.extend([charges_resource(charges_store)])

# Partial spins
mp_molecules_resources.extend([spins_resource(spins_store)])

# Bonds
mp_molecules_resources.extend([bonding_resource(bonds_store)])

# Metal binding
mp_molecules_resources.extend([metal_binding_resource(metal_binding_store)])

# Orbitals
mp_molecules_resources.extend([orbitals_resource(orbitals_store)])

# Redox
mp_molecules_resources.extend([redox_resource(redox_store)])

# Thermo
mp_molecules_resources.extend([thermo_resource(thermo_store)])

# Vibes
mp_molecules_resources.extend([vibration_resource(vibes_store)])
## Tasks
# mp_molecules_resources.extend(
# [
# task_resource(task_store),
# task_deprecation_resource(task_store),
# trajectory_resource(task_store),
# ]
# )
#
## Assoc
# mp_molecules_resources.extend(
# [mol_assoc_resource(assoc_store), find_molecule_assoc_resource(assoc_store)]
# )
#
## Molecules
# mp_molecules_resources.extend(
# [
# molecules_resource(mol_store),
# find_molecule_resource(mol_store),
# ]
# )
#
## Partial charges
# mp_molecules_resources.extend([charges_resource(charges_store)])
#
## Partial spins
# mp_molecules_resources.extend([spins_resource(spins_store)])
#
## Bonds
# mp_molecules_resources.extend([bonding_resource(bonds_store)])
#
## Metal binding
# mp_molecules_resources.extend([metal_binding_resource(metal_binding_store)])
#
## Orbitals
# mp_molecules_resources.extend([orbitals_resource(orbitals_store)])
#
## Redox
# mp_molecules_resources.extend([redox_resource(redox_store)])
#
## Thermo
# mp_molecules_resources.extend([thermo_resource(thermo_store)])
#
## Vibes
# mp_molecules_resources.extend([vibration_resource(vibes_store)])

# Summary
mp_molecules_resources.extend([summary_resource(summary_store)])
Expand Down

0 comments on commit 36fdfff

Please sign in to comment.