public enum GATKReportVersion extends java.lang.Enum<GATKReportVersion>
Enum Constant and Description |
---|
V0_1
Differences between other versions:
- Does not allow spaces in cells.
|
V0_2
Differences between other versions:
- Spaces allowed in cells, for example in sample names with spaces in them ex: "C507/FG-CR 6".
|
V1_0 |
V1_1 |
Modifier and Type | Method and Description |
---|---|
boolean |
equals(GATKReportVersion that) |
static GATKReportVersion |
fromHeader(java.lang.String header)
Returns the GATK Report Version from the file header.
|
java.lang.String |
toString() |
static GATKReportVersion |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static GATKReportVersion[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GATKReportVersion V0_1
public static final GATKReportVersion V0_2
public static final GATKReportVersion V1_0
public static final GATKReportVersion V1_1
public static GATKReportVersion[] values()
for (GATKReportVersion c : GATKReportVersion.values()) System.out.println(c);
public static GATKReportVersion valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic java.lang.String toString()
toString
in class java.lang.Enum<GATKReportVersion>
public boolean equals(GATKReportVersion that)
public static GATKReportVersion fromHeader(java.lang.String header)
header
- Header from the file starting with ##:GATKReport.v[version]