All Downloads are FREE. Search and download functionalities are using the official Maven repository.

uk.ac.ebi.beam.ToSubsetAtoms Maven / Gradle / Ivy

There is a newer version: 1.3.6
Show newest version
package uk.ac.ebi.beam;

import java.util.List;

import static uk.ac.ebi.beam.Configuration.Type.None;

/**
 * Given a chemical graph with 0 or more atoms. Convert that graph to one where
 * fully specified bracket atoms which can be specified as organic subsets.
 *
 * @author John May
 */
final class ToSubsetAtoms extends AbstractFunction {

    public Graph apply(Graph g) {

        Graph h = new Graph(g.order());

        for (int u = 0; u < g.order(); u++) {

            // only attempt subset conversion if no known topology
            Topology t = g.topologyOf(u);

            if (t.type() == None) {
                h.addAtom(toSubset(g.atom(u), g, u));
            } else {
                h.addAtom(g.atom(u));
                h.addTopology(t);
            }
        }

        // edges are unchanged
        for (Edge e : g.edges())
            h.addEdge(e);

        return h;
    }

    static Atom toSubset(Atom a, Graph g, int u) {

        // atom is already a subset atom
        if (a.subset())
            return a;

        // element is not organic and thus cannot be part of the subset
        if (!a.element().organic())
            return a;

        // if any of these values are set the atom cannot be a subset atom
        if (a.charge() != 0 || a.atomClass() != 0 || a.isotope() >= 0)
           return a;

        Atom subset = a.aromatic() ? AtomImpl.AromaticSubset.ofElement(a.element())
                                   : AtomImpl.AliphaticSubset.ofElement(a.element());
        
        // does the implied availableElectrons from the bond order sum match that
        // which was stored - if aromatic we only check the lowest valence state
        int impliedHCount = subset.hydrogens(g, u);
       
        // mismatch in number of hydrogens we must write this as a bracket atom
        return impliedHCount != a.hydrogens() ? a : subset;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy