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