Skip to content

Commit

Permalink
First commit
Browse files Browse the repository at this point in the history
moving to GitHub
  • Loading branch information
alanwilter authored Oct 20, 2017
1 parent 608ae68 commit d7bbde0
Show file tree
Hide file tree
Showing 4 changed files with 4,200 additions and 0 deletions.
338 changes: 338 additions & 0 deletions CcpnToAcpype.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,338 @@
from __future__ import print_function
from builtins import range
from builtins import object
from shutil import rmtree
from acpype import elapsedTime, header, ACTopol
import time
import traceback
import sys
import os
import string
import random

from ccpnmr.format.converters import PdbFormat # @UnresolvedImport
from ccpnmr.format.converters import Mol2Format # @UnresolvedImport

try:
letters = string.letters # @UndefinedVariable
except:
letters = string.ascii_letters


def dirWalk(adir):
"walk all files for a dir"
for f in os.listdir(adir):
fullpath = os.path.abspath(os.path.join(adir, f))
if os.path.isdir(fullpath) and not os.path.islink(fullpath):
for x in dirWalk(fullpath): # recurse into subdir
yield x
else:
yield fullpath


def addMolPep(cnsPepPath, molName):
"""
Add info about MOL in CNS topol*.pep file
input: cns pep file path to be modified and MOL name
"""
txt = "first IONS tail + %s end\nlast IONS head - %s end\n\n" % (molName, molName)
pepFile = open(cnsPepPath).read()
if txt in pepFile:
print("%s already added to %s" % (molName, cnsPepPath))
return False
pepFile = pepFile.splitlines(1)
pepFile.reverse()
for line in pepFile:
if line != '\n':
if 'SET ECHO' in line.upper():
an_id = pepFile.index(line)
pepFile.insert(an_id + 1, txt)
break
pepFile.reverse()
nPepFile = open(cnsPepPath, 'w')
nPepFile.writelines(pepFile)
nPepFile.close()
print("%s added to %s" % (molName, cnsPepPath))
return True


def addMolPar(cnsParPath, molParPath):
"""
Add parameters of MOL.par in CNS paralldhg*.pro file
input: cns par file path to be modified and MOL.par file
"""
def formatLine(line, n):
items = line.split()
mult = eval(items[6])
if len(items) < len(items) + (mult - 1) * 3:
for i in range(1, mult):
line += molFile[n + i]
n += (mult - 1)
return line, n

pars = ['BOND', 'ANGLe', 'DIHEdral', 'IMPRoper', 'NONBonded']
molName = os.path.basename(molParPath).split('_')[0]
txt = "! Parameters for Heterocompound %s\n" % molName
end = "! end %s\n\n" % molName

parFile = open(cnsParPath).read()
if txt in parFile:
print("%s already added to %s" % (molName, cnsParPath))
return False

molFile = open(molParPath).readlines()
molList = []
n = 0
for n in range(len(molFile)):
line = molFile[n]
if line.strip()[0:4] in [x[0:4] for x in pars]:
if 'DIHE' in line and 'MULT' in line:
line, n = formatLine(line, n)
elif 'IMPR' in line and 'MULT' in line:
line, n = formatLine(line, n)
molList.append(line)
n += 1

parList = parFile.splitlines(1)
parList.reverse()
for line in parList:
if line != '\n':
if 'SET ECHO' in line.upper():
an_id = parList.index(line)
break
parList.insert(an_id + 1, txt)
for line in molList: # NOTE: Check if pars are there, but using string size, need to be smarter
if pars[0][:4] in line: # BOND
parTxt = line[:16]
revParTxt = reverseParLine(parTxt)
if parTxt not in parFile and revParTxt not in parFile:
parList.insert(an_id + 1, line)
if pars[4][:4] in line: # NONB
if line[:16] not in parFile:
parList.insert(an_id + 1, line)
if pars[1][:4] in line: # ANGLe
parTxt = line[:23]
revParTxt = reverseParLine(parTxt)
if parTxt not in parFile and revParTxt not in parFile:
parList.insert(an_id + 1, line)
if pars[2][:4] in line or pars[3][:4] in line: # DIHE and IMPR
if line[:32] not in parFile:
parList.insert(an_id + 1, line)
parList.insert(an_id + 1, end)

