2021-04-12 Pulido/Wagner Meeting notes
Date
Apr 12, 2021
Participants
@Jeffrey Wagner
@Iván Pulido
Discussion topics
Item | Notes |
---|---|
Project planning and breaking down into 1-5 day chunks |
|
class AtomBase(BaseModel):
name: str
def CheminformaticsAtom(AtomBase):
element: simtk.app.openmm.element.Element
formal_charge: simtk.unit.Quantity
def AtomTypedAtom(AtomBase):
atom_type: str
class TopologyAtom(AtomBase):
...
topology_atom_index: int
atom1 = CheminformaticsAtom(element='C', formal_charge=0)
atom2 = AtomTypedAtom(atom_type='CA')
(somehow get these added to the same topology)
for atom in topology.topology_atoms:
print(atom)
>>> TopologyAtom
The way that MosDeF works
|