MCPcopy Index your code
hub / github.com/apache/groovy / main

Method main

benchmark/bench/fasta.java:128–139  ·  view source on GitHub ↗
(String[] args)

Source from the content-addressed store, hash-verified

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;

Callers

nothing calls this directly

Calls 5

makeCumulativeMethod · 0.95
makeRepeatFastaMethod · 0.95
makeRandomFastaMethod · 0.95
parseIntMethod · 0.80
closeMethod · 0.65

Tested by

no test coverage detected