Bug fix: at one locus in the dataset, two reads were dropped.
git-svn-id: file:///humgen/gsa-scr1/gsa-engineering/svn_contents/trunk@2872 348d0f76-0448-11de-a6fe-93d51630548a
This commit is contained in:
parent
5546aa4416
commit
a0e8de40cf
|
|
@ -111,7 +111,7 @@ public class IndexDelimitedLocusShardStrategy implements ShardStrategy {
|
|||
int binStart = filePointer!=null ? blockDrivenDataSource.getFirstLocusInBin(filePointer.bin) : 0;
|
||||
int binStop = filePointer!=null ? blockDrivenDataSource.getLastLocusInBin(filePointer.bin) : 0;
|
||||
|
||||
while(binStop <= locationStart && binIterator.hasNext()) {
|
||||
while(binStop < locationStart && binIterator.hasNext()) {
|
||||
if(filePointer != null && filePointer.locations.size() > 0)
|
||||
filePointers.add(filePointer);
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue