Skip to content
Snippets Groups Projects
Commit f63e674b authored by tcarver's avatar tcarver
Browse files

fix for paired stack view when showing SNPs

parent 6979fefd
Branches
Tags
No related merge requests found
......@@ -1837,11 +1837,15 @@ public class BamView extends JPanel
else
g2.setColor(Color.blue);
Color c = g2.getColor();
drawRead(g2, pr.sam1, pixPerBase, ypos, baseAtStartOfView, getSNPs(pr.sam1.sam), ydiff);
if(pr.sam2 != null)
{
g2.setColor(c);
drawRead(g2, pr.sam2, pixPerBase, ypos, baseAtStartOfView, getSNPs(pr.sam2.sam), ydiff);
}
}
}
/**
* Check if a record is on the negative strand. If the RNA strand specific
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment