MCPcopy Create free account
hub / github.com/BirolLab/RNA-Bloom / PafReader

Method PafReader

src/rnabloom/io/PafReader.java:36–39  ·  view source on GitHub ↗
(String path)

Source from the content-addressed store, hash-verified

34 private long records = 0;
35
36 public PafReader(String path) throws IOException {
37 br = getTextFileReader(path);
38 itr = br.lines().iterator();
39 }
40
41 public PafReader(InputStream in) {
42 br = new BufferedReader(new InputStreamReader(in), BUFFER_SIZE);

Callers

nothing calls this directly

Calls 1

getTextFileReaderMethod · 0.80

Tested by

no test coverage detected