Source code for continuousflex.protocols.pdb.protocol_pseudoatoms

# **************************************************************************
# *
# * Authors:  Carlos Oscar Sanchez Sorzano (coss@cnb.csic.es), May 2013
# *           Slavica Jonic                (jonic@impmc.upmc.fr)
# * Ported to Scipion:
# *           J.M. De la Rosa Trevin (jmdelarosa@cnb.csic.es), Jan 2014
# *
# * Unidad de  Bioinformatica of Centro Nacional de Biotecnologia , CSIC
# *
# * This program is free software; you can redistribute it and/or modify
# * it under the terms of the GNU General Public License as published by
# * the Free Software Foundation; either version 2 of the License, or
# * (at your option) any later version.
# *
# * This program is distributed in the hope that it will be useful,
# * but WITHOUT ANY WARRANTY; without even the implied warranty of
# * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# * GNU General Public License for more details.
# *
# * You should have received a copy of the GNU General Public License
# * along with this program; if not, write to the Free Software
# * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
# * 02111-1307  USA
# *
# *  All comments concerning this program package may be sent to the
# *  e-mail address 'scipion@cnb.csic.es'
# *
# **************************************************************************

from pyworkflow.protocol.params import PointerParam
from pwem.objects import AtomStruct, Volume, Transform

from xmipp3.convert import getImageLocation
from .protocol_pseudoatoms_base import FlexProtConvertToPseudoAtomsBase


[docs]class FlexProtConvertToPseudoAtoms(FlexProtConvertToPseudoAtomsBase): """ Converts an EM volume into pseudoatoms """ _label = 'convert to pseudoatoms' #--------------------------- DEFINE param functions -------------------------------------------- def _defineParams(self, form): form.addSection(label='Input') form.addParam('inputStructure', PointerParam, label="Input structure", important=True, pointerClass='Volume') FlexProtConvertToPseudoAtomsBase._defineParams(self,form) #volume-to-pseudoatom conversion was not MPI-parallelized (mpi was set to 0 to not appear in the gui) form.addParallelSection(threads=4, mpi=0) #--------------------------- INSERT steps functions -------------------------------------------- def _insertAllSteps(self): inputVol = self.inputStructure.get() fnIn = getImageLocation(inputVol) fnMask = self._insertMaskStep(fnIn) self._insertFunctionStep('convertToPseudoAtomsStep', fnIn, fnMask, inputVol.getSamplingRate()) self._insertFunctionStep('createOutputStep') #--------------------------- STEPS functions --------------------------------------------
[docs] def createOutputStep(self): inputVol = self.inputStructure.get() samplingRate = inputVol.getSamplingRate() volume = Volume() volume.setFileName(self._getExtraPath("pseudoatoms_approximation.vol")) volume.setSamplingRate(samplingRate) x, y, z = volume.getDim() xv, yv, zv = inputVol.getOrigin(force=True).getShifts() t = Transform() t.setShifts((x / 2. * samplingRate) - xv, (y / 2. * samplingRate) - yv, (z / 2. * samplingRate) - zv) volume.setOrigin(inputVol.getOrigin()) self._defineOutputs(outputVolume=volume) self._defineSourceRelation(self.inputStructure.get(), volume) pdb = AtomStruct(self._getPath('pseudoatoms.pdb'), pseudoatoms=True) pdb.setVolume(volume) pdb.setOrigin(t) self.createChimeraScript(inputVol, pdb) self._defineOutputs(outputPdb=pdb) self._defineSourceRelation(self.inputStructure, pdb)
#--------------------------- INFO functions -------------------------------------------- def _summary(self): summary = [] summary.append('Pseudoatom radius (voxels): %f' % self.pseudoAtomRadius.get()) summary.append('Approximation target error (%%): %f' % self.pseudoAtomTarget.get()) return summary def _methods(self): summary = [] summary.append('We converted the volume %s into a pseudoatomic representation with Gaussian atoms' ' (sigma=%f A and a target error of %f%%) ' '[Nogales2013].' % (self.inputStructure.get().getNameId(), self.pseudoAtomRadius.get()*self.inputStructure.get().getSamplingRate(), self.pseudoAtomTarget.get())) if self.hasAttribute('outputPdb'): summary.append('We refer to the pseudoatomic model as %s.' % self.outputPdb.getNameId()) return summary def _citations(self): return ['Nogales2013']