Skip to content
This repository has been archived by the owner on Oct 8, 2020. It is now read-only.

Commit

Permalink
Minor
Browse files Browse the repository at this point in the history
  • Loading branch information
LorenzBuehmann committed Jun 28, 2019
1 parent 634099a commit 2ddb2f9
Showing 1 changed file with 8 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -93,15 +93,20 @@ object RDFGraphMaterializer {
val inferredGraph = reasoner.apply(graph)
// println(s"|G_inf| = ${inferredGraph.size}")

// println(env.getExecutionPlan())

// write triples to disk
RDFGraphWriter.writeToDisk(inferredGraph, output, writeToSingleFile, sortedOutput)

// println(env.getExecutionPlan())
// println(env.getExecutionPlan())

val jn = if (jobName.isEmpty) s"${profile} Reasoning" else jobName
val jn = if (jobName.isEmpty) s"$profile Reasoning" else jobName

// run the program
env.execute(jn)



}

// the config object
Expand All @@ -120,7 +125,7 @@ object RDFGraphMaterializer {

// the CLI parser
val parser = new scopt.OptionParser[Config]("RDFGraphMaterializer") {
head("RDFGraphMaterializer", "0.5.0")
head("RDFGraphMaterializer", "0.6.0")

// opt[Seq[File]]('i', "input").required().valueName("<path1>,<path2>,...").
// action((x, c) => c.copy(in = x)).
Expand Down

0 comments on commit 2ddb2f9

Please sign in to comment.