use of org.sbolstandard.core.datatree.IdentifiableDocument in project libSBOLj by SynBioDex.
the class SBOLReader method parseVariableComponent.
// TODO: FIX COMMENTED SECTION
@SuppressWarnings("unchecked")
private static VariableComponent parseVariableComponent(SBOLDocument SBOLDoc, NestedDocument<QName> variableComponent, Map<URI, NestedDocument<QName>> nested) throws SBOLValidationException {
String displayId = null;
String name = null;
String description = null;
URI persistentIdentity = null;
String version = null;
List<Annotation> annotations = new ArrayList<>();
URI variable = null;
OperatorType operator = null;
HashSet<URI> variants = new HashSet<>();
HashSet<URI> variantCollections = new HashSet<>();
HashSet<URI> variantDerivations = new HashSet<>();
Set<URI> wasDerivedFroms = new HashSet<>();
Set<URI> wasGeneratedBys = new HashSet<>();
for (NamedProperty<QName> namedProperty : variableComponent.getProperties()) {
if (namedProperty.getName().equals(Sbol2Terms.Identified.persistentIdentity)) {
if (!(namedProperty.getValue() instanceof Literal) || persistentIdentity != null || (!(((Literal<QName>) namedProperty.getValue()).getValue() instanceof URI))) {
throw new SBOLValidationException("sbol-10203", variableComponent.getIdentity());
}
persistentIdentity = URI.create(((Literal<QName>) namedProperty.getValue()).getValue().toString());
} else if (namedProperty.getName().equals(Sbol2Terms.Identified.version)) {
if (!(namedProperty.getValue() instanceof Literal) || version != null || (!(((Literal<QName>) namedProperty.getValue()).getValue() instanceof String))) {
throw new SBOLValidationException("sbol-10206", variableComponent.getIdentity());
}
version = ((Literal<QName>) namedProperty.getValue()).getValue().toString();
} else if (namedProperty.getName().equals(Sbol2Terms.Identified.displayId)) {
if (!(namedProperty.getValue() instanceof Literal) || displayId != null || (!(((Literal<QName>) namedProperty.getValue()).getValue() instanceof String))) {
throw new SBOLValidationException("sbol-10204", variableComponent.getIdentity());
}
displayId = ((Literal<QName>) namedProperty.getValue()).getValue().toString();
} else if (namedProperty.getName().equals(Sbol2Terms.Identified.title)) {
if (!(namedProperty.getValue() instanceof Literal) || name != null || (!(((Literal<QName>) namedProperty.getValue()).getValue() instanceof String))) {
throw new SBOLValidationException("sbol-10212", variableComponent.getIdentity());
}
name = ((Literal<QName>) namedProperty.getValue()).getValue().toString();
} else if (namedProperty.getName().equals(Sbol2Terms.Identified.description)) {
if (!(namedProperty.getValue() instanceof Literal) || description != null || (!(((Literal<QName>) namedProperty.getValue()).getValue() instanceof String))) {
throw new SBOLValidationException("sbol-10213", variableComponent.getIdentity());
}
description = ((Literal<QName>) namedProperty.getValue()).getValue().toString();
} else if (namedProperty.getName().equals(Sbol2Terms.VariableComponent.hasVariable)) {
if (!(namedProperty.getValue() instanceof Literal) || variable != null || (!(((Literal<QName>) namedProperty.getValue()).getValue() instanceof URI))) {
throw new SBOLValidationException("sbol-13004", variableComponent.getIdentity());
}
variable = URI.create(((Literal<QName>) namedProperty.getValue()).getValue().toString());
} else if (namedProperty.getName().equals(Sbol2Terms.VariableComponent.hasVariants)) {
if (namedProperty.getValue() instanceof Literal) {
if (!(((Literal<QName>) namedProperty.getValue()).getValue() instanceof URI)) {
throw new SBOLValidationException("sbol-13007", variableComponent.getIdentity());
}
variants.add(URI.create(((Literal<QName>) namedProperty.getValue()).getValue().toString()));
} else if (namedProperty.getValue() instanceof IdentifiableDocument) {
if (((IdentifiableDocument<QName>) namedProperty).getType().equals(Sbol2Terms.ComponentDefinition.ComponentDefinition)) {
ComponentDefinition cd = parseComponentDefinition(SBOLDoc, (IdentifiableDocument<QName>) namedProperty.getValue(), nested);
variants.add(cd.getIdentity());
} else {
throw new SBOLValidationException("sbol-13007", variableComponent.getIdentity());
}
} else {
throw new SBOLValidationException("sbol-13007", variableComponent.getIdentity());
}
} else if (namedProperty.getName().equals(Sbol2Terms.VariableComponent.hasVariantCollections)) {
if (namedProperty.getValue() instanceof Literal) {
if (!(((Literal<QName>) namedProperty.getValue()).getValue() instanceof URI)) {
throw new SBOLValidationException("sbol-13009", variableComponent.getIdentity());
}
variantCollections.add(URI.create(((Literal<QName>) namedProperty.getValue()).getValue().toString()));
} else if (namedProperty.getValue() instanceof IdentifiableDocument) {
if (((IdentifiableDocument<QName>) namedProperty).getType().equals(Sbol2Terms.Collection.Collection)) {
Collection cd = parseCollection(SBOLDoc, (IdentifiableDocument<QName>) namedProperty.getValue(), nested);
variantCollections.add(cd.getIdentity());
} else {
throw new SBOLValidationException("sbol-13009", variableComponent.getIdentity());
}
} else {
throw new SBOLValidationException("sbol-13009", variableComponent.getIdentity());
}
} else if (namedProperty.getName().equals(Sbol2Terms.VariableComponent.hasVariantDerivations)) {
if (namedProperty.getValue() instanceof Literal) {
if (!(((Literal<QName>) namedProperty.getValue()).getValue() instanceof URI)) {
throw new SBOLValidationException("sbol-13013", variableComponent.getIdentity());
}
variantDerivations.add(URI.create(((Literal<QName>) namedProperty.getValue()).getValue().toString()));
} else if (namedProperty.getValue() instanceof IdentifiableDocument) {
if (((IdentifiableDocument<QName>) namedProperty).getType().equals(Sbol2Terms.Collection.Collection)) {
CombinatorialDerivation cd = parseCombinatorialDerivation(SBOLDoc, (IdentifiableDocument<QName>) namedProperty.getValue(), nested);
variantDerivations.add(cd.getIdentity());
} else {
throw new SBOLValidationException("sbol-13013", variableComponent.getIdentity());
}
} else {
throw new SBOLValidationException("sbol-13013", variableComponent.getIdentity());
}
} else if (namedProperty.getName().equals(Sbol2Terms.VariableComponent.hasOperator)) {
if (!(namedProperty.getValue() instanceof Literal) || operator != null || (!(((Literal<QName>) namedProperty.getValue()).getValue() instanceof URI))) {
throw new SBOLValidationException("sbol-13002", variableComponent.getIdentity());
}
String operatorTypeStr = ((Literal<QName>) namedProperty.getValue()).getValue().toString();
try {
operator = OperatorType.convertToOperatorType(URI.create(operatorTypeStr));
} catch (SBOLValidationException e) {
throw new SBOLValidationException("sbol-13003", variableComponent.getIdentity());
}
} else if (namedProperty.getName().equals(Sbol2Terms.Identified.wasDerivedFrom)) {
if (!(namedProperty.getValue() instanceof Literal) || (!(((Literal<QName>) namedProperty.getValue()).getValue() instanceof URI))) {
throw new SBOLValidationException("sbol-10208", variableComponent.getIdentity());
}
wasDerivedFroms.add(URI.create(((Literal<QName>) namedProperty.getValue()).getValue().toString()));
} else if (namedProperty.getName().equals(Sbol2Terms.Identified.wasGeneratedBy)) {
if (!(namedProperty.getValue() instanceof Literal) || (!(((Literal<QName>) namedProperty.getValue()).getValue() instanceof URI))) {
throw new SBOLValidationException("sbol-10221", variableComponent.getIdentity());
}
wasGeneratedBys.add(URI.create(((Literal<QName>) namedProperty.getValue()).getValue().toString()));
} else {
annotations.add(new Annotation(namedProperty));
}
}
VariableComponent c = new VariableComponent(variableComponent.getIdentity(), operator, variable);
if (persistentIdentity != null)
c.setPersistentIdentity(persistentIdentity);
if (version != null)
c.setVersion(version);
if (displayId != null)
c.setDisplayId(displayId);
if (!variants.isEmpty())
c.setVariants(variants);
if (!variantCollections.isEmpty())
c.setVariantCollections(variantCollections);
if (!variantDerivations.isEmpty())
c.setVariantDerivations(variantDerivations);
if (name != null)
c.setName(name);
if (description != null)
c.setDescription(description);
if (!annotations.isEmpty())
c.setAnnotations(annotations);
return c;
}
use of org.sbolstandard.core.datatree.IdentifiableDocument in project libSBOLj by SynBioDex.
the class SBOLReader method parseDnaComponentV1.
/**
* @param SBOLDoc
* @param componentDef
* @return
* @throws SBOLValidationException if either of the following conditions is satisfied:
* <ul>
* <li>if an SBOL validation rule violation occurred in any of the following constructors or methods:
* <ul>
* <li>{@link URIcompliance#createCompliantURI(String, String, String, String, boolean)},</li>
* <li>{@link #parseSequenceAnnotationV1(SBOLDocument, NestedDocument, List, String, int, Set)},</li>
* <li>{@link URIcompliance#createCompliantURI(String, String, String)},</li>
* <li>{@link Component#Component(URI, AccessType, URI)},</li>
* <li>{@link Component#setDisplayId(String)}, </li>
* <li>{@link Component#setVersion(String)}</li>
* <li>{@link SequenceAnnotation#setComponent(URI)}, </li>
* <li>{@link #parseDnaSequenceV1(SBOLDocument, IdentifiableDocument)}</li>
* <li>{@link RestrictionType#convertToURI(RestrictionType)},</li>
* <li>{@link SequenceConstraint#SequenceConstraint(URI, URI, URI, URI)},</li>
* <li>{@link SequenceConstraint#setDisplayId(String)},</li>
* <li>{@link SequenceConstraint#setVersion(String)},</li>
* <li>{@link ComponentDefinition#ComponentDefinition(URI, Set)},</li>
* <li>{@link ComponentDefinition#setVersion(String)},</li>
* <li>{@link ComponentDefinition#setWasDerivedFrom(URI)}, </li>
* <li>{@link Identified#setAnnotations(List)},</li>
* <li>{@link ComponentDefinition#setComponents(Set)}</li>
* <li>{@link ComponentDefinition#setSequenceConstraints(Set)}</li>
* <li>{@link ComponentDefinition#addSequence(URI)}</li>
* <li>{@link ComponentDefinition#addSequenceAnnotation(SequenceAnnotation)},</li>
* <li>{@link SBOLDocument#addComponentDefinition(ComponentDefinition)}, or</li>
* <li>{@link ComponentDefinition#copy(String, String, String)}; or</li>
* </ul>
* </li>
* <li>the following SBOL validation rule was violated: 10202.</li>
* </ul>
* @throws SBOLConversionException
*/
private static ComponentDefinition parseDnaComponentV1(SBOLDocument SBOLDoc, IdentifiableDocument<QName> componentDef) throws SBOLValidationException, SBOLConversionException {
String displayId = null;
String name = null;
String description = null;
URI seq_identity = null;
Set<URI> roles = new HashSet<>();
URI identity = componentDef.getIdentity();
String persIdentity = componentDef.getIdentity().toString();
List<Annotation> annotations = new ArrayList<>();
List<SequenceAnnotation> sequenceAnnotations = new ArrayList<>();
Set<String> instantiatedComponents = new HashSet<>();
Set<Component> components = new HashSet<>();
Set<SequenceConstraint> sequenceConstraints = new HashSet<>();
List<SBOLPair> precedePairs = new ArrayList<>();
Map<URI, URI> componentDefMap = new HashMap<>();
Set<URI> type = new HashSet<>();
type.add(ComponentDefinition.DNA);
type.add(SequenceOntology.LINEAR);
int component_num = 0;
int sa_num = 0;
if (URIPrefix != null) {
displayId = URIcompliance.findDisplayId(componentDef.getIdentity().toString());
identity = createCompliantURI(URIPrefix, TopLevel.COMPONENT_DEFINITION, displayId, version, typesInURI);
persIdentity = createCompliantURI(URIPrefix, TopLevel.COMPONENT_DEFINITION, displayId, "", typesInURI).toString();
}
for (NamedProperty<QName> namedProperty : componentDef.getProperties()) {
if (namedProperty.getName().equals(Sbol1Terms.DNAComponent.displayId)) {
if (!(namedProperty.getValue() instanceof Literal) || (!(((Literal<QName>) namedProperty.getValue()).getValue() instanceof String))) {
throw new SBOLValidationException("sbol-10204", componentDef.getIdentity());
}
displayId = ((Literal<QName>) namedProperty.getValue()).getValue().toString();
displayId = URIcompliance.fixDisplayId(displayId);
if (URIPrefix != null) {
persIdentity = createCompliantURI(URIPrefix, TopLevel.COMPONENT_DEFINITION, displayId, "", typesInURI).toString();
identity = createCompliantURI(URIPrefix, TopLevel.COMPONENT_DEFINITION, displayId, version, typesInURI);
}
} else if (namedProperty.getName().equals(Sbol1Terms.DNAComponent.name)) {
if (!(namedProperty.getValue() instanceof Literal) || (!(((Literal<QName>) namedProperty.getValue()).getValue() instanceof String))) {
throw new SBOLValidationException("sbol-10212", componentDef.getIdentity());
}
name = ((Literal<QName>) namedProperty.getValue()).getValue().toString();
} else if (namedProperty.getName().equals(Sbol1Terms.DNAComponent.description)) {
if (!(namedProperty.getValue() instanceof Literal) || (!(((Literal<QName>) namedProperty.getValue()).getValue() instanceof String))) {
throw new SBOLValidationException("sbol-10213", componentDef.getIdentity());
}
description = ((Literal<QName>) namedProperty.getValue()).getValue().toString();
} else if (namedProperty.getName().equals(Sbol1Terms.DNAComponent.type)) {
if (!(namedProperty.getValue() instanceof Literal) || (!(((Literal<QName>) namedProperty.getValue()).getValue() instanceof URI))) {
throw new SBOLValidationException("sbol-10507", componentDef.getIdentity());
}
URI convertedSO = SequenceOntology.convertSeqOntologyV1(((Literal<QName>) namedProperty.getValue()).getValue().toString());
roles.add(convertedSO);
} else if (namedProperty.getName().equals(Sbol1Terms.DNAComponent.annotations)) {
if (namedProperty.getValue() instanceof IdentifiableDocument) {
SequenceAnnotation sa = parseSequenceAnnotationV1(SBOLDoc, ((NestedDocument<QName>) namedProperty.getValue()), precedePairs, persIdentity, ++sa_num, instantiatedComponents);
sequenceAnnotations.add(sa);
URI component_identity = createCompliantURI(persIdentity, "component" + component_num, version);
URI component_persIdentity = createCompliantURI(persIdentity, "component" + component_num, "");
String component_displayId = "component" + component_num;
AccessType access = AccessType.PUBLIC;
URI instantiatedComponent = sa.getComponentURI();
ComponentDefinition instantiatedDef = SBOLDoc.getComponentDefinition(instantiatedComponent);
if (compliant && instantiatedDef != null && instantiatedDef.isSetDisplayId() && !instantiatedComponents.contains(instantiatedDef.getDisplayId())) {
component_identity = createCompliantURI(persIdentity, instantiatedDef.getDisplayId(), version);
component_persIdentity = createCompliantURI(persIdentity, instantiatedDef.getDisplayId(), "");
component_displayId = instantiatedDef.getDisplayId();
instantiatedComponents.add(instantiatedDef.getDisplayId());
} else {
component_num++;
}
Component component = new Component(component_identity, access, instantiatedComponent);
if (!persIdentity.equals("")) {
component.setPersistentIdentity(component_persIdentity);
component.setDisplayId(component_displayId);
component.setVersion(version);
}
components.add(component);
URI originalURI = ((NestedDocument<QName>) namedProperty.getValue()).getIdentity();
componentDefMap.put(originalURI, component_identity);
sa.setComponent(component_identity);
} else {
throw new SBOLConversionException("SequenceAnnotation must be nested in SBOL1.");
}
} else if (namedProperty.getName().equals(Sbol1Terms.DNAComponent.dnaSequence)) {
if (seq_identity != null) {
throw new SBOLValidationException("sbol-10512", componentDef.getIdentity());
}
if (namedProperty.getValue() instanceof Literal) {
if (!(((Literal<QName>) namedProperty.getValue()).getValue() instanceof URI)) {
throw new SBOLValidationException("sbol-10512", componentDef.getIdentity());
}
seq_identity = URI.create(((Literal<QName>) namedProperty.getValue()).getValue().toString());
} else {
seq_identity = parseDnaSequenceV1(SBOLDoc, (NestedDocument<QName>) namedProperty.getValue()).getIdentity();
}
} else {
annotations.add(new Annotation(namedProperty));
}
}
if (roles.isEmpty())
roles.add(SequenceOntology.ENGINEERED_REGION);
int sc_number = 0;
for (SBOLPair pair : precedePairs) {
URI sc_identity = createCompliantURI(persIdentity, "sequenceConstraint" + ++sc_number, version);
URI restrictionURI = RestrictionType.convertToURI(RestrictionType.PRECEDES);
// RestrictionType restriction = RestrictionType.convertToRestrictionType(restrictionURI);
URI subject = null;
URI object = null;
for (URI key : componentDefMap.keySet()) {
if (pair.getLeft().equals(key)) {
subject = componentDefMap.get(key);
} else if (pair.getRight().equals(key)) {
object = componentDefMap.get(key);
}
}
SequenceConstraint sc = null;
if (compliant && !persIdentity.equals("")) {
String subjectId = URIcompliance.extractDisplayId(subject);
String objectId = URIcompliance.extractDisplayId(object);
sc_identity = createCompliantURI(persIdentity, subjectId + "_cons_" + objectId, version);
sc = new SequenceConstraint(sc_identity, restrictionURI, subject, object);
sc.setPersistentIdentity(createCompliantURI(persIdentity, subjectId + "_cons_" + objectId, ""));
sc.setDisplayId(subjectId + "_cons_" + objectId);
sc.setVersion(version);
} else {
sc = new SequenceConstraint(sc_identity, restrictionURI, subject, object);
}
sequenceConstraints.add(sc);
}
ComponentDefinition c = new ComponentDefinition(identity, type);
if (!persIdentity.equals("")) {
c.setPersistentIdentity(URI.create(persIdentity));
c.setVersion(version);
}
if (roles != null)
c.setRoles(roles);
if (identity != componentDef.getIdentity())
c.addWasDerivedFrom(componentDef.getIdentity());
if (displayId != null)
c.setDisplayId(displayId);
if (name != null && !name.isEmpty())
c.setName(name);
if (description != null && !description.isEmpty())
c.setDescription(description);
if (seq_identity != null)
c.addSequence(seq_identity);
if (!annotations.isEmpty())
c.setAnnotations(annotations);
if (!components.isEmpty())
c.setComponents(components);
if (!sequenceAnnotations.isEmpty()) {
for (SequenceAnnotation sa : sequenceAnnotations) {
if (!dropObjectsWithDuplicateURIs || c.getSequenceAnnotation(sa.getIdentity()) == null) {
c.addSequenceAnnotation(sa);
}
}
}
if (!sequenceConstraints.isEmpty())
c.setSequenceConstraints(sequenceConstraints);
ComponentDefinition oldC = SBOLDoc.getComponentDefinition(identity);
if (oldC == null) {
SBOLDoc.addComponentDefinition(c);
} else if (c.getWasDerivedFroms().size() > 0 && oldC.getWasDerivedFroms().size() > 0 && !c.getWasDerivedFroms().equals(oldC.getWasDerivedFroms())) {
URI wasDerivedFrom = (URI) c.getWasDerivedFroms().toArray()[0];
Set<TopLevel> topLevels = SBOLDoc.getByWasDerivedFrom(wasDerivedFrom);
for (TopLevel topLevel : topLevels) {
if (topLevel instanceof ComponentDefinition) {
return (ComponentDefinition) topLevel;
}
}
do {
displayId = displayId + "_";
identity = createCompliantURI(URIPrefix, TopLevel.COMPONENT_DEFINITION, displayId, version, typesInURI);
persIdentity = createCompliantURI(URIPrefix, TopLevel.COMPONENT_DEFINITION, displayId, "", typesInURI).toString();
} while (SBOLDoc.getComponentDefinition(identity) != null);
c = c.copy(URIPrefix, displayId, version);
if (identity != componentDef.getIdentity()) {
c.clearWasDerivedFroms();
c.addWasDerivedFrom(componentDef.getIdentity());
}
SBOLDoc.addComponentDefinition(c);
} else if (dropObjectsWithDuplicateURIs) {
return oldC;
} else {
if (!c.equals(oldC)) {
throw new SBOLValidationException("sbol-10202", c);
}
}
return c;
}
use of org.sbolstandard.core.datatree.IdentifiableDocument in project libSBOLj by SynBioDex.
the class SBOLReader method parseGenericTopLevel.
/**
* @param SBOLDoc
* @param topLevel
* @return
* @throws SBOLValidationException if either of the following conditions is satisfied:
* <ul>
* <li>any of the following SBOL validation rules was violated:
* 10202, 10203, 10204, 10206, 10208, 10212, 10213, 12102; or</li>
* <li>an SBOL validation rule violation occurred in the following constructor or methods:
* <ul>
* <li>{@link GenericTopLevel#GenericTopLevel(URI, QName)}, </li>
* <li>{@link GenericTopLevel#setDisplayId(String)}, </li>
* <li>{@link GenericTopLevel#setVersion(String)}, </li>
* <li>{@link GenericTopLevel#setWasDerivedFrom(URI)}, </li>
* <li>{@link Identified#setAnnotations(List)}, or</li>
* <li>{@link SBOLDocument#addGenericTopLevel(GenericTopLevel)}.</li>
* </ul>
* </li>
* </ul>
*/
@SuppressWarnings("unchecked")
private static GenericTopLevel parseGenericTopLevel(SBOLDocument SBOLDoc, IdentifiableDocument<QName> topLevel) throws SBOLValidationException {
// URIcompliance.extractDisplayId(topLevel.getIdentity());
String displayId = null;
String name = null;
String description = null;
// URI.create(URIcompliance.extractPersistentId(topLevel.getIdentity()));
URI persistentIdentity = null;
String version = null;
Set<URI> wasDerivedFroms = new HashSet<>();
Set<URI> wasGeneratedBys = new HashSet<>();
Set<URI> attachments = new HashSet<>();
QName type = topLevel.getType();
List<Annotation> annotations = new ArrayList<>();
for (NamedProperty<QName> namedProperty : topLevel.getProperties()) {
if (namedProperty.getName().equals(Sbol2Terms.Description.type)) {
String typeStr = ((Literal<QName>) namedProperty.getValue()).getValue().toString();
String nameSpace = URIcompliance.extractNamespace(URI.create(typeStr));
String localPart = URIcompliance.extractDisplayId(URI.create(typeStr));
String prefix = null;
if (nameSpace == null) {
if (typeStr.lastIndexOf('/') > typeStr.lastIndexOf('#')) {
if (typeStr.lastIndexOf('/') > typeStr.lastIndexOf(':')) {
nameSpace = typeStr.substring(0, typeStr.lastIndexOf('/') + 1);
localPart = typeStr.substring(typeStr.lastIndexOf('/') + 1);
} else {
nameSpace = typeStr.substring(0, typeStr.lastIndexOf(':') + 1);
localPart = typeStr.substring(typeStr.lastIndexOf(':') + 1);
}
} else if (typeStr.lastIndexOf('#') > typeStr.lastIndexOf(':')) {
nameSpace = typeStr.substring(0, typeStr.lastIndexOf('#') + 1);
localPart = typeStr.substring(typeStr.lastIndexOf('#') + 1);
} else {
nameSpace = typeStr.substring(0, typeStr.lastIndexOf(':') + 1);
localPart = typeStr.substring(typeStr.lastIndexOf(':') + 1);
}
prefix = SBOLDoc.getNamespacePrefix(URI.create(nameSpace));
if (prefix == null) {
prefix = "ns0";
int prefixCnt = 0;
while (SBOLDoc.getNamespace(prefix) != null) {
prefixCnt++;
prefix = "ns" + prefixCnt;
}
SBOLDoc.addNamespace(new QName(nameSpace, localPart, prefix));
}
} else {
prefix = SBOLDoc.getNamespacePrefix(URI.create(nameSpace));
}
if (!nameSpace.equals(Sbol2Terms.sbol2.getNamespaceURI()))
type = new QName(nameSpace, localPart, prefix);
} else if (namedProperty.getName().equals(Sbol2Terms.Identified.persistentIdentity)) {
if (!(namedProperty.getValue() instanceof Literal) || persistentIdentity != null || (!(((Literal<QName>) namedProperty.getValue()).getValue() instanceof URI))) {
throw new SBOLValidationException("sbol-10203", topLevel.getIdentity());
}
persistentIdentity = URI.create(((Literal<QName>) namedProperty.getValue()).getValue().toString());
} else if (namedProperty.getName().equals(Sbol2Terms.Identified.version)) {
if (!(namedProperty.getValue() instanceof Literal) || version != null || (!(((Literal<QName>) namedProperty.getValue()).getValue() instanceof String))) {
throw new SBOLValidationException("sbol-10206", topLevel.getIdentity());
}
version = ((Literal<QName>) namedProperty.getValue()).getValue().toString();
} else if (namedProperty.getName().equals(Sbol2Terms.Identified.displayId)) {
if (!(namedProperty.getValue() instanceof Literal) || displayId != null || (!(((Literal<QName>) namedProperty.getValue()).getValue() instanceof String))) {
throw new SBOLValidationException("sbol-10204", topLevel.getIdentity());
}
displayId = ((Literal<QName>) namedProperty.getValue()).getValue().toString();
} else if (namedProperty.getName().equals(Sbol2Terms.Identified.title)) {
if (!(namedProperty.getValue() instanceof Literal) || name != null || (!(((Literal<QName>) namedProperty.getValue()).getValue() instanceof String))) {
throw new SBOLValidationException("sbol-10212", topLevel.getIdentity());
}
name = ((Literal<QName>) namedProperty.getValue()).getValue().toString();
} else if (namedProperty.getName().equals(Sbol2Terms.Identified.description)) {
if (!(namedProperty.getValue() instanceof Literal) || description != null || (!(((Literal<QName>) namedProperty.getValue()).getValue() instanceof String))) {
throw new SBOLValidationException("sbol-10213", topLevel.getIdentity());
}
description = ((Literal<QName>) namedProperty.getValue()).getValue().toString();
} else if (namedProperty.getName().equals(Sbol2Terms.Identified.wasDerivedFrom)) {
if (!(namedProperty.getValue() instanceof Literal) || (!(((Literal<QName>) namedProperty.getValue()).getValue() instanceof URI))) {
throw new SBOLValidationException("sbol-10208", topLevel.getIdentity());
}
wasDerivedFroms.add(URI.create(((Literal<QName>) namedProperty.getValue()).getValue().toString()));
} else if (namedProperty.getName().equals(Sbol2Terms.Identified.wasGeneratedBy)) {
if (!(namedProperty.getValue() instanceof Literal) || (!(((Literal<QName>) namedProperty.getValue()).getValue() instanceof URI))) {
throw new SBOLValidationException("sbol-10221", topLevel.getIdentity());
}
wasGeneratedBys.add(URI.create(((Literal<QName>) namedProperty.getValue()).getValue().toString()));
} else if (namedProperty.getName().equals(Sbol2Terms.TopLevel.hasAttachment)) {
if (namedProperty.getValue() instanceof Literal) {
if (!(((Literal<QName>) namedProperty.getValue()).getValue() instanceof URI)) {
throw new SBOLValidationException("sbol-XXXXX", topLevel.getIdentity());
}
attachments.add(URI.create(((Literal<QName>) namedProperty.getValue()).getValue().toString()));
} else if (namedProperty.getValue() instanceof IdentifiableDocument) {
if (((IdentifiableDocument<QName>) namedProperty).getType().equals(Sbol2Terms.Attachment.Attachment)) {
Attachment attachment = parseAttachment(SBOLDoc, (IdentifiableDocument<QName>) namedProperty.getValue());
attachments.add(attachment.getIdentity());
} else {
throw new SBOLValidationException("sbol-XXXXX", topLevel.getIdentity());
}
} else {
throw new SBOLValidationException("sbol-XXXXX", topLevel.getIdentity());
}
} else {
annotations.add(new Annotation(namedProperty));
}
}
// GenericTopLevel t = SBOLDoc.createGenericTopLevel(topLevel.getIdentity(), topLevel.getType());
GenericTopLevel t = new GenericTopLevel(topLevel.getIdentity(), type);
if (persistentIdentity != null)
t.setPersistentIdentity(persistentIdentity);
if (version != null)
t.setVersion(version);
if (displayId != null)
t.setDisplayId(displayId);
if (name != null)
t.setName(name);
if (description != null)
t.setDescription(description);
t.setWasDerivedFroms(wasDerivedFroms);
t.setWasGeneratedBys(wasGeneratedBys);
t.setAttachments(attachments);
if (!annotations.isEmpty())
t.setAnnotations(annotations);
GenericTopLevel oldG = SBOLDoc.getGenericTopLevel(topLevel.getIdentity());
if (oldG == null) {
SBOLDoc.addGenericTopLevel(t);
} else {
if (!t.equals(oldG)) {
throw new SBOLValidationException("sbol-10202", t);
}
}
return t;
}
use of org.sbolstandard.core.datatree.IdentifiableDocument in project libSBOLj by SynBioDex.
the class SBOLReader method parseSequence.
/**
* @param SBOLDoc
* @param topLevel
* @return
* @throws SBOLValidationException if either of the following conditions is satisfied:
* <ul>
* <li>any of the following SBOL validation rules was violated:
* 10202, 10203, 10204, 10206, 10208, 10212, 10213, 10402, 10403, ; or</li>
* <li>an SBOL validation rule violation occurred in the following constructor or methods:
* <ul>
* <li>{@link Sequence#Sequence(URI, String, URI)}, </li>
* <li>{@link Sequence#setDisplayId(String)}, </li>
* <li>{@link Sequence#setVersion(String)}, </li>
* <li>{@link Sequence#setWasDerivedFrom(URI)}, </li>
* <li>{@link Identified#setAnnotations(List)}, or</li>
* <li>{@link SBOLDocument#addSequence(Sequence)}.</li>
* </ul>
* </li>
* </ul>
*/
@SuppressWarnings("unchecked")
private static Sequence parseSequence(SBOLDocument SBOLDoc, IdentifiableDocument<QName> topLevel) throws SBOLValidationException {
// URIcompliance.extractDisplayId(topLevel.getIdentity());
String displayId = null;
String name = null;
String description = null;
// URI.create(URIcompliance.extractPersistentId(topLevel.getIdentity()));
URI persistentIdentity = null;
String version = null;
String elements = null;
URI encoding = null;
Set<URI> wasDerivedFroms = new HashSet<>();
Set<URI> wasGeneratedBys = new HashSet<>();
Set<URI> attachments = new HashSet<>();
List<Annotation> annotations = new ArrayList<>();
for (NamedProperty<QName> namedProperty : topLevel.getProperties()) {
if (namedProperty.getName().equals(Sbol2Terms.Identified.persistentIdentity)) {
if (!(namedProperty.getValue() instanceof Literal) || persistentIdentity != null || (!(((Literal<QName>) namedProperty.getValue()).getValue() instanceof URI))) {
throw new SBOLValidationException("sbol-10203", topLevel.getIdentity());
}
persistentIdentity = URI.create(((Literal<QName>) namedProperty.getValue()).getValue().toString());
} else if (namedProperty.getName().equals(Sbol2Terms.Identified.version)) {
if (!(namedProperty.getValue() instanceof Literal) || version != null || (!(((Literal<QName>) namedProperty.getValue()).getValue() instanceof String))) {
throw new SBOLValidationException("sbol-10206", topLevel.getIdentity());
}
version = ((Literal<QName>) namedProperty.getValue()).getValue().toString();
} else if (namedProperty.getName().equals(Sbol2Terms.Identified.displayId)) {
if (!(namedProperty.getValue() instanceof Literal) || displayId != null || (!(((Literal<QName>) namedProperty.getValue()).getValue() instanceof String))) {
throw new SBOLValidationException("sbol-10204", topLevel.getIdentity());
}
displayId = ((Literal<QName>) namedProperty.getValue()).getValue().toString();
} else if (namedProperty.getName().equals(Sbol2Terms.Sequence.elements)) {
if (!(namedProperty.getValue() instanceof Literal) || elements != null || (!(((Literal<QName>) namedProperty.getValue()).getValue() instanceof String))) {
throw new SBOLValidationException("sbol-10402", topLevel.getIdentity());
}
elements = ((Literal<QName>) namedProperty.getValue()).getValue().toString();
} else if (namedProperty.getName().equals(Sbol2Terms.Sequence.encoding)) {
if (!(namedProperty.getValue() instanceof Literal) || encoding != null || (!(((Literal<QName>) namedProperty.getValue()).getValue() instanceof URI))) {
throw new SBOLValidationException("sbol-10403", topLevel.getIdentity());
}
encoding = URI.create(((Literal<QName>) namedProperty.getValue()).getValue().toString());
if (encoding.toString().equals("http://dx.doi.org/10.1021/bi00822a023")) {
encoding = Sequence.IUPAC_DNA;
}
} else if (namedProperty.getName().equals(Sbol2Terms.Identified.title)) {
if (!(namedProperty.getValue() instanceof Literal) || name != null || (!(((Literal<QName>) namedProperty.getValue()).getValue() instanceof String))) {
throw new SBOLValidationException("sbol-10212", topLevel.getIdentity());
}
name = ((Literal<QName>) namedProperty.getValue()).getValue().toString();
} else if (namedProperty.getName().equals(Sbol2Terms.Identified.description)) {
if (!(namedProperty.getValue() instanceof Literal) || description != null || (!(((Literal<QName>) namedProperty.getValue()).getValue() instanceof String))) {
throw new SBOLValidationException("sbol-10213", topLevel.getIdentity());
}
description = ((Literal<QName>) namedProperty.getValue()).getValue().toString();
} else if (namedProperty.getName().equals(Sbol2Terms.Identified.wasDerivedFrom)) {
if (!(namedProperty.getValue() instanceof Literal) || (!(((Literal<QName>) namedProperty.getValue()).getValue() instanceof URI))) {
throw new SBOLValidationException("sbol-10208", topLevel.getIdentity());
}
wasDerivedFroms.add(URI.create(((Literal<QName>) namedProperty.getValue()).getValue().toString()));
} else if (namedProperty.getName().equals(Sbol2Terms.Identified.wasGeneratedBy)) {
if (!(namedProperty.getValue() instanceof Literal) || (!(((Literal<QName>) namedProperty.getValue()).getValue() instanceof URI))) {
throw new SBOLValidationException("sbol-10221", topLevel.getIdentity());
}
wasGeneratedBys.add(URI.create(((Literal<QName>) namedProperty.getValue()).getValue().toString()));
} else if (namedProperty.getName().equals(Sbol2Terms.TopLevel.hasAttachment)) {
if (namedProperty.getValue() instanceof Literal) {
if (!(((Literal<QName>) namedProperty.getValue()).getValue() instanceof URI)) {
throw new SBOLValidationException("sbol-XXXXX", topLevel.getIdentity());
}
attachments.add(URI.create(((Literal<QName>) namedProperty.getValue()).getValue().toString()));
} else if (namedProperty.getValue() instanceof IdentifiableDocument) {
if (((IdentifiableDocument<QName>) namedProperty).getType().equals(Sbol2Terms.Attachment.Attachment)) {
Attachment attachment = parseAttachment(SBOLDoc, (IdentifiableDocument<QName>) namedProperty.getValue());
attachments.add(attachment.getIdentity());
} else {
throw new SBOLValidationException("sbol-XXXXX", topLevel.getIdentity());
}
} else {
throw new SBOLValidationException("sbol-XXXXX", topLevel.getIdentity());
}
} else {
annotations.add(new Annotation(namedProperty));
}
}
// Sequence sequence = SBOLDoc.createSequence(topLevel.getIdentity(), elements, encoding);
Sequence sequence = new Sequence(topLevel.getIdentity(), elements, encoding);
if (persistentIdentity != null)
sequence.setPersistentIdentity(persistentIdentity);
if (version != null)
sequence.setVersion(version);
if (displayId != null)
sequence.setDisplayId(displayId);
if (name != null)
sequence.setName(name);
if (description != null)
sequence.setDescription(description);
sequence.setWasDerivedFroms(wasDerivedFroms);
sequence.setWasGeneratedBys(wasGeneratedBys);
sequence.setAttachments(attachments);
if (!annotations.isEmpty())
sequence.setAnnotations(annotations);
Sequence oldS = SBOLDoc.getSequence(topLevel.getIdentity());
if (oldS == null) {
SBOLDoc.addSequence(sequence);
} else {
if (!sequence.equals(oldS)) {
throw new SBOLValidationException("sbol-10202", sequence);
}
}
return sequence;
}
use of org.sbolstandard.core.datatree.IdentifiableDocument in project libSBOLj by SynBioDex.
the class SBOLReader method parseComponentDefinition.
/**
* @param SBOLDoc
* @param topLevel
* @param nested
* @return
* @throws SBOLValidationException if either of the following conditions is satisfied:
* <ul>
* <li>any of the following SBOL validation rules was violated:
* 10202, 10203, 10204, 10206, 10208, 10212, 10213, 10502, 10507, 10512, or</li>
* <li>an SBOL validation rule violation occurred in the following constructor or methods:
* <ul>
* <li>{@link #parseComponent(NestedDocument, Map)},</li>
* <li>{@link #parseSequenceAnnotation(NestedDocument, Map)},</li>
* <li>{@link ComponentDefinition#ComponentDefinition(URI, Set)}, </li>
* <li>{@link ComponentDefinition#setDisplayId(String)}, </li>
* <li>{@link ComponentDefinition#setVersion(String)}, </li>
* <li>{@link ComponentDefinition#setWasDerivedFrom(URI)}, </li>
* <li>{@link Identified#setAnnotations(List)},</li>
* <li>{@link ComponentDefinition#setComponents(Set)},</li>
* <li>{@link ComponentDefinition#setSequenceAnnotations(Set)},</li>
* <li>{@link ComponentDefinition#setSequenceConstraints(Set)}, or</li>
* <li>{@link SBOLDocument#addComponentDefinition(ComponentDefinition)}.</li>
* </ul>
* </li>
* </ul>
*/
@SuppressWarnings("unchecked")
private static ComponentDefinition parseComponentDefinition(SBOLDocument SBOLDoc, IdentifiableDocument<QName> topLevel, Map<URI, NestedDocument<QName>> nested) throws SBOLValidationException {
// URIcompliance.extractDisplayId(topLevel.getIdentity());
String displayId = null;
String name = null;
String description = null;
// URI.create(URIcompliance.extractPersistentId(topLevel.getIdentity()));
URI persistentIdentity = null;
String version = null;
Set<URI> wasDerivedFroms = new HashSet<>();
Set<URI> wasGeneratedBys = new HashSet<>();
Set<URI> attachments = new HashSet<>();
Set<URI> type = new HashSet<>();
Set<URI> roles = new HashSet<>();
Set<URI> sequences = new HashSet<>();
Set<Component> components = new HashSet<>();
List<Annotation> annotations = new ArrayList<>();
Set<SequenceAnnotation> sequenceAnnotations = new HashSet<>();
Set<SequenceConstraint> sequenceConstraints = new HashSet<>();
for (NamedProperty<QName> namedProperty : topLevel.getProperties()) {
if (namedProperty.getName().equals(Sbol2Terms.Identified.version)) {
if (!(namedProperty.getValue() instanceof Literal) || version != null || (!(((Literal<QName>) namedProperty.getValue()).getValue() instanceof String))) {
throw new SBOLValidationException("sbol-10206", topLevel.getIdentity());
}
version = ((Literal<QName>) namedProperty.getValue()).getValue().toString();
} else if (namedProperty.getName().equals(Sbol2Terms.Identified.persistentIdentity)) {
if (!(namedProperty.getValue() instanceof Literal) || persistentIdentity != null || (!(((Literal<QName>) namedProperty.getValue()).getValue() instanceof URI))) {
throw new SBOLValidationException("sbol-10203", topLevel.getIdentity());
}
persistentIdentity = URI.create(((Literal<QName>) namedProperty.getValue()).getValue().toString());
} else if (namedProperty.getName().equals(Sbol2Terms.Identified.displayId)) {
if (!(namedProperty.getValue() instanceof Literal) || displayId != null || (!(((Literal<QName>) namedProperty.getValue()).getValue() instanceof String))) {
throw new SBOLValidationException("sbol-10204", topLevel.getIdentity());
}
displayId = ((Literal<QName>) namedProperty.getValue()).getValue().toString();
} else if (namedProperty.getName().equals(Sbol2Terms.ComponentDefinition.type)) {
if (!(namedProperty.getValue() instanceof Literal) || (!(((Literal<QName>) namedProperty.getValue()).getValue() instanceof URI))) {
throw new SBOLValidationException("sbol-10502", topLevel.getIdentity());
}
type.add(URI.create(((Literal<QName>) namedProperty.getValue()).getValue().toString()));
} else if (namedProperty.getName().equals(Sbol2Terms.ComponentDefinition.roles)) {
if (!(namedProperty.getValue() instanceof Literal) || (!(((Literal<QName>) namedProperty.getValue()).getValue() instanceof URI))) {
throw new SBOLValidationException("sbol-10507", topLevel.getIdentity());
}
roles.add(URI.create(((Literal<QName>) namedProperty.getValue()).getValue().toString()));
} else if (namedProperty.getName().equals(Sbol2Terms.ComponentDefinition.hasComponent) || namedProperty.getName().equals(Sbol2Terms.ComponentDefinition.hasSubComponent)) {
if (namedProperty.getValue() instanceof NestedDocument) {
NestedDocument<QName> nestedDocument = ((NestedDocument<QName>) namedProperty.getValue());
if (nestedDocument.getType() == null || !nestedDocument.getType().equals(Sbol2Terms.Component.Component)) {
throw new SBOLValidationException("sbol-10519", topLevel.getIdentity());
}
components.add(parseComponent(SBOLDoc, ((NestedDocument<QName>) namedProperty.getValue()), nested));
} else {
URI uri = (URI) ((Literal<QName>) namedProperty.getValue()).getValue();
NestedDocument<QName> nestedDocument = nested.get(uri);
if (nestedDocument == null || nestedDocument.getType() == null || !nestedDocument.getType().equals(Sbol2Terms.Component.Component)) {
throw new SBOLValidationException("sbol-10519", topLevel.getIdentity());
}
components.add(parseComponent(SBOLDoc, nested.get(uri), nested));
}
} else if (namedProperty.getName().equals(Sbol2Terms.ComponentDefinition.hasSequence)) {
if (namedProperty.getValue() instanceof Literal) {
if (!(((Literal<QName>) namedProperty.getValue()).getValue() instanceof URI)) {
throw new SBOLValidationException("sbol-10512", topLevel.getIdentity());
}
sequences.add(URI.create(((Literal<QName>) namedProperty.getValue()).getValue().toString()));
} else if (namedProperty.getValue() instanceof IdentifiableDocument) {
if (((IdentifiableDocument<QName>) namedProperty).getType().equals(Sbol2Terms.Sequence.Sequence)) {
Sequence sequence = parseSequence(SBOLDoc, (IdentifiableDocument<QName>) namedProperty.getValue());
sequences.add(sequence.getIdentity());
} else {
throw new SBOLValidationException("sbol-10512", topLevel.getIdentity());
}
} else {
throw new SBOLValidationException("sbol-10512", topLevel.getIdentity());
}
} else if (namedProperty.getName().equals(Sbol2Terms.ComponentDefinition.hasSequenceAnnotations)) {
if (namedProperty.getValue() instanceof NestedDocument) {
NestedDocument<QName> nestedDocument = ((NestedDocument<QName>) namedProperty.getValue());
if (nestedDocument.getType() == null || !nestedDocument.getType().equals(Sbol2Terms.SequenceAnnotation.SequenceAnnotation)) {
throw new SBOLValidationException("sbol-10521", topLevel.getIdentity());
}
sequenceAnnotations.add(parseSequenceAnnotation(((NestedDocument<QName>) namedProperty.getValue()), nested));
} else {
URI uri = (URI) ((Literal<QName>) namedProperty.getValue()).getValue();
NestedDocument<QName> nestedDocument = nested.get(uri);
if (nestedDocument == null || nestedDocument.getType() == null || !nestedDocument.getType().equals(Sbol2Terms.SequenceAnnotation.SequenceAnnotation)) {
throw new SBOLValidationException("sbol-10521", topLevel.getIdentity());
}
sequenceAnnotations.add(parseSequenceAnnotation(nested.get(uri), nested));
}
} else if (namedProperty.getName().equals(Sbol2Terms.ComponentDefinition.hasSequenceConstraints)) {
if (namedProperty.getValue() instanceof NestedDocument) {
NestedDocument<QName> nestedDocument = ((NestedDocument<QName>) namedProperty.getValue());
if (nestedDocument.getType() == null || !nestedDocument.getType().equals(Sbol2Terms.SequenceConstraint.SequenceConstraint)) {
throw new SBOLValidationException("sbol-10524", topLevel.getIdentity());
}
sequenceConstraints.add(parseSequenceConstraint(((NestedDocument<QName>) namedProperty.getValue())));
} else {
URI uri = (URI) ((Literal<QName>) namedProperty.getValue()).getValue();
NestedDocument<QName> nestedDocument = nested.get(uri);
if (nestedDocument == null || nestedDocument.getType() == null || !nestedDocument.getType().equals(Sbol2Terms.SequenceConstraint.SequenceConstraint)) {
throw new SBOLValidationException("sbol-10524", topLevel.getIdentity());
}
sequenceConstraints.add(parseSequenceConstraint(nested.get(uri)));
}
} else if (namedProperty.getName().equals(Sbol2Terms.Identified.title)) {
if (!(namedProperty.getValue() instanceof Literal) || name != null || (!(((Literal<QName>) namedProperty.getValue()).getValue() instanceof String))) {
throw new SBOLValidationException("sbol-10212", topLevel.getIdentity());
}
name = ((Literal<QName>) namedProperty.getValue()).getValue().toString();
} else if (namedProperty.getName().equals(Sbol2Terms.Identified.description)) {
if (!(namedProperty.getValue() instanceof Literal) || description != null || (!(((Literal<QName>) namedProperty.getValue()).getValue() instanceof String))) {
throw new SBOLValidationException("sbol-10213", topLevel.getIdentity());
}
description = ((Literal<QName>) namedProperty.getValue()).getValue().toString();
} else if (namedProperty.getName().equals(Sbol2Terms.Identified.wasDerivedFrom)) {
if (!(namedProperty.getValue() instanceof Literal) || (!(((Literal<QName>) namedProperty.getValue()).getValue() instanceof URI))) {
throw new SBOLValidationException("sbol-10208", topLevel.getIdentity());
}
wasDerivedFroms.add(URI.create(((Literal<QName>) namedProperty.getValue()).getValue().toString()));
} else if (namedProperty.getName().equals(Sbol2Terms.Identified.wasGeneratedBy)) {
if (!(namedProperty.getValue() instanceof Literal) || (!(((Literal<QName>) namedProperty.getValue()).getValue() instanceof URI))) {
throw new SBOLValidationException("sbol-10221", topLevel.getIdentity());
}
wasGeneratedBys.add(URI.create(((Literal<QName>) namedProperty.getValue()).getValue().toString()));
} else if (namedProperty.getName().equals(Sbol2Terms.TopLevel.hasAttachment)) {
if (namedProperty.getValue() instanceof Literal) {
if (!(((Literal<QName>) namedProperty.getValue()).getValue() instanceof URI)) {
throw new SBOLValidationException("sbol-XXXXX", topLevel.getIdentity());
}
attachments.add(URI.create(((Literal<QName>) namedProperty.getValue()).getValue().toString()));
} else if (namedProperty.getValue() instanceof IdentifiableDocument) {
if (((IdentifiableDocument<QName>) namedProperty).getType().equals(Sbol2Terms.Attachment.Attachment)) {
Attachment attachment = parseAttachment(SBOLDoc, (IdentifiableDocument<QName>) namedProperty.getValue());
attachments.add(attachment.getIdentity());
} else {
throw new SBOLValidationException("sbol-XXXXX", topLevel.getIdentity());
}
} else {
throw new SBOLValidationException("sbol-XXXXX", topLevel.getIdentity());
}
} else {
annotations.add(new Annotation(namedProperty));
}
}
// ComponentDefinition c = SBOLDoc.createComponentDefinition(topLevel.getIdentity(), type, roles);
// c.setPersistentIdentity(topLevel.getOptionalUriPropertyValue(Sbol2Terms.Identified.persistentIdentity));
// ComponentDefinition c = SBOLDoc.createComponentDefinition(topLevel.getIdentity(), type);
ComponentDefinition c = new ComponentDefinition(topLevel.getIdentity(), type);
if (roles != null)
c.setRoles(roles);
if (displayId != null)
c.setDisplayId(displayId);
if (persistentIdentity != null)
c.setPersistentIdentity(persistentIdentity);
if (!sequences.isEmpty())
c.setSequences(sequences);
if (!components.isEmpty())
c.setComponents(components);
if (!sequenceAnnotations.isEmpty())
c.setSequenceAnnotations(sequenceAnnotations);
if (!sequenceConstraints.isEmpty())
c.setSequenceConstraints(sequenceConstraints);
if (name != null)
c.setName(name);
if (description != null)
c.setDescription(description);
if (!annotations.isEmpty())
c.setAnnotations(annotations);
if (version != null)
c.setVersion(version);
c.setWasDerivedFroms(wasDerivedFroms);
c.setWasGeneratedBys(wasGeneratedBys);
c.setAttachments(attachments);
ComponentDefinition oldC = SBOLDoc.getComponentDefinition(topLevel.getIdentity());
if (oldC == null) {
SBOLDoc.addComponentDefinition(c);
} else {
if (!c.equals(oldC)) {
throw new SBOLValidationException("sbol-10202", c);
}
}
return c;
}
Aggregations