Method
printHelp
(Options options, boolean error)
Source from the content-addressed store, hash-verified
| 5034 | } |
| 5035 | |
| 5036 | public static void printHelp(Options options, boolean error) { |
| 5037 | printVersionInfo(false); |
| 5038 | System.out.println(); |
| 5039 | |
| 5040 | HelpFormatter formatter = new HelpFormatter(); |
| 5041 | formatter.setOptionComparator(null); |
| 5042 | formatter.printHelp( "java -jar RNA-Bloom.jar", options, true); |
| 5043 | |
| 5044 | if (error) { |
| 5045 | System.exit(1); |
| 5046 | } |
| 5047 | else { |
| 5048 | System.exit(0); |
| 5049 | } |
| 5050 | } |
| 5051 | |
| 5052 | public static void printVersionInfo(boolean exit) { |
| 5053 | System.out.println( |
Tested by
no test coverage detected