I'm thinking of grouping dummy.py, align.py, and tleap.py into a common namespace called like maybe build. So then we would call these functions like
from paprika.build.dummy import add_dummy
from paprika.build.tleap import System
from paprika.build.align import zalign
And perhaps change the class name in tleap.py to TLeapSystem. The reasoning is because I'm planning to implement a similar class for building CHARMM-based systems (PSFGen+Packmol/Solvate), and maybe call it PSFGenSystem to follow the same convention.
I'm thinking of grouping
dummy.py
,align.py
, andtleap.py
into a common namespace called like maybebuild
. So then we would call these functions likeAnd perhaps change the class name in
tleap.py
toTLeapSystem
. The reasoning is because I'm planning to implement a similar class for building CHARMM-based systems (PSFGen+Packmol/Solvate), and maybe call itPSFGenSystem
to follow the same convention.@slochower what do you think?