LOOS for a PCA - LAMMPS output #59
-
Hi,
|
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 7 replies
-
Hi, To do PCA using loos, you don't need to write a python script -- there's an existing program ( You'll need to build and install loos, and as you said working from lammps you'll need a pdb file as your system file and a dcd as your trajectory. The simplest command line would be To see some example command lines and get a detailed explanation of the output, run You'll want to be very careful about specifying Hope this helps, Alan |
Beta Was this translation helpful? Give feedback.
-
I still see 2 problems. First, the options ( Thus, the full correct command line should probably be:
I pointed this out above -- all of my examples have quotes around the arguments, as do all of the examples on the selection string web page (which also has a whole section about the need to quote them). I confess I'm getting a bit frustrated, because it feels like you're not bothering to read the things I'm sending you. |
Beta Was this translation helpful? Give feedback.
-
Alan, thank you so much! Yes, now I understood. I didn't realize about the quotes and the order, I was really focused in getting the correct .pdb file. Sorry for the many questions, I really didn't mean to be redundant. |
Beta Was this translation helpful? Give feedback.
I still see 2 problems. First, the options (
-A name == "ZN" -S name == "ZN"
should go before the required arguments. Second, you need to embed them in quotes, just like in the examples I've given you repeatedly. So, it should be something like-A 'name == "ZN"' -S 'name == "ZN"'
or the shell won't interpret the whole selection string as a single argument. Instead, it's seeing the option as "-A name", followed by arguments "==" and "ZN", which it's trying to interpret as trajectories, and thus is failing.Thus, the full correct command line should probably be:
svd -A 'name == "ZN"' -S 'name == "ZN"' GBF.pdb traj.dcd
I pointed this out above -- all of my examples have quotes around the ar…