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. |
0 replies
|
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, |
1 reply
|
No problem & thank you! (The docs are not particularly good but I don't have time to improve them — any contributions are welcome ;-) ). |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Hello,
I am using gmx insert-molecules through GromacsWrapper. I would need to use the
-tryoption 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
tryis 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?
All reactions