Properly output .bed
git-svn-id: file:///humgen/gsa-scr1/gsa-engineering/svn_contents/trunk@4905 348d0f76-0448-11de-a6fe-93d51630548a
This commit is contained in:
parent
464d0e18e3
commit
cebfd01857
|
|
@ -47,7 +47,7 @@ public class CreateTriggerTrack extends RodWalker<Integer, Integer> {
|
|||
|
||||
Collection<VariantContext> VCs = tracker.getAllVariantContexts(ref);
|
||||
if ( VCs.size() > 0 )
|
||||
writer.println(context.getLocation().getContig() + "\t" + context.getLocation().getStart() + "\t" + context.getLocation().getStart());
|
||||
writer.println(context.getLocation().getContig() + "\t" + (context.getLocation().getStart()-1) + "\t" + context.getLocation().getStart());
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue