9 lines
175 B
Java
9 lines
175 B
Java
|
|
package org.broadinstitute.variant.vcf;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* the count encodings we use for fields in VCF header lines
|
||
|
|
*/
|
||
|
|
public enum VCFHeaderLineCount {
|
||
|
|
INTEGER, A, G, UNBOUNDED;
|
||
|
|
}
|