Skip to content

Commit

Permalink
replacing meets for precedes in engineered region
Browse files Browse the repository at this point in the history
  • Loading branch information
Gonza10V authored Mar 26, 2024
1 parent 408a297 commit f36b5b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sbol_utilities/component.py
Original file line number Diff line number Diff line change
Expand Up @@ -434,7 +434,7 @@ def engineered_region(identity: str, features: Union[List[sbol3.SubComponent], L
if fix_order == True:
if len(er_component.features) > 1:
for i in range(len(er_component.features)-1):
constraint = sbol3.Constraint(sbol3.SBOL_MEETS, er_component.features[i], er_component.features[i+1])
constraint = sbol3.Constraint(sbol3.SBOL_PRECEDES, er_component.features[i], er_component.features[i+1])
er_component.constraints.append(constraint)
else:
pass
Expand Down

0 comments on commit f36b5b1

Please sign in to comment.