Adds a format key without setting any sample values. @param key format value to be set @return this, for call chaining
(String key)
| 468 | * @return this, for call chaining |
| 469 | */ |
| 470 | public VcfRecord addFormat(String key) { |
| 471 | addOrGetFormat(key); |
| 472 | return this; |
| 473 | } |
| 474 | |
| 475 | // Ensures that GT is first |
| 476 | private List<String> addOrGetFormat(String key) { |
no test coverage detected