parList.reverse()
nParFile = open(cnsParPath, 'w')
nParFile.writelines(parList)
nParFile.close()
print("%s added to %s" % (molName, cnsParPath))
return True


def reverseParLine(txt):
lvec = txt.split()
head = lvec[0]
pars = lvec[1:]
pars.reverse()
for item in ["%6s" % x for x in pars]:
head += item
return head


def addMolTop(cnsTopPath, molTopPath):
"""
Add topol of MOL.top in CNS topalldhg*.pro file
input: cns top file path to be modified and MOL.top file
"""
keys = ['RESIdue', 'GROUP', 'ATOM', 'BOND', 'ANGLe', 'DIHEdral', 'IMPRoper']
molName = os.path.basename(molTopPath).split('_')[0]
ions = '\nPRESidue IONS\nEND\n\n'

txt = "! Topol for Heterocompound %s\n" % molName
end = "\n"

topFile = open(cnsTopPath).read()
if txt in topFile:
print("%s already added to %s" % (molName, cnsTopPath))
return False

molFile = open(molTopPath).readlines()
molMass = []
molTop = []

for line in molFile:
if line.strip()[0:4] == 'MASS':
molMass.append(line)
if line.strip()[0:4] in [x[0:4] for x in keys]:
molTop.append(line)
if line.strip()[0:3] == 'END':
molTop.append(line)

topList = topFile.splitlines(1)
topList.reverse()
for line in topList:
if line != '\n':
if 'SET ECHO' in line.upper():
an_id = topList.index(line)
break

if ions not in topFile:
topList.insert(an_id + 1, ions)

topList.insert(an_id + 1, txt)
for line in molMass:
if line not in topFile: # NOTE: comparing strings!
topList.insert(an_id + 1, line)
for line in molTop:
topList.insert(an_id + 1, line)
topList.insert(an_id + 1, end)

topList.reverse()
nTopFile = open(cnsTopPath, 'w')
nTopFile.writelines(topList)
nTopFile.close()
print("%s added to %s" % (molName, cnsTopPath))
return True


class AcpypeForCcpnProject(object):
'''
Class to take a Ccpn project, check if it has an
unusual chem comp and call ACPYPE API to generate
a folder with acpype results
usage:
acpypeProject = AcpypeForCcpnProject(ccpnProject)
acpypeProject.run(kw**)
acpypeDictFilesList = acpypeProject.acpypeDictFiles
returns a dict with list of the files inside chem chomp acpype folder
or None
'''

def __init__(self, project):

self.project = project
self.heteroMols = None
self.acpypeDictFiles = None

def getHeteroMols(self):
'''Return a list [] of chains obj'''
ccpnProject = self.project
maxNumberAtoms = 300 # MAXATOM in AC is 256, then it uses memory reallocation
other = []
molSys = ccpnProject.findFirstMolSystem()
for chain in molSys.chains:
if chain.molecule.molType == 'other':
numRes = len(chain.residues)
if numRes == 1:
numberAtoms = [len(x.atoms) for x in chain.residues][0]
if numberAtoms > maxNumberAtoms:
print("molecule with %i (> %i) atoms; skipped by acpype" % (numberAtoms, maxNumberAtoms))
else:
other.append(chain)
else:
print("molType 'other', chain %s with %i residues; skipped by acpype" % (chain, numRes))
self.heteroMols = other
return other

def run(self, chain=None, chargeType='bcc', chargeVal=None, guessCharge=False,
multiplicity='1', atomType='gaff', force=False, basename=None,
debug=False, outTopol='all', engine='tleap', allhdg=False,
timeTol=36000, qprog='sqm', ekFlag=None, outType='mol2'):

