Merge pull request #1178 from broadinstitute/ms_ROCCurve
ROCCurve High Confidence Mode
This commit is contained in:
commit
0d936b28c4
|
|
@ -62,6 +62,7 @@ public class GenomeLoc implements Comparable<GenomeLoc>, Serializable, HasGenome
|
||||||
// TODO - WARNING WARNING WARNING code somehow depends on the name of the contig being null!
|
// TODO - WARNING WARNING WARNING code somehow depends on the name of the contig being null!
|
||||||
public static final GenomeLoc UNMAPPED = new GenomeLoc((String)null);
|
public static final GenomeLoc UNMAPPED = new GenomeLoc((String)null);
|
||||||
public static final GenomeLoc WHOLE_GENOME = new GenomeLoc("all");
|
public static final GenomeLoc WHOLE_GENOME = new GenomeLoc("all");
|
||||||
|
public static final GenomeLoc END_OF_GENOME = new GenomeLoc("Y", 23, 59347566, 59347566);
|
||||||
|
|
||||||
public static final boolean isUnmapped(GenomeLoc loc) {
|
public static final boolean isUnmapped(GenomeLoc loc) {
|
||||||
return loc == UNMAPPED;
|
return loc == UNMAPPED;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue