(String[] args)
| 126 | } |
| 127 | |
| 128 | public static void main(String[] args) throws IOException { |
| 129 | makeCumulative(HomoSapiens); |
| 130 | makeCumulative(IUB); |
| 131 | int n = 2500000; |
| 132 | if (args.length > 0) |
| 133 | n = Integer.parseInt(args[0]); |
| 134 | OutputStream out = System.out; |
| 135 | makeRepeatFasta("ONE", "Homo sapiens alu", ALU, n * 2, out); |
| 136 | makeRandomFasta("TWO", "IUB ambiguity codes", IUB, n * 3, out); |
| 137 | makeRandomFasta("THREE", "Homo sapiens frequency", HomoSapiens, n * 5, out); |
| 138 | out.close(); |
| 139 | } |
| 140 | |
| 141 | public static class frequency { |
| 142 | public byte c; |
nothing calls this directly
no test coverage detected