Skip to content

An attempt at making a special subtype of MDAnalysis.Universe which allows a mapping scheme to be applied on the fly to an atomistic trajectory.

License

Notifications You must be signed in to change notification settings

richardjgowers/MDAnalysis-coarsegraining

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

MDAnalysis-coarsegraining

A special subclass of MDAnalysis.Universe which allows a mapping scheme to be applied on the fly to an atomistic trajectory, giving a virtual coarse-grained representation.

Currently, load an atomistic set of results as normal, but supply a mapping scheme. The mapping scheme is a dictionary which links residue names to a list of list of indices for each bead. This should then make the CGUniverse supply positions (later velocities and forces?) according to the mapping scheme.

Potential useful for creating reference behaviour of atomistic trajectory when constructing coarse-grained models.

Requires MDAnalysis v0.19+

Simple example, three water molecules coarse-grained into 3 sites:

from cguniverse import CGUniverse

# for each resname, list of lists, each sublist becomes a bead.
# the indices refer to 
mapping = {'SOL':[[0, 1, 2]]}
cgu = CGUniverse('testdata/water.gro', mapping=mapping)

# The CGU has 3 "atoms", each representing a molecule
list(cgu.atoms)

# Each "atom" is a bead which gives the center of mass of each water molecule
cgu.atoms.positions

Multiple beads per molecule. Here octanol is split into 2 beads, the first beads has the first 11 atoms (range(11)), the second the remaining atoms.

from cguniverse import CGUniverse

mapping={'OcOH':[list(range(11)), list(range(11, 27))]}) # enough right brackets?

cgu = CGUniverse('testdata/octanol.gro', mapping=mapping)

About

An attempt at making a special subtype of MDAnalysis.Universe which allows a mapping scheme to be applied on the fly to an atomistic trajectory.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages