Should've been calling queryOverlapping in locus mode.
git-svn-id: file:///humgen/gsa-scr1/gsa-engineering/svn_contents/trunk@360 348d0f76-0448-11de-a6fe-93d51630548a
This commit is contained in:
parent
a2a38a4bbb
commit
95753e1b34
|
|
@ -113,7 +113,7 @@ public class SAMBAMDataSource implements SimpleDataSource {
|
|||
|
||||
// we do different things for locus and read modes
|
||||
if (locusMode) {
|
||||
iter.query(location.getContig(), (int) location.getStart(), (int) location.getStop(), true);
|
||||
iter.queryOverlapping(location.getContig(), (int) location.getStart(), (int) location.getStop());
|
||||
} else {
|
||||
iter.queryContained(location.getContig(), (int) location.getStart(), (int) location.getStop());
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue