(String path, boolean append)
| 29 | private boolean writeUracil = false; |
| 30 | |
| 31 | public FastaWriter(String path, boolean append) throws IOException { |
| 32 | out = getTextFileWriter(path, append); |
| 33 | } |
| 34 | |
| 35 | public FastaWriter(String path, boolean append, boolean writeUracil) throws IOException { |
| 36 | this(path, append); |
nothing calls this directly
no test coverage detected