Fixed problem with GenomeLoc logic -- optimization was causing assertion failure.

git-svn-id: file:///humgen/gsa-scr1/gsa-engineering/svn_contents/trunk@138 348d0f76-0448-11de-a6fe-93d51630548a
This commit is contained in:
depristo 2009-03-22 19:53:00 +00:00
parent 52ad08298a
commit c8d7207a8e
1 changed files with 1 additions and 1 deletions

View File

@ -190,7 +190,7 @@ public class GenomeLoc implements Comparable<GenomeLoc> {
{
if ( thisContig == thatContig )
{
assert(false);
// Optimization. If the pointers are equal, then the contigs are equal.
return 0;
}