org.biojava.nbio.structure.io.ChargeAdder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of biojava-structure Show documentation
Show all versions of biojava-structure Show documentation
The protein structure modules of BioJava.
/*
* BioJava development code
*
* This code may be freely distributed and modified under the
* terms of the GNU Lesser General Public Licence. This should
* be distributed with the code. If you do not have a copy,
* see:
*
* http://www.gnu.org/copyleft/lesser.html
*
* Copyright for this code is held jointly by the individual
* authors. These should be listed in @author doc comments.
*
* For more information on the BioJava project and its aims,
* or to join the biojava-l mailing list, visit the home page
* at:
*
* http://www.biojava.org/
*
* Created on Jan. 22, 2016
*
*/
package org.biojava.nbio.structure.io;
import java.util.List;
import org.biojava.nbio.structure.Atom;
import org.biojava.nbio.structure.Chain;
import org.biojava.nbio.structure.Group;
import org.biojava.nbio.structure.Structure;
import org.biojava.nbio.structure.chem.ChemComp;
import org.biojava.nbio.structure.chem.ChemCompAtom;
import org.biojava.nbio.structure.chem.ChemCompGroupFactory;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* A class to add appropriate charge information to a structure.
* @author Anthony Bradley
*/
public class ChargeAdder {
private static final Logger logger = LoggerFactory.getLogger(ChargeAdder.class);
/**
* Function to add the charges to a given structure.
*/
public static void addCharges(Structure structure) {
// Loop through the models
for (int i = 0; i < structure.nrModels(); i++) {
for (Chain c : structure.getChains(i)) {
for (Group g : c.getAtomGroups()) {
ChemComp thisChemComp = ChemCompGroupFactory.getChemComp(g.getPDBName());
List chemAtoms = thisChemComp.getAtoms();
for (ChemCompAtom chemCompAtom : chemAtoms) {
Atom atom = g.getAtom(chemCompAtom.getAtomId());
short shortCharge = (short) chemCompAtom.getCharge();
if (atom != null) {
atom.setCharge(shortCharge);
}
// Now do the same for alt locs
for (Group altLoc : g.getAltLocs()) {
Atom altAtom = altLoc.getAtom(chemCompAtom.getAtomId());
if (altAtom != null) {
altAtom.setCharge(shortCharge);
}
}
}
}
}
}
}
}