use of org.monarchinitiative.loinc2hpocli.command.LoincTableCoreStatsCommand in project loinc2hpo by monarch-initiative.
the class Main method main.
public static void main(String[] args) {
if (args.length == 0) {
// if the user doesn't pass any command or option, add -h to show help
args = new String[] { "-h" };
}
CommandLine cline = new CommandLine(new Main()).addSubcommand("annotation-qc", new AnnotationQcCommand()).addSubcommand("stats", new LoincTableCoreStatsCommand());
cline.setToggleBooleanFlags(false);
int exitCode = cline.execute(args);
System.exit(exitCode);
}
Aggregations