Closed dpadula85 closed 2 years ago
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.
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, D.
No problem & thank you!
(The docs are not particularly good but I don't have time to improve them — any contributions are welcome ;-) ).
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 triedgromacs.insert_molecules( f=my_file1, ci=my_file2, input=('-try 100')
but apparently does not work. Any suggestion on how to do it?