Shapespyer 0.2.3__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- scripts/__init__.py +0 -0
- scripts/ana_solution.py +1130 -0
- scripts/ana_solvent.py +775 -0
- scripts/ana_trajectory.py +659 -0
- scripts/bash_cli.py +72 -0
- scripts/convert_aa2cg.py +239 -0
- scripts/densities.py +43 -0
- scripts/dlm_ana_density.py +1178 -0
- scripts/dlm_ana_gyration.py +1187 -0
- scripts/dlm_ana_solvation.py +1147 -0
- scripts/dlm_atoms2beads.py +404 -0
- scripts/dlm_equilibrate.py +1231 -0
- scripts/dlm_production_run.py +1320 -0
- scripts/dlm_solvate.py +984 -0
- scripts/dlm_visualise_dcd.py +1188 -0
- scripts/dlm_visualise_vmd.py +1136 -0
- scripts/gmx-add-ions-solv.bsh +169 -0
- scripts/gmx-ana-clusters-for.bsh +103 -0
- scripts/gmx-ana-clusters-prl.bsh +334 -0
- scripts/gmx-ana-clusters.bsh +170 -0
- scripts/gmx-ana-gyration-dirs.bsh +172 -0
- scripts/gmx-ana-gyration-pieces.bsh +177 -0
- scripts/gmx-ana-gyration.bsh +309 -0
- scripts/gmx-ana-maxclust-for.bsh +54 -0
- scripts/gmx-ana-solvation.bsh +549 -0
- scripts/gmx-center-cluster.bsh +255 -0
- scripts/gmx-equilibrate.bsh +302 -0
- scripts/gmx-posres-gro.bsh +77 -0
- scripts/gmx-setup-equil.bsh +445 -0
- scripts/gmx-setup-multi.bsh +512 -0
- scripts/namd_bilayer_calculate_ndens.py +425 -0
- scripts/namd_bilayer_calculate_sld.py +87 -0
- scripts/namd_bilayer_postprocessing.py +180 -0
- scripts/namd_setup_equil.py +207 -0
- scripts/namd_setup_psf.py +270 -0
- scripts/namd_solvate.py +365 -0
- scripts/shape_structure.py +172 -0
- scripts/smiles.py +40 -0
- shapes/__init__.py +0 -0
- shapes/basics/__init__.py +0 -0
- shapes/basics/defaults.py +211 -0
- shapes/basics/functions.py +269 -0
- shapes/basics/globals.py +68 -0
- shapes/basics/help.py +328 -0
- shapes/basics/input.py +417 -0
- shapes/basics/mendeleyev.py +280 -0
- shapes/basics/options.py +2072 -0
- shapes/basics/temp.yaml +64 -0
- shapes/basics/utils.py +1674 -0
- shapes/cgmap/__init__.py +0 -0
- shapes/cgmap/coarse_grainer.py +1092 -0
- shapes/cgmap/martini_converter.py +260 -0
- shapes/cgmap/molecule_mapper.py +440 -0
- shapes/designs/__init__.py +0 -0
- shapes/designs/protolattice.py +406 -0
- shapes/designs/protolayer.py +500 -0
- shapes/designs/protoshape.py +2136 -0
- shapes/designs/smiles.py +4254 -0
- shapes/ioports/__init__.py +10 -0
- shapes/ioports/ioconfig.py +415 -0
- shapes/ioports/iodcd.py +555 -0
- shapes/ioports/iofield.py +360 -0
- shapes/ioports/iofiles.py +164 -0
- shapes/ioports/ioframe.py +1381 -0
- shapes/ioports/iogro.py +764 -0
- shapes/ioports/iohistory.py +740 -0
- shapes/ioports/iopdb.py +562 -0
- shapes/ioports/iotop.py +1921 -0
- shapes/ioports/iotraj.py +2751 -0
- shapes/ioports/ioxyz.py +191 -0
- shapes/models/__init__.py +0 -0
- shapes/models/topology.py +521 -0
- shapes/project/__init__.py +5 -0
- shapes/project/analysis.py +44 -0
- shapes/project/assets.py +48 -0
- shapes/project/core.py +167 -0
- shapes/project/files.py +207 -0
- shapes/project/project.py +31 -0
- shapes/project/sample_model.py +143 -0
- shapes/stage/__init__.py +0 -0
- shapes/stage/protoatom.py +254 -0
- shapes/stage/protoatomset.py +693 -0
- shapes/stage/protomolecularsystem.py +1169 -0
- shapes/stage/protomolecule.py +2252 -0
- shapes/stage/protomoleculeset.py +1458 -0
- shapes/stage/protovector.py +432 -0
- shapespyer-0.2.3.dist-info/METADATA +132 -0
- shapespyer-0.2.3.dist-info/RECORD +91 -0
- shapespyer-0.2.3.dist-info/WHEEL +4 -0
- shapespyer-0.2.3.dist-info/entry_points.txt +37 -0
- shapespyer-0.2.3.dist-info/licenses/LICENSE +49 -0
scripts/__init__.py
ADDED
|
File without changes
|