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
@HelpMessage("Configure style of triples to be output. RDF mode is the default; each existential relation is collapsed to a single direct triple.")
19
-
@ValueDescription("RDF|OWL")
17
+
@HelpMessage("Configure style of triples to be output. RDF mode is the default; each existential relation is collapsed to a single direct triple. TSV mode outputs the same triples as RDF mode, but as TSV, compacting IRIs using an optional prefixes file.")
18
+
@ValueDescription("RDF|OWL|TSV")
20
19
mode: OutputMode=RDFMode,
21
20
@HelpMessage("Property to restrict output relations to. Provide option multiple times for multiple properties. If no properties are provided (via CLI or file), then all properties found in the ontology will be used.")
22
21
@ValueDescription("IRI")
@@ -42,13 +41,23 @@ final case class Config(
42
41
@HelpMessage("Disable inference of unsatisfiable classes by the whelk reasoner (default false)")
43
42
@ValueDescription("bool")
44
43
disableOwlNothing: BoolValue=FalseValue,
44
+
@HelpMessage("Prefix mappings to use for TSV output (YAML dictionary")
45
+
@ValueDescription("filename")
46
+
prefixes: Option[String],
47
+
@HelpMessage("Compact OBO-style IRIs regardless of inclusion in prefixes file")
0 commit comments