@Args4JOption(
name = "--quiet",
aliases = Array("-q"),
usage = "Whether to compute additional statistics about the partitioned reads (default: false).",
handler = classOf[BooleanOptionHandler]
)
var quiet: Boolean = false
If seems to be a substantial performance difference so may want to make the default not to do that computation and then have an arg like --partitioning-debug-info to turn it on. --quiet to me implies it just affects what gets printed not what gets computed.
If seems to be a substantial performance difference so may want to make the default not to do that computation and then have an arg like
--partitioning-debug-info
to turn it on.--quiet
to me implies it just affects what gets printed not what gets computed.