/usr/share/pdb2pqr/src/na.py is in pdb2pqr 2.1.1+dfsg-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 | """
Nucleic Acid Structures for PDB2PQR
This module contains the base nucleic acid structures for
pdb2pqr.
----------------------------
PDB2PQR -- An automated pipeline for the setup, execution, and analysis of
Poisson-Boltzmann electrostatics calculations
Copyright (c) 2002-2011, Jens Erik Nielsen, University College Dublin;
Nathan A. Baker, Battelle Memorial Institute, Developed at the Pacific
Northwest National Laboratory, operated by Battelle Memorial Institute,
Pacific Northwest Division for the U.S. Department Energy.;
Paul Czodrowski & Gerhard Klebe, University of Marburg.
All rights reserved.
Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
* Neither the names of University College Dublin, Battelle Memorial Institute,
Pacific Northwest National Laboratory, US Department of Energy, or University
of Marburg nor the names of its contributors may be used to endorse or promote
products derived from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
OF THE POSSIBILITY OF SUCH DAMAGE.
----------------------------
"""
__date__ = "28 February 2006"
__author__ = "Todd Dolinsky"
import string
from structures import *
class Nucleic(Residue):
"""
Nucleic class
This class provides standard features of the nucleic acids listed
below
Parameters
atoms: A list of Atom objects to be stored in this class
(list)
ref: The reference object for the amino acid. Used to
convert from the alternate naming scheme to the
main naming scheme.
"""
def __init__(self, atoms, ref):
sampleAtom = atoms[-1]
self.atoms = []
self.name = sampleAtom.resName
self.chainID = sampleAtom.chainID
self.resSeq = sampleAtom.resSeq
self.iCode = sampleAtom.iCode
self.ffname = self.name
self.map = {}
self.dihedrals = []
self.patches = []
self.is3term = 0
self.is5term = 0
self.isCterm = 0
self.isNterm = 0
self.missing = []
self.reference = ref
# Create each atom
for a in atoms:
if a.name in ref.altnames: # Rename atoms
a.name = ref.altnames[a.name]
if a.name not in self.map:
atom = Atom(a, "ATOM", self)
self.addAtom(atom)
def createAtom(self, atomname, newcoords):
"""
Create an atom. Overrides the generic residue's createAtom().
Parameters
atomname: The name of the atom to add (string)
newcoords: The coordinates of the atom (list)
"""
oldatom = self.atoms[0]
newatom = Atom(oldatom, "ATOM", self)
newatom.set("x",newcoords[0])
newatom.set("y",newcoords[1])
newatom.set("z",newcoords[2])
newatom.set("name", atomname)
newatom.set("occupancy",1.00)
newatom.set("tempFactor",0.00)
newatom.added = 1
self.addAtom(newatom)
def addAtom(self, atom):
"""
Override the existing addAtom - include the link to the
reference object
"""
self.atoms.append(atom)
atomname = atom.get("name")
self.map[atomname] = atom
try:
atom.reference = self.reference.map[atomname]
for bond in atom.reference.bonds:
if self.hasAtom(bond):
bondatom = self.map[bond]
if bondatom not in atom.bonds: atom.bonds.append(bondatom)
if atom not in bondatom.bonds: bondatom.bonds.append(atom)
except KeyError:
atom.reference = None
def addDihedralAngle(self, value):
"""
Add the value to the list of chiangles
Parameters
value: The value to be added (float)
"""
self.dihedrals.append(value)
def setState(self):
"""
Adds the termini for all inherited objects
"""
if self.is5term: self.ffname = self.ffname + "5"
if self.is3term: self.ffname = self.ffname + "3"
class ADE(Nucleic):
"""
Adenosine class
This class gives data about the Adenosine object, and inherits
off the base residue class.
"""
def __init__(self, atoms, ref):
"""
Initialize the class
Parameters
atoms: A list of Atom objects to be stored in this class
(list)
"""
Nucleic.__init__(self, atoms, ref)
self.reference = ref
def letterCode(self):
return 'A'
def setState(self):
"""
Set the state to distinguish RNA from DNA.
"""
if self.hasAtom("O2'"): self.ffname = "RA"
else: self.ffname = "DA"
Nucleic.setState(self)
class CYT(Nucleic):
"""
Cytidine class
This class gives data about the Cytidine object, and inherits
off the base residue class.
"""
def __init__(self, atoms, ref):
"""
Initialize the class
Parameters
atoms: A list of Atom objects to be stored in this class
(list)
"""
Nucleic.__init__(self, atoms, ref)
self.reference = ref
def letterCode(self):
return 'C'
def setState(self):
"""
Set the state to distinguish RNA from DNA.
"""
if self.hasAtom("O2'"): self.ffname = "RC"
else: self.ffname = "DC"
Nucleic.setState(self)
class GUA(Nucleic):
"""
Guanosine class
This class gives data about the Guanosine object, and inherits
off the base residue class.
"""
def __init__(self, atoms, ref):
"""
Initialize the class
Parameters
atoms: A list of Atom objects to be stored in this class
(list)
"""
Nucleic.__init__(self, atoms, ref)
self.reference = ref
def letterCode(self):
return 'G'
def setState(self):
"""
Set the state to distinguish RNA from DNA.
"""
if self.hasAtom("O2'"): self.ffname = "RG"
else: self.ffname = "DG"
Nucleic.setState(self)
class THY(Nucleic):
"""
Thymine class
This class gives data about the Thymine object, and inherits
off the base residue class.
"""
def __init__(self, atoms, ref):
"""
Initialize the class
Parameters
atoms: A list of Atom objects to be stored in this class
(list)
"""
Nucleic.__init__(self, atoms, ref)
self.reference = ref
def letterCode(self):
return 'T'
def setState(self):
"""
Set the state to distinguish RNA from DNA. In this case it is
always DNA.
"""
self.ffname = "DT"
Nucleic.setState(self)
class URA(Nucleic):
"""
Uridine class
This class gives data about the Uridine object, and inherits
off the base residue class.
"""
def __init__(self, atoms, ref):
"""
Initialize the class
Parameters
atoms: A list of Atom objects to be stored in this class
(list)
"""
Nucleic.__init__(self, atoms, ref)
self.reference = ref
def letterCode(self):
return 'U'
def setState(self):
"""
Set the state to distinguish RNA from DNA. In this case it is
always RNA.
"""
self.ffname = "RU"
Nucleic.setState(self)
#Tie the class name to the base name in NA.XML
class RA(ADE):
pass
class RC(CYT):
pass
class RG(GUA):
pass
class DT(THY):
pass
class RU(URA):
pass
|