support for two new VCF header info field value-types, Flag (for fields that are just boolean truths), and Character (for single charatcer info fields).

git-svn-id: file:///humgen/gsa-scr1/gsa-engineering/svn_contents/trunk@3105 348d0f76-0448-11de-a6fe-93d51630548a
This commit is contained in:
aaron 2010-04-01 03:11:32 +00:00
parent 3d3d19a6a7
commit c3c6e632d1
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@ public class VCFInfoHeaderLine extends VCFHeaderLine {
// the info field types
public enum INFO_TYPE {
Integer, Float, String
Integer, Float, String, Character, Flag
}
private String mName;