FunctionalGroup.java
/*
* Copyright 2021 Dominik Kopczynski, Nils Hoffmann.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.lifstools.jgoslin.domain;
import com.fasterxml.jackson.annotation.JsonIgnore;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.Map;
import java.util.Map.Entry;
/**
* A functional group of a fatty acid, it can contain nested functional groups.
*
* @author Dominik Kopczynski
* @author Nils Hoffmann
*/
public class FunctionalGroup {
protected String name;
protected int position = -1;
protected int count;
protected String stereochemistry;
protected String ringStereo;
protected DoubleBonds doubleBonds;
protected boolean atomic;
protected ElementTable elements;
protected HashMap<String, ArrayList<FunctionalGroup>> functionalGroups;
protected KnownFunctionalGroups knownFunctionalGroups;
protected int numAtomsAndBonds;
public FunctionalGroup(String _name, KnownFunctionalGroups knownFunctionalGroups) {
this(_name, -1, 1, null, false, "", null, null, knownFunctionalGroups);
}
public FunctionalGroup(String _name, int _position, int _count, KnownFunctionalGroups knownFunctionalGroups) {
this(_name, _position, _count, null, false, "", null, null, knownFunctionalGroups);
}
public FunctionalGroup(String _name, int _position, int _count, DoubleBonds _double_bonds, boolean _is_atomic, String _stereochemistry, ElementTable _elements, KnownFunctionalGroups knownFunctionalGroups) {
this(_name, _position, _count, _double_bonds, _is_atomic, _stereochemistry, _elements, null, knownFunctionalGroups);
}
public FunctionalGroup(String _name, int _position, int _count, DoubleBonds _double_bonds, boolean _is_atomic, String _stereochemistry, ElementTable _elements, KnownFunctionalGroups knownFunctionalGroups, int _numAtomsAndBonds) {
this(_name, _position, _count, _double_bonds, _is_atomic, _stereochemistry, _elements, null, knownFunctionalGroups, _numAtomsAndBonds);
}
public FunctionalGroup(String _name, int _position, int _count, DoubleBonds _double_bonds, boolean _is_atomic, String _stereochemistry, ElementTable _elements, HashMap<String, ArrayList<FunctionalGroup>> _functional_groups, KnownFunctionalGroups knownFunctionalGroups) {
this(_name, _position, _count, _double_bonds, _is_atomic, _stereochemistry, _elements, _functional_groups, knownFunctionalGroups, 0);
}
public FunctionalGroup(String _name, int _position, int _count, DoubleBonds _double_bonds, boolean _is_atomic, String _stereochemistry, ElementTable _elements, HashMap<String, ArrayList<FunctionalGroup>> _functional_groups, KnownFunctionalGroups knownFunctionalGroups, int _numAtomsAndBonds) {
name = _name;
position = _position;
count = _count;
numAtomsAndBonds = _numAtomsAndBonds;
stereochemistry = _stereochemistry;
ringStereo = "";
doubleBonds = (_double_bonds != null) ? _double_bonds : new DoubleBonds(0);
atomic = _is_atomic;
elements = (_elements != null) ? _elements : new ElementTable();
functionalGroups = (_functional_groups != null) ? _functional_groups : (new HashMap<>());
this.knownFunctionalGroups = knownFunctionalGroups;
}
public FunctionalGroup copy() {
DoubleBonds db = doubleBonds.copy();
HashMap<String, ArrayList<FunctionalGroup>> fg = new HashMap<>();
functionalGroups.entrySet().stream().map(kv -> {
fg.put(kv.getKey(), new ArrayList<>());
return kv;
}).forEachOrdered(kv -> {
kv.getValue().forEach(func_group -> {
fg.get(kv.getKey()).add(func_group.copy());
});
});
ElementTable e = new ElementTable();
elements.entrySet().forEach(kv -> {
e.put(kv.getKey(), kv.getValue());
});
FunctionalGroup func_group_new = new FunctionalGroup(name, position, count, db, atomic, stereochemistry, e, fg, knownFunctionalGroups, numAtomsAndBonds);
func_group_new.ringStereo = ringStereo;
return func_group_new;
}
public void setName(String name) {
this.name = name;
}
public String getName() {
return this.name;
}
public void setPosition(int position) {
this.position = position;
}
public int getPosition() {
return this.position;
}
public void setCount(int count) {
this.count = count;
}
public int getCount() {
return this.count;
}
@JsonIgnore
public String getStereochemistry() {
return stereochemistry;
}
public void setStereochemistry(String stereochemistry) {
this.stereochemistry = stereochemistry;
}
@JsonIgnore
public String getRingStereo() {
return ringStereo;
}
public void setRingStereo(String ringStereo) {
this.ringStereo = ringStereo;
}
public DoubleBonds getDoubleBonds() {
return this.doubleBonds;
}
public void setDoubleBonds(DoubleBonds doubleBonds) {
this.doubleBonds = doubleBonds;
}
public void setAtomic(boolean atomic) {
this.atomic = atomic;
}
@JsonIgnore
public boolean isAtomic() {
return this.atomic;
}
@JsonIgnore
public ElementTable getElements() {
return this.elements;
}
public void setElements(ElementTable elements) {
this.elements = elements;
}
@JsonIgnore
public ElementTable computeAndCopyElements() {
computeElements();
ElementTable _elements = elements.copy();
_elements.add(getFunctionalGroupElements());
return _elements;
}
public void shiftPositions(int shift) {
position += shift;
functionalGroups.entrySet().forEach(kv -> {
kv.getValue().forEach(fg -> {
fg.shiftPositions(shift);
});
});
}
/**
* Return the total count for the given functional group name, or 0.
* @param functionalGroup the functional group name.
* @return the total count
*/
public Integer getTotalFunctionalGroupCount(String functionalGroup) {
if ("[X]".equals(functionalGroup)) {
return 0;
} else if (functionalGroups.containsKey(functionalGroup)) {
return functionalGroups.get(functionalGroup).stream().map(fg -> fg.getCount()).reduce(0, Integer::sum);
} else {
return 0;
}
}
/**
* Returns a copy of the internally used functional groups map, with the virtual [X] group for regular LCBs removed.
* @return a copy of the internal functional groups
* @see #getFunctionalGroupsInternal() to obtain the internal datastructure by reference.
*/
public Map<String, ArrayList<FunctionalGroup>> getFunctionalGroups() {
Map<String, ArrayList<FunctionalGroup>> mapCopy = new HashMap<>(functionalGroups);
mapCopy.remove("[X]");
return mapCopy;
}
/**
* Returns the internal representation of the functional groups, including the virtual [X] group for regular LCBs.
* @return the internal datastructure by reference.
*/
@JsonIgnore
public Map<String, ArrayList<FunctionalGroup>> getFunctionalGroupsInternal() {
return functionalGroups;
}
/**
* Set the internal functional groups.
* @param functionalGroups the functional groups to set
*/
public void setFunctionalGroups(HashMap<String, ArrayList<FunctionalGroup>> functionalGroups) {
this.functionalGroups = functionalGroups;
}
@JsonIgnore
public ElementTable getFunctionalGroupElements() {
ElementTable _elements = new ElementTable();
functionalGroups.entrySet().forEach(kv -> {
kv.getValue().forEach(func_group -> {
_elements.add(func_group.computeAndCopyElements(), func_group.count);
});
});
return _elements;
}
public void computeElements() {
functionalGroups.entrySet().forEach(kv -> {
kv.getValue().forEach(func_group -> {
func_group.computeElements();
});
});
}
public String toString(LipidLevel level) {
String fg_string = "";
if (LipidLevel.isLevel(level, LipidLevel.COMPLETE_STRUCTURE.level | LipidLevel.FULL_STRUCTURE.level)) {
if ('0' <= name.charAt(0) && name.charAt(0) <= '9') {
fg_string = (position > -1) ? (Integer.toString(position) + ringStereo + "(" + name + ")") : name;
} else {
fg_string = (position > -1) ? (Integer.toString(position) + ringStereo + name) : name;
}
} else {
fg_string = (count > 1) ? ("(" + name + ")" + Integer.toString(count)) : name;
}
if (stereochemistry.length() > 0 && level == LipidLevel.COMPLETE_STRUCTURE) {
fg_string += "[" + stereochemistry + "]";
}
return fg_string;
}
public int getNDoubleBonds() throws ConstraintViolationException {
int db = count * doubleBonds.getNumDoubleBonds();
for (Entry<String, ArrayList<FunctionalGroup>> kv : functionalGroups.entrySet()) {
for (FunctionalGroup func_group : kv.getValue()) {
db += func_group.getNDoubleBonds();
}
}
return db;
}
public void addPosition(int pos) {
position += (position >= pos) ? 1 : 0;
functionalGroups.entrySet().forEach(kv -> {
kv.getValue().forEach(fg -> {
fg.addPosition(pos);
});
});
}
}