ccpnProject = self.project

if chain:
other = [chain]
else:
other = self.getHeteroMols()

if not other:
print("WARN: no molecules entitled for ACPYPE")
return None

acpypeDict = {}

for chain in other:
if chargeVal is None and not guessCharge:
chargeVal = chain.molecule.formalCharge
# pdbCode = ccpnProject.name
res = chain.findFirstResidue()
resName = res.ccpCode.upper()
if chargeVal is None:
print("Running ACPYPE for '%s : %s' and trying to guess net charge" % (resName, chain.molecule.name))
else:
print("Running ACPYPE for '%s : %s' with charge '%s'" % (resName, chain.molecule.name, chargeVal))
random.seed()
d = [random.choice(letters) for x in range(10)]
randString = "".join(d)
randString = 'test'
dirTemp = '/tmp/ccpn2acpype_%s' % randString
if not os.path.exists(dirTemp):
os.mkdir(dirTemp)

if outType == 'mol2':
resTempFile = os.path.join(dirTemp, '%s.mol2' % resName)
else:
resTempFile = os.path.join(dirTemp, '%s.pdb' % resName)

entry = ccpnProject.currentNmrEntryStore.findFirstEntry()
strucGen = entry.findFirstStructureGeneration()
refStructure = strucGen.structureEnsemble.sortedModels()[0]

if outType == 'mol2':
mol2Format = Mol2Format.Mol2Format(ccpnProject)
mol2Format.writeChemComp(resTempFile, chemCompVar=chain.findFirstResidue().chemCompVar, coordSystem='pdb', minimalPrompts=True, forceNamingSystemName='XPLOR')
else:
pdbFormat = PdbFormat.PdbFormat(ccpnProject)
pdbFormat.writeCoordinates(resTempFile, exportChains=[chain], structures=[refStructure], minimalPrompts=True, forceNamingSystemName='XPLOR')

origCwd = os.getcwd()
os.chdir(dirTemp)

t0 = time.time()
print(header)

try:
molecule = ACTopol(resTempFile, chargeType=chargeType,
chargeVal=chargeVal, debug=debug, multiplicity=multiplicity,
atomType=atomType, force=force, outTopol=outTopol,
engine=engine, allhdg=allhdg, basename=basename,
timeTol=timeTol, qprog=qprog, ekFlag='''"%s"''' % ekFlag)

if not molecule.acExe:
molecule.printError("no 'antechamber' executable... aborting!")
hint1 = "HINT1: is 'AMBERHOME' or 'ACHOME' environment variable set?"
hint2 = "HINT2: is 'antechamber' in your $PATH?\n What 'which antechamber' in your terminal says?\n 'alias' doesn't work for ACPYPE."
molecule.printMess(hint1)
molecule.printMess(hint2)
sys.exit(1)

molecule.createACTopol()
molecule.createMolTopol()
acpypeFailed = False
except:
raise
_exceptionType, exceptionValue, exceptionTraceback = sys.exc_info()
print("ACPYPE FAILED: %s" % exceptionValue)
if debug:
traceback.print_tb(exceptionTraceback, file=sys.stdout)
acpypeFailed = True

execTime = int(round(time.time() - t0))

if execTime == 0:
msg = "less than a second"
else:
msg = elapsedTime(execTime)
try:
rmtree(molecule.tmpDir)
except:
raise
print("Total time of execution: %s" % msg)
if not acpypeFailed:
acpypeDict[resName] = [x for x in dirWalk(os.path.join(dirTemp, '%s.acpype' % resName))]
else:
acpypeDict[resName] = []
# sys.exit(1)

os.chdir(origCwd)
self.acpypeDictFiles = acpypeDict
Loading

0 comments on commit d7bbde0

Please sign in to comment.