We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In the SBOL tutorial, we use a loop for searching for a feature:
for f in i13504.features: if f.instance_of == b0015.identity: print(f) f.locations.append(Range(i13504_seq, 746, 875))
The search through features could be turned into a little macro routine, e.g., def find_feature(matching: Callable) -> sbol3.Feature
def find_feature(matching: Callable) -> sbol3.Feature
The text was updated successfully, but these errors were encountered:
find_feature function SynBioDex#185
c4e06dd
This function is to search for a feature in the sbol3 file
Successfully merging a pull request may close this issue.
In the SBOL tutorial, we use a loop for searching for a feature:
The search through features could be turned into a little macro routine, e.g.,
def find_feature(matching: Callable) -> sbol3.Feature
The text was updated successfully, but these errors were encountered: