Adds or resets an info field @param key key for field @param values values for the field. Any individual value containing a comma will be split. @return this, for call chaining
(String key, String... values)
| 406 | * @return this, for call chaining |
| 407 | */ |
| 408 | public VcfRecord setInfo(String key, String... values) { |
| 409 | mInfo.put(key, values == null ? "" : StringUtils.join(ALT_CALL_INFO_SEPARATOR, values)); |
| 410 | return this; |
| 411 | } |
| 412 | |
| 413 | /** |
| 414 | * Remove an existing info field. |