(String path)
| 36 | protected boolean removeNameSuffix = true; |
| 37 | |
| 38 | public FastqReader(String path) throws IOException { |
| 39 | br = getTextFileReader(path); |
| 40 | itr = br.lines().iterator(); |
| 41 | } |
| 42 | |
| 43 | public void setRemoveNameSuffix(boolean value) { |
| 44 | this.removeNameSuffix = value; |
nothing calls this directly
no test coverage detected