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

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

The newest version!
package uk.ac.ebi.beam;

import java.util.List;

/**
 * Given a chemical graph with 0 or more atoms. Convert that graph to one where
 * all atoms are fully specified bracket atoms.
 *
 * @author John May
 */
final class FromSubsetAtoms
        extends AbstractFunction {

    public Graph apply(Graph g) {

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

        for (int u = 0; u < g.order(); u++) {
            h.addAtom(fromSubset(g.atom(u),
                                 g.bondedValence(u),
                                 g.degree(u)));
            h.addTopology(g.topologyOf(u));
        }

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

        return h;
    }

    static Atom fromSubset(Atom a, int sum, int deg) {

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

        Element e = a.element();
        if (a.aromatic() && deg <= sum)
            sum++;
        int hCount = a.aromatic() ? Element.implicitAromHydrogenCount(e, sum)
                                  : Element.implicitHydrogenCount(e, sum);

        // XXX: if there was an odd number of availableElectrons there was an odd number
        // or aromatic bonds (usually 1 or 3) - if there was one it was
        // only a single bond it's likely a spouting from a ring - otherwise
        // someones making our life difficult (e.g. c1=cc=cc=c1) in which we
        // 'give' back 2 free availableElectrons for use indeterminacy the hCount
//        int hCount = (electrons & 0x1) == 1 ? deg > 1 ? (electrons + 2) / 2
//                                                      : electrons / 2
//                                            : electrons / 2;


        return new AtomImpl.BracketAtom(-1,
                                        a.element(),
                                        hCount,
                                        0,
                                        0,
                                        a.aromatic());
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy