Methods for writing VCF records.
| 38 | * Methods for writing VCF records. |
| 39 | */ |
| 40 | public interface VcfWriter extends Closeable { |
| 41 | |
| 42 | /** |
| 43 | * @return current header |
| 44 | */ |
| 45 | VcfHeader getHeader(); |
| 46 | |
| 47 | /** |
| 48 | * Write record |
| 49 | * |
| 50 | * @param record record to write |
| 51 | * @throws IOException if error |
| 52 | */ |
| 53 | void write(VcfRecord record) throws IOException; |
| 54 | } |
no outgoing calls
no test coverage detected