You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
People keep asking for SBOL3 IO so I thought there should be an issue for it.
Describe the solution you'd like
The SBOL3 parser should implement four functions `ReadSBOL, ParseSBO, BuildSBOL, WriteSBOL.
ReadSBOL pretty much just does file io and passes a file string to ParseSBOL.
ParseSBOL picks apart the sbol file string and appropriately fills an AnnotatedSequence instance with it.
BuildSBOL takes an AnnotatedSequence object and uses it to build a string that can be passed to WriteSBOL.
WriteSBOL writes an SBOL string to file.
Each function should be tested. The easiest way is to read, and parse an SBOL into a Sequence then build a string with it and write it out then compare the input with the output. If they're the same then you've done it!
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
People keep asking for SBOL3 IO so I thought there should be an issue for it.
Describe the solution you'd like
The SBOL3 parser should implement four functions `ReadSBOL, ParseSBO, BuildSBOL, WriteSBOL.
ReadSBOL
pretty much just does file io and passes a file string toParseSBOL
.ParseSBOL
picks apart the sbol file string and appropriately fills an AnnotatedSequence instance with it.BuildSBOL
takes anAnnotatedSequence
object and uses it to build a string that can be passed toWriteSBOL
.WriteSBOL
writes an SBOL string to file.Each function should be tested. The easiest way is to read, and parse an SBOL into a
Sequence
then build a string with it and write it out then compare the input with the output. If they're the same then you've done it!The text was updated successfully, but these errors were encountered: