We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dd28c62 commit d88761eCopy full SHA for d88761e
cli/src/main/scala/org/renci/relationgraph/Main.scala
@@ -50,7 +50,7 @@ object Main extends ZCaseApp[Config] {
50
def createStreamRDF(path: String): ZIO[Scope, Throwable, StreamRDF] = {
51
ZIO.acquireRelease(ZIO.attempt(new FileOutputStream(new File(path))))(stream => ZIO.succeed(stream.close())).flatMap { outputStream =>
52
ZIO.acquireRelease(ZIO.attempt {
53
- val stream = StreamRDFWriter.getWriterStream(outputStream, RDFFormat.TURTLE_FLAT, null)
+ val stream = StreamRDFWriter.getWriterStream(outputStream, RDFFormat.NTRIPLES, null)
54
stream.start()
55
stream
56
})(stream => ZIO.succeed(stream.finish()))
0 commit comments