use of org.vcell.pathway.ModificationFeatureImpl in project vcell by virtualcell.
the class PathwayReaderBiopax3 method addObjectModificationFeature.
private ModificationFeature addObjectModificationFeature(Element element) {
ModificationFeature modificationFeature = new ModificationFeatureImpl();
addAttributes(modificationFeature, element);
for (Object child : element.getChildren()) {
if (child instanceof Element) {
Element childElement = (Element) child;
if (!addContentModificationFeature(modificationFeature, element, childElement)) {
showUnexpected(childElement);
}
}
}
pathwayModel.add(modificationFeature);
return modificationFeature;
}
Aggregations