-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[QUESTION] Can't convert Amber's trajectories with MDAnalysis
#64
Comments
Hi @vsheg , Thanks for using If you installed Otherwise, for now, you can try to install all dependencies using Anaconda and installing on top just the
This should work. Otherwise, let me know. Many improvements will be done after #60. Looking forward to merging that pull request in the following days. After that PR, I will also review/update the installation instructions. If you want to look further into the code to try to solve the problem yourself and make a PRs the function that reads the trajectories is here: taurenmd/src/taurenmd/libs/libmda.py Line 25 in 3100ca8
|
Thanks for your reply. I don't think I'm able to look at the PR or code in a meaningful way. I just write an instruction on how to reproduce this behavior. I hope it will be useful. This archive taurenmd-test.zip contains all needed files. I tried to create a new Python environment with $ poetry init # init Poetry environment
<...>
$ poetry env use 3.9 # specify Python version to use
$ poetry add taurenmd # MDAnalysis won't be installed
$ poetry add MDAnalysis # add it explicitly
$ poetry update # update environment (not necessary, I guess)
$ poetry shell # activate the environment
# try to convert
$ taurenmd trajedit trpzip2.ff10.mbondi.parm7 trpzip2.gb.nc -d traj.dcd
<...>
ModuleNotFoundError: No module named 'mdtraj' To install this environment, just unpack the attached archive and then $ cd taurenmd-test
$ poetry install # install environment and dependencies
$ poetry shell # activate environment ( In the archive :
$ python3 mda.py |
Hello, I've installed
taurenmd
via pip and I've tried to convert.nc
trajectory to the.dcd
format. I know, thatMDAnalysis
is capable of doing it natively, but when I try to do this withtaurenmd
:I see
and then, after installation of
mdtraj
:How I can use
taurenmd
to convert trajectory withoutmdtraj
,simtk.openmm
, etc., using onlyMDAnalysis
? Thanks for your attentionThe text was updated successfully, but these errors were encountered: