Open joshmoore opened 2 months ago
@andrawaag has been running into issues with various parsers due to the newlines in literals:
http://www.openmicroscopy.org/rdf/2016-06/ome_core/Value """<SegmentDefinition> <Name>example</Name> ... </SegmentDefinition>""" .
Based on:
\n
<http://www.openmicroscopy.org/rdf/2016-06/ome_core/Value> """<ChannelThresholds>\n <RoiName>012</RoiName>\n
If this is not sufficient, then we may need to create a Graph object very frequently and use the .serialize() method.
Graph
.serialize()
@andrawaag has been running into issues with various parsers due to the newlines in literals:
Based on:
\n
escapes:If this is not sufficient, then we may need to create a
Graph
object very frequently and use the.serialize()
method.