Code Monkey home page Code Monkey logo

Comments (2)

dotsdl avatar dotsdl commented on July 24, 2024

A Sim doesn't care where the files live that its UniverseDefinition points to, so you could create a bunch of Sim objects anywhere in your filesystem and then define their universes as normal:

import mdsynthesis as mds

sourcedir = mds.Tree('sim')

for traj in sourcedir.glob(*.xtc):
    s = mds.Sim("sim_{}".format(traj.name.split('.')[1]))
    s.universedef.topology = sourcedir['foo.pdb'].abspath
    s.universedef.trajectory = traj.abspath

This will create sim_01, sim_02, and sim_03 in the current directory, and each one will have its universe definition set up as I think you want.

Although MDS works just fine with this approach, in practice I think it works better when the files for a given simulation all reside in that Sim object's tree, since then it's easier to do things like:

import mdsynthesis as mds
import gromacs

b = mds.discover()

# if the xtc files are inside the top level of each Sim, we could grab them
# all like this
xtcs = b.glob('*.xtc')

# let's make a trajectory for each with a coarser timestep
for xtc in xtcs:
    gromcs.trjconv(f=xtc.abspath,
                            o=xtc.parent["{}_dt1ps.xtc".format(xtc.name.partition('.xtc')[0])],
                            dt=1)

since you don't have to grab these files outside of the tree and make sense of which corresponds to what Sim, but it will all technically still work.

from mdsynthesis.

kain88-de avatar kain88-de commented on July 24, 2024

yup that works thanks

from mdsynthesis.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.