(boolean exit)
| 5050 | } |
| 5051 | |
| 5052 | public static void printVersionInfo(boolean exit) { |
| 5053 | System.out.println( |
| 5054 | "RNA-Bloom v" + VERSION + "\n" + |
| 5055 | "Ka Ming Nip, Canada's Michael Smith Genome Sciences Centre, BC Cancer\n" + |
| 5056 | "Copyright 2018-present" |
| 5057 | ); |
| 5058 | |
| 5059 | if (exit) { |
| 5060 | System.exit(0); |
| 5061 | } |
| 5062 | } |
| 5063 | |
| 5064 | private final static String FIELD_SEPARATOR = "\\s+"; // any white space character |
| 5065 |