(String header, String seq)
| 38 | } |
| 39 | |
| 40 | public synchronized void write(String header, String seq) throws IOException { |
| 41 | out.write('>'); |
| 42 | out.write(header); |
| 43 | out.write('\n'); |
| 44 | if (writeUracil) { |
| 45 | out.write(seq.replace('T', 'U')); |
| 46 | } |
| 47 | else { |
| 48 | out.write(seq); |
| 49 | } |
| 50 | out.write('\n'); |
| 51 | } |
| 52 | |
| 53 | public void close() throws IOException { |
| 54 | out.flush(); |
no outgoing calls
no test coverage detected