Replies: 3 comments 1 reply
-
Hi @dpadula85 , try prefixing with underscore: gromacs.insert_molecules( f=my_file1, ci=my_file2, _try=100) This hack is documented under https://gromacswrapper.readthedocs.io/en/latest/gromacs/core/core.html?highlight=underscore#gromacs.core.GromacsCommand but it's not easy to find. |
Beta Was this translation helpful? Give feedback.
-
Hi @orbeckst, as usual my bad for not going thoroughly through the docs. Thanks once again for your help, let me take the occasion to say that I'm a big fan of your tools! Cheers, |
Beta Was this translation helpful? Give feedback.
-
No problem & thank you! (The docs are not particularly good but I don't have time to improve them — any contributions are welcome ;-) ). |
Beta Was this translation helpful? Give feedback.
-
Hello,
I am using gmx insert-molecules through GromacsWrapper. I would need to use the
-try
option of the program, to increaase the number of attempts needed to introduce a new residue. However, I cannot dogromacs.insert_molecules( f=my_file1, ci=my_file2, try=100)
because
try
is a python command.I also tried
gromacs.insert_molecules( f=my_file1, ci=my_file2, input=('-try 100')
but apparently does not work.
Any suggestion on how to do it?
Beta Was this translation helpful? Give feedback.
All reactions