Replies: 1 comment
-
ASE does appear to support PDB: https://wiki.fysik.dtu.dk/ase/ase/io/formatoptions.html#proteindatabank You can easily generate example extXYZ files using some combination of |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Q1.) The trajectory of the MD simulations has been computed by using AMBER, could anyone please tell me that how can I convert the pdb format to the extxyz format to be the input of the training data ?
I used the following code but it is not possible to convert to the extxyz format with the error message shown (NameError: name 'extxyz' is not defined)
import numpy as np
from ase.io import read, write
atoms = read('input.pdb')
write('output.extxyz', atoms, format='xyz')
Q2.) Is it also possible for you to share me an input data in the extxyz format, and how can i arrange it for being the training set data ?
Thanks!
Beta Was this translation helpful? Give feedback.
All reactions