I want to run dsDNA-protein MD simulations.
I have tried to use top_all36_na.rtf I
prepared a script to run psfgen:
package require psfgen
resetpsf
topology charmm36.nbfix/top_all36_na.rtf
topology charmm36.nbfix/top_all36_prot.rtf
topology charmm36.nbfix/top_water_ions.rtf
mol new prot-DNA.pdb
set sel [atomselect top protein]
set chains [lsort -unique [$sel get chain]] ;# return A
foreach chain $chains {
puts "Adding protein chain $chain to psfgen"
set seg ${chain}PRO
set sel [atomselect top "protein and chain $chain"]
$sel set segid $seg
$sel writepdb tmp.pdb
segment $seg { pdb tmp.pdb }
coordpdb tmp.pdb
}
set sel [atomselect top nucleic]
set chains [lsort -unique [$sel get chain]] ;# return A B C D
foreach chain $chains {
puts "Adding DNA chain $chain to psfgen"
set seg ${chain}DNA
set sel [atomselect top "nucleic and chain $chain"]
$sel set segid $seg
$sel writepdb tmp.pdb
segment $seg { pdb tmp.pdb }
set resids [lsort -unique [$sel get resid]]
foreach r $resids {
patch DEOX $seg:$r
}
regenerate angles dihedrals
coordpdb tmp.pdb
}
guesscoord
after that I am getting:
Adding DNA chain B to psfgen
psfgen) building segment BDNA
psfgen) reading residues from pdb file tmp.pdb
psfgen) extracted 46 residues from pdb file
psfgen) Info: generating structure...psfgen) Info: skipping conformation
O3'-O5'-P-O2P at beginning of segment.
psfgen) Info: skipping conformation O3'-O5'-P-O1P at beginning of segment.
psfgen) Info: skipping conformation O3'-P-O5'-C5' at beginning of segment.
psfgen) Info: skipping bond O3'-P at end of segment.
psfgen) Info: skipping conformation C3'-O3'-P-O5' at end of segment.
psfgen) Info: skipping conformation C4'-C3'-O3'-P at end of segment.
segment complete.
psfgen) applying patch DEOX to 1 residues
psfgen) applying patch DEOX to 1 residues
psfgen) applying patch DEOX to 1 residues
psfgen) applying patch DEOX to 1 residues
psfgen) applying patch DEOX to 1 residues
psfgen) applying patch DEOX to 1 residues
psfgen) applying patch DEOX to 1 residues
psfgen) applying patch DEOX to 1 residues
psfgen) applying patch DEOX to 1 residues
psfgen) applying patch DEOX to 1 residues
psfgen) applying patch DEOX to 1 residues
psfgen) applying patch DEOX to 1 residues
psfgen) applying patch DEOX to 1 residues
psfgen) applying patch DEOX to 1 residues
psfgen) applying patch DEOX to 1 residues
psfgen) applying patch DEOX to 1 residues
psfgen) applying patch DEOX to 1 residues
psfgen) applying patch DEOX to 1 residues
psfgen) applying patch DEOX to 1 residues
psfgen) applying patch DEOX to 1 residues
psfgen) applying patch DEOX to 1 residues
psfgen) applying patch DEOX to 1 residues
psfgen) applying patch DEOX to 1 residues
psfgen) applying patch DEOX to 1 residues
psfgen) applying patch DEOX to 1 residues
psfgen) applying patch DEOX to 1 residues
psfgen) applying patch DEOX to 1 residues
psfgen) applying patch DEOX to 1 residues
psfgen) applying patch DEOX to 1 residues
psfgen) applying patch DEOX to 1 residues
psfgen) applying patch DEOX to 1 residues
psfgen) applying patch DEOX to 1 residues
psfgen) applying patch DEOX to 1 residues
psfgen) applying patch DEOX to 1 residues
psfgen) applying patch DEOX to 1 residues
psfgen) applying patch DEOX to 1 residues
psfgen) applying patch DEOX to 1 residues
psfgen) applying patch DEOX to 1 residues
psfgen) applying patch DEOX to 1 residues
psfgen) applying patch DEOX to 1 residues
psfgen) applying patch DEOX to 1 residues
psfgen) applying patch DEOX to 1 residues
psfgen) applying patch DEOX to 1 residues
psfgen) applying patch DEOX to 1 residues
psfgen) applying patch DEOX to 1 residues
psfgen) applying patch DEOX to 1 residues
psfgen) regenerating all angles
psfgen) regenerating all dihedrals
psfgen) reading coordinates from pdb file tmp.pdb
psfgen) Warning: failed to set coordinate for atom C7 THY:288 BDNA
psfgen) Warning: failed to set coordinate for atom C7 THY:291 BDNA
psfgen) Warning: failed to set coordinate for atom C7 THY:292 BDNA
psfgen) Warning: failed to set coordinate for atom C7 THY:298 BDNA
psfgen) Warning: failed to set coordinate for atom C7 THY:299 BDNA
psfgen) Warning: failed to set coordinate for atom C7 THY:310 BDNA
psfgen) Warning: failed to set coordinate for atom C7 THY:316 BDNA
psfgen) Warning: failed to set coordinate for atom C7 THY:321 BDNA
psfgen) Warning: failed to set coordinate for atom C7 THY:323 BDNA
psfgen) Warning: failed to set coordinate for atom C7 THY:330 BDNA
What did go wrong?
Could someone please let me know what sort of mistake I've probably made
here?