Skip to content
Snippets Groups Projects
Commit cf32b992 authored by tjc's avatar tjc
Browse files

fix for showing new stop codons

git-svn-id: svn+ssh://svn.internal.sanger.ac.uk/repos/svn/pathsoft/artemis/trunk@14691 ee4ac58c-ac51-4696-9907-e4b3aa274f04
parent 2d601075
No related branches found
No related tags found
No related merge requests found
...@@ -138,9 +138,9 @@ public class VCFview extends JPanel ...@@ -138,9 +138,9 @@ public class VCFview extends JPanel
private boolean showInsertions = true; private boolean showInsertions = true;
private boolean showMultiAlleles = true; private boolean showMultiAlleles = true;
private boolean markAsNewStop = true; private boolean markAsNewStop = false;
final JCheckBoxMenuItem markNewStops = final JCheckBoxMenuItem markNewStops =
new JCheckBoxMenuItem("Mark new stops within CDS features", markAsNewStop); new JCheckBoxMenuItem("Mark new stops within CDS features", true);
// show variants that do not overlap CDS // show variants that do not overlap CDS
private boolean showNonOverlappings = true; private boolean showNonOverlappings = true;
...@@ -321,7 +321,7 @@ public class VCFview extends JPanel ...@@ -321,7 +321,7 @@ public class VCFview extends JPanel
final JComboBox combo = new JComboBox(tr[0].getmSeq()); final JComboBox combo = new JComboBox(tr[0].getmSeq());
if(tr[0].getmSeq().length > 1) if(tr[0].getmSeq().length > 1)
combo.addItem("Combine All"); combo.addItem("Combine References");
if(chr == null) if(chr == null)
this.chr = tr[0].getmSeq()[0]; this.chr = tr[0].getmSeq()[0];
...@@ -334,7 +334,7 @@ public class VCFview extends JPanel ...@@ -334,7 +334,7 @@ public class VCFview extends JPanel
{ {
public void itemStateChanged(ItemEvent e) public void itemStateChanged(ItemEvent e)
{ {
if(combo.getSelectedItem().equals("Combine All")) if(combo.getSelectedItem().equals("Combine References"))
concatSequences = true; concatSequences = true;
else else
{ {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment