Merge pull request #1178 from broadinstitute/ms_ROCCurve

ROCCurve High Confidence Mode
This commit is contained in:
meganshand 2015-10-22 09:19:13 -04:00
commit 0d936b28c4
1 changed files with 1 additions and 0 deletions

View File

@ -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!
public static final GenomeLoc UNMAPPED = new GenomeLoc((String)null);
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) {
return loc == UNMAPPED;