Skip to content
Discussion options

You must be logged in to vote

@Lynn3512138 I am sorry, until #5224 is fixed you might have to use an older version of MDAnalysis (try 2.9.0 – I am guessing that the issue was introduced with adding parallelization to RDF).

Or convert your gsd to another topology and trajectory file, e.g., TRR (should always work) or H5MD (which is fancier and faster but may require additional installed packages):

u = mda.Universe("2_B50_try7.gsd")
u.residues.resnames = "UNK"   # PDB needs string as a resname
u.atoms.write("2_B50_try7.pdb")
u.atoms.write("2_B50_try7.trr", frames="all")  # TRR should always work
u.atoms.write("2_B50_try7.h5md", frames="all", timeunit="ps", lengthunit="A") # may require hdf5/h5py/h5md packages

and then use

Replies: 2 comments 7 replies

Comment options

You must be logged in to vote
7 replies
@Lynn3512138
Comment options

@orbeckst
Comment options

@orbeckst
Comment options

@orbeckst
Comment options

Answer selected by Lynn3512138
@Lynn3512138
Comment options

@orbeckst
Comment options

@orbeckst
Comment options

Comment options

You must be logged in to vote
0 replies
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants