Relatively new user here,
I have been using openMM with amber FF for both DNA and RNA without major problems but I am struggling to apply patches to run modified DNA/RNA sequences.
I had a look around the forum and I have followed the instructions on this link,
http://docs.openmm.org/latest/userguide ... ce%20field
but I still getting the usual "ValueError: No template found for residue 2 (DG)" and cannot figure out what I am doing wrong.
As an example, I want to run the phosphorothioate version (one oxygen bound on the phosphate is swapped with a sulphur atom) of a simple CG dimer. My approach is to modify the .xlm file to add the patch like showed below:
adding the new atom type
Code: Select all
<Type class="PS" element="S" mass="32.06" name="DNA-S"/>
Code: Select all
<Patches>
<Patch name="PS">
<ChangeAtom name="S" type="DNA-S"/>
</Patch>
</Patches>
Code: Select all
<AllowPatch name="PS"/>
Code: Select all
ATOM 29 P DG A 2 22.409 31.286 21.483 1.00 0.00 P
ATOM 30 S DG A 2 23.536 32.157 21.851 1.00 0.00 S
ATOM 31 OP2 DG A 2 21.822 31.459 20.139 1.00 0.00 O
ATOM 32 O5' DG A 2 22.840 29.751 21.498 1.00 0.00 O
I know it is a simple problem but I think a lot of new users could benefit from a clarification....
I am more than happy to provide the input files, the modified .xlm and the python script if useful.
Thanks guys for the great work.