633d6c98456d898bdaec9a9d89dddf17fc0bf2a8
markd
  Thu Nov 13 10:01:36 2014 -0800
Fixed bug in liftOver where annotations that ended at the exact end ofa scaffold were not mapped.

diff --git src/hg/lib/liftOver.c src/hg/lib/liftOver.c
index 0a92c4f..7352370 100644
--- src/hg/lib/liftOver.c
+++ src/hg/lib/liftOver.c
@@ -894,31 +894,31 @@
 	else
 	    {
 	    slAddHead(&badList, r);
 	    }
 	r = nextR;
 	if (r == NULL)
 	    {
 	    done = TRUE;
 	    break;
 	    }
 	nextR = r->next;
 	gotStart = FALSE;
 	}
     if (done) 
 	break;
-    if (b->tEnd <= r->end)
+    if (b->tEnd < r->end)
 	{
 	b = b->next;
 	if (b == NULL)
 	    {
 	    done = TRUE;
 	    break;
 	    }
 	}
     if (done) 
 	break;
     }
 slReverse(&goodList);
 slReverse(&badList);
 if (needThick)
     {