Newer
Older
/* Splash.java
*
* created: Wed May 10 2000
*
* This file is part of Artemis
*
* Copyright (C) 2000,2002 Genome Research Limited
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*
* $Header: //tmp/pathsoft/artemis/uk/ac/sanger/artemis/components/Splash.java,v 1.39 2008-11-13 14:14:31 tjc Exp $
*/
package uk.ac.sanger.artemis.components;
import uk.ac.sanger.artemis.Options;
import uk.ac.sanger.artemis.EntrySourceVector;
import uk.ac.sanger.artemis.Logger;
import uk.ac.sanger.artemis.util.InputStreamProgressListener;
import uk.ac.sanger.artemis.util.InputStreamProgressEvent;
import uk.ac.sanger.artemis.util.StringVector;
import uk.ac.sanger.artemis.sequence.Bases;
import uk.ac.sanger.artemis.sequence.AminoAcidSequence;
/**
* Base class that creates a generic "Splash Screen"
*
* @author Kim Rutherford <kmr@sanger.ac.uk>
* @version $Id: Splash.java,v 1.39 2008-11-13 14:14:31 tjc Exp $
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
/**
* Do any necessary cleanup then exit.
**/
abstract protected void exit();
/**
* A label for status and error messages.
**/
final private JLabel status_line = new JLabel("");
/**
* The program name that was passed to the constructor.
**/
private String program_name;
/**
* The program version that was passed to the constructor.
**/
private String program_version;
/**
* The JComponent to draw the main splash screen into
**/
private JComponent helix_canvas;
/**
* JMenu bar for the main window.
**/
private JMenuBar menu_bar;
protected JMenu file_menu;
protected JMenu options_menu;
private static boolean save_wd_properties = false;
public static boolean save_display_name = false;
public static boolean save_systematic_names = false;
/** The Artemis LogViewer. */
private final static LogViewer logger = new LogViewer();
public static org.apache.log4j.Logger logger4j =
org.apache.log4j.Logger.getLogger(Splash.class);
public Splash(final String program_title,
final String program_name)
{
super(program_title);
initLogger();
logger4j.info(System.getProperty("java.version"));
logger4j.info(System.getProperty("java.vendor"));
logger4j.info(System.getProperty("java.home"));
logger4j.info(System.getProperty("os.name"));
logger4j.info("Starting application: "+program_name);
}
/**
* Create a new JFrame for a Splash screen.
* @param program_name The full name of the program.
* @param program_title The name to use in the title.
* @param program_version The version string.
**/
public Splash(final String program_name,
final String program_title,
final String program_version)
{
this(program_title+" "+program_version, program_name);
this.program_name = program_name;
this.program_version = program_version;
final ClassLoader cl = this.getClass().getClassLoader();
try
{
String line;
InputStream in = cl.getResourceAsStream("etc/versions");
BufferedReader reader = new BufferedReader(new InputStreamReader(in));
while((line = reader.readLine()) != null)
{
if(line.startsWith(program_title))
this.program_version = line.substring( program_title.length() ).trim();
}
}
catch (Exception ex)
{
logger4j.debug(ex.getMessage());
}
addWindowListener(new WindowAdapter()
{
public void windowClosing(WindowEvent event)
{
//final javax.swing.LookAndFeel look_and_feel =
// javax.swing.UIManager.getLookAndFeel();
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
final javax.swing.plaf.FontUIResource font_ui_resource =
Options.getOptions().getFontUIResource();
java.util.Enumeration keys = UIManager.getDefaults().keys();
while(keys.hasMoreElements())
{
Object key = keys.nextElement();
Object value = UIManager.get(key);
if(value instanceof javax.swing.plaf.FontUIResource)
UIManager.put(key, font_ui_resource);
}
getContentPane().setLayout(new BorderLayout());
makeAllMenus();
helix_canvas = makeHelixCanvas();
status_line.setFont(Options.getOptions().getFont());
final FontMetrics fm =
this.getFontMetrics(status_line.getFont());
final int font_height = fm.getHeight()+10;
status_line.setMinimumSize(new Dimension(100, font_height));
status_line.setPreferredSize(new Dimension(100, font_height));
Border loweredbevel = BorderFactory.createLoweredBevelBorder();
Border raisedbevel = BorderFactory.createRaisedBevelBorder();
Border compound = BorderFactory.createCompoundBorder(raisedbevel,loweredbevel);
status_line.setBorder(compound);
getContentPane().add(helix_canvas, "Center");
getContentPane().add(status_line, "South");
ImageIcon icon = new ImageIcon(cl.getResource("images/icon.gif"));
if(icon != null)
{
final Image icon_image = icon.getImage();
MediaTracker tracker = new MediaTracker(this);
tracker.addImage(icon_image, 0);
try
{
tracker.waitForAll();
setIconImage(icon_image);
}
catch(InterruptedException e)
{
// ignore and continue
}
}
pack();
final int x = 460;
final int y = 250;
setSize(x, y);
final Dimension screen = Toolkit.getDefaultToolkit().getScreenSize();
setLocation(new Point((screen.width - getSize().width) / 2,
(screen.height - getSize().height) / 2));
logger.log("");
logger.getFileViewer().setHideOnClose(true);
final InputStream options_input_stream =
Splash.class.getResourceAsStream("/etc/log4j.properties");
if(options_input_stream != null)
{
Properties logProperties = new Properties();
try
{
logProperties.load(options_input_stream);
org.apache.log4j.PropertyConfigurator.configure(logProperties);
}
catch(FileNotFoundException e)
{
}
catch(IOException e)
{
}
}
}
/**
* Generic registration with the Mac OS X application menu
* Checks the platform, then attempts to register with the Apple EAWT
*/
private void registerForMacOSXEvents()
{
if(isMac())
{
try
{
// Generate and register the OSXAdapter, passing it a hash of all the methods we wish to
// use as delegates for various com.apple.eawt.ApplicationListener methods
Class splashClass = Class.forName("uk.ac.sanger.artemis.components.Splash");
OSXAdapter.setQuitHandler(this,
splashClass.getDeclaredMethod("exitApp", (Class[])null));
OSXAdapter.setAboutHandler(this,
splashClass.getDeclaredMethod("about", (Class[])null));
//OSXAdapter.setPreferencesHandler(this,
// splashClass.getDeclaredMethod("preferences", (Class[])null));
OSXAdapter.setFileHandler(this,
splashClass.getDeclaredMethod("loadFile", new Class[] { String.class }));
}
catch (Exception e)
{
logger4j.error("Error while loading the OSXAdapter:");
logger4j.error(e.getMessage());
}
}
logger4j.info("Working directory: "+System.getProperty("user.dir"));
}
private boolean isMac()
{
return System.getProperty("mrj.version") != null;
}
{
ClassLoader cl = this.getClass().getClassLoader();
ImageIcon icon = new ImageIcon(cl.getResource("images/icon.gif"));
JOptionPane.showMessageDialog(this,
getTitle()+ "\nthis is free software and is distributed"+
"\nunder the terms of the GNU General Public License.",
"About", JOptionPane.INFORMATION_MESSAGE,
icon);
}
protected void loadFile(final String fileName)
{
if(this instanceof ArtemisMain)
((ArtemisMain)this).readArgsAndOptions(new String[]{ fileName });
/**
* Return a JComponent object that will display a helix and a short
* copyright notice.
**/
private JComponent makeHelixCanvas()
{
return new JPanel()
{
/** */
private static final long serialVersionUID = 1L;
public void update(Graphics g)
{
paint(g);
}
// return the program name and the program mode in one String
// private String getNameString()
// {
// if(Options.getOptions().isEukaryoticMode())
// return program_name + " [Eukaryotic mode]";
// else
// return program_name + " [Prokaryotic mode]";
// return geneticCode;
// }
/**
* Draws the splash screen text.
**/
public int textPaint(final Graphics g)
{
FontMetrics fm = this.getFontMetrics(g.getFont());
final int font_height = fm.getHeight() + 3;
g.setColor(Color.black);
return font_height;
}
public void paint(final Graphics g)
{
/*final boolean simple_splash_screen =
Options.getOptions().getPropertyTruthValue("simple_splash_screen");*/
g.setColor(Color.white);
g.fillRect(0, 0, this.getSize().width, this.getSize().height);
if(helix == null)
{
ClassLoader cl = this.getClass().getClassLoader();
ImageIcon helix_icon = new ImageIcon(cl.getResource("images/PSUlogo.gif")); //"images/helix.gif"));
helix = helix_icon.getImage();
tracker = new MediaTracker(this);
tracker.addImage(helix, 0);
try
{
tracker.waitForAll();
helix_height = helix.getHeight(this);
}
catch(InterruptedException e)
{
return;
}
}
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
}
MediaTracker tracker = null;
/**
* The image of the Sanger DNA logo. This is set in paint().
**/
private Image helix = null;
/**
* The height of the Sanger DNA logo. This is set in paint().
**/
private int helix_height;
};
}
/**
* Return the reference of the Label used as a status line.
**/
public JLabel getStatusLabel()
{
return status_line;
}
/**
* The possible sources for reading Entry objects.
**/
public EntrySourceVector getEntrySources(final JFrame frame)
{
return Utilities.getEntrySources(frame, stream_progress_listener);
}
/**
* Return an InputStreamProgressListener which updates the error label with
* the current number of chars read while reading
**/
public InputStreamProgressListener getInputStreamProgressListener()
{
return stream_progress_listener;
}
/**
* Force the options files to be re-read and the EntryEdit components to be
* redisplayed.
**/
private void resetOptions()
{
Options.getOptions().reset();
}
/**
* Make all the menus and menu items for the main window. Also sets up
* suitable ActionListener objects for each item.
*/
private void makeAllMenus()
{
menu_bar = new JMenuBar();
file_menu = new JMenu("File");
menu_bar.add(file_menu);
menu_bar.add(options_menu);
setJMenuBar(menu_bar);
{
public void actionPerformed(ActionEvent event)
{
resetOptions();
}
};
makeMenuItem(options_menu, "Re-read Options", menu_listener);
final JCheckBoxMenuItem enable_direct_edit_item =
new JCheckBoxMenuItem("Enable Direct Editing");
enable_direct_edit_item.setState(Options.getOptions().canDirectEdit());
enable_direct_edit_item.addItemListener(new ItemListener()
{
public void itemStateChanged(ItemEvent event)
{
final boolean item_state = enable_direct_edit_item.getState();
Options.getOptions().setDirectEdit(item_state);
}
});
options_menu.add(enable_direct_edit_item);
options_menu.addSeparator();
options_menu.add(new JLabel(" --- Genetic Codes Tables ---"));
makeGeneticCodeMenu(options_menu);
final JCheckBoxMenuItem j2ssh_option = new JCheckBoxMenuItem(
"Send Searches via SSH");
if(System.getProperty("j2ssh") != null)
j2ssh_option.setState(true);
else
j2ssh_option.setState(false);
j2ssh_option.addItemListener(new ItemListener()
{
public void itemStateChanged(ItemEvent event)
{
final boolean item_state = j2ssh_option.getState();
if(item_state)
System.setProperty("j2ssh", "");
else
System.setProperty("j2ssh", "false");
}
});
options_menu.add(j2ssh_option);
options_menu.addSeparator();
final JCheckBoxMenuItem highlight_active_entry_item =
new JCheckBoxMenuItem("Highlight Active Entry");
final boolean highlight_active_entry_state =
Options.getOptions().highlightActiveEntryFlag();
highlight_active_entry_item.setState(highlight_active_entry_state);
highlight_active_entry_item.addItemListener(new ItemListener()
{
public void itemStateChanged(ItemEvent event)
{
final boolean item_state = highlight_active_entry_item.getState();
Options.getOptions().setHighlightActiveEntryFlag(item_state);
}
});
options_menu.add(highlight_active_entry_item);
if(Options.getOptions().getProperty("black_belt_mode") != null)
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
{
final JCheckBoxMenuItem black_belt_mode_item =
new JCheckBoxMenuItem("Black Belt Mode");
final boolean state =
Options.getOptions().isBlackBeltMode();
black_belt_mode_item.setState(state);
black_belt_mode_item.addItemListener(new ItemListener()
{
public void itemStateChanged(ItemEvent event)
{
final boolean item_state = black_belt_mode_item.getState();
if(item_state)
Options.getOptions().put("black_belt_mode", "true");
else
Options.getOptions().put("black_belt_mode", "false");
}
});
options_menu.add(black_belt_mode_item);
}
if(Options.isUnixHost())
{
options_menu.addSeparator();
menu_listener = new ActionListener()
{
public void actionPerformed(ActionEvent event)
{
showLog();
}
};
makeMenuItem(options_menu, "Show Log Window", menu_listener);
menu_listener = new ActionListener()
{
public void actionPerformed(ActionEvent event)
{
logger.setVisible(false);
}
};
makeMenuItem(options_menu, "Hide Log Window", menu_listener);
}
menu_listener = new ActionListener()
{
public void actionPerformed(ActionEvent event)
{
setWorkingDirectory();
}
};
makeMenuItem(options_menu, "Set Working Directory...", menu_listener);
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
JMenu lafMenu = new JMenu("Look and Feel");
final LookAndFeelInfo[] lafInfo = UIManager.getInstalledLookAndFeels();
ButtonGroup group = new ButtonGroup();
for(int i=0; i<lafInfo.length; i++)
{
JCheckBoxMenuItem laf = new JCheckBoxMenuItem(lafInfo[i].getName());
group.add(laf);
lafMenu.add(laf);
final LookAndFeelInfo thisLAF = lafInfo[i];
if(UIManager.getLookAndFeel().getClass().getName().equals(thisLAF.getClassName()))
laf.setSelected(true);
laf.addItemListener(new ItemListener()
{
public void itemStateChanged(ItemEvent event)
{
if(event.getStateChange() == ItemEvent.DESELECTED)
return;
Frame[] frames = JFrame.getFrames();
try
{
UIManager.setLookAndFeel(thisLAF.getClassName());
}
catch(Exception e1)
{
e1.printStackTrace();
return;
}
for(int i = 0; i < frames.length; i++)
{
SwingUtilities.updateComponentTreeUI(frames[i]);
frames[i].repaint();
}
logger4j.debug("Set look and feel to: " + thisLAF.getClassName());
}
});
}
options_menu.add(lafMenu);
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
// list JFrames that are open
final JMenu framesMenu = new JMenu("Windows");
menu_bar.add(framesMenu);
framesMenu.addItemListener(new ItemListener()
{
public void itemStateChanged(ItemEvent event)
{
framesMenu.removeAll();
Frame[] frames = JFrame.getFrames();
for(int i=0;i<frames.length;i++)
{
if( !(frames[i] instanceof JFrame) ||
!frames[i].isVisible())
continue;
final JFrame thisFrame = (JFrame)frames[i];
JCheckBoxMenuItem menuItem = new JCheckBoxMenuItem(thisFrame.getTitle(), false);
if(thisFrame.isActive())
menuItem.setSelected(true);
framesMenu.add(menuItem);
menuItem.addActionListener(new ActionListener()
{
public void actionPerformed(ActionEvent e)
{
thisFrame.toFront();
thisFrame.requestFocus();
}
});
}
}
});
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
}
/**
*
* Set the working directory, used by the file manager.
*
*/
public static void setWorkingDirectory()
{
final JTextField wdir = new JTextField(System.getProperty("user.dir")+" ");
if(Options.getOptions() != null &&
Options.getOptions().getProperty("artemis.user.dir") != null)
wdir.setText( Options.getOptions().getProperty("artemis.user.dir") );
Box bdown = Box.createVerticalBox();
Box bacross = Box.createHorizontalBox();
JButton browse = new JButton("Browse...");
browse.addActionListener(new ActionListener ()
{
public void actionPerformed (ActionEvent e)
{
final StickyFileChooser file_dialog = new StickyFileChooser();
file_dialog.setFileSelectionMode(JFileChooser.DIRECTORIES_ONLY);
final int status = file_dialog.showOpenDialog(null);
if(status == JFileChooser.APPROVE_OPTION)
wdir.setText(file_dialog.getSelectedFile().getAbsolutePath());
}
});
bacross.add(wdir);
bacross.add(browse);
bdown.add(bacross);
bacross = Box.createHorizontalBox();
JCheckBox saveDir = new JCheckBox("Save between sessions");
bacross.add(saveDir);
bacross.add(Box.createHorizontalGlue());
bdown.add(bacross);
Object[] possibleValues = { "OK" };
bdown,
"Set Working Directory",
JOptionPane.DEFAULT_OPTION,
JOptionPane.QUESTION_MESSAGE,null,
possibleValues, possibleValues[0]);
if( (new File(wdir.getText().trim())).exists() )
{
System.setProperty("user.dir", wdir.getText().trim());
if(saveDir.isSelected())
}
}
protected static void exitApp()
{
if(save_wd_properties || save_display_name || save_systematic_names)
saveProperties();
System.exit(0);
}
/**
*
* Save properties (working directory) between sessions.
*
*/
private static void saveProperties()
{
String uhome = System.getProperty("user.home");
String fs = System.getProperty("file.separator");
String prop = uhome+fs+".artemis_options";
}
/**
*
* Write or re-write properties and insert/update the user.dir property
* @param jemProp properties file
* @param uHome user working directory
*
*/
private static void writeProperties(String prop)
{
File file_txt = new File(prop);
File file_tmp = new File(prop + ".tmp");
try
{
if(file_txt.exists())
{
BufferedReader bufferedreader = new BufferedReader(new FileReader(file_txt));
BufferedWriter bufferedwriter = new BufferedWriter(new FileWriter(file_tmp));
String line;
while ((line = bufferedreader.readLine()) != null)
{
if(line.startsWith("artemis.user.dir") && save_wd_properties)
{
line = addEscapeChars("artemis.user.dir="+System.getProperty("user.dir"));
save_wd_properties = false;
}
if(line.startsWith("display_name_qualifiers") && save_display_name)
{
String str = "display_name_qualifiers=";
StringVector strs = Options.getOptions().getDisplayQualifierNames();
for(int i=0; i<strs.size(); i++)
str = str.concat(" "+strs.get(i));
line = addEscapeChars(str);
save_display_name = false;
}
if(line.startsWith("systematic_name_qualifiers") && save_systematic_names)
{
String str = "systematic_name_qualifiers=";
StringVector strs = Options.getOptions().getSystematicQualifierNames();
for(int i=0; i<strs.size(); i++)
str = str.concat(" "+strs.get(i));
line = addEscapeChars(str);
save_systematic_names = false;
}
bufferedwriter.write(line);
bufferedwriter.newLine();
}
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
if(save_wd_properties)
{
bufferedwriter.write(
addEscapeChars("artemis.user.dir="+System.getProperty("user.dir")));
bufferedwriter.newLine();
}
if(save_display_name)
{
String str = "display_name_qualifiers=";
StringVector strs = Options.getOptions().getDisplayQualifierNames();
for(int i=0; i<strs.size(); i++)
str = str.concat(" "+strs.get(i));
bufferedwriter.write(addEscapeChars(str));
bufferedwriter.newLine();
}
if(save_systematic_names)
{
String str = "systematic_name_qualifiers=";
StringVector strs = Options.getOptions().getSystematicQualifierNames();
for(int i=0; i<strs.size(); i++)
str = str.concat(" "+strs.get(i));
bufferedwriter.write(addEscapeChars(str));
bufferedwriter.newLine();
}
bufferedreader.close();
bufferedwriter.close();
file_txt.delete();
file_tmp.renameTo(file_txt);
}
{
BufferedWriter bufferedwriter = new BufferedWriter(new FileWriter(file_txt));
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
if(save_wd_properties)
{
bufferedwriter.write(
addEscapeChars("artemis.user.dir="+System.getProperty("user.dir")));
bufferedwriter.newLine();
}
if(save_display_name)
{
String str = "display_name_qualifiers=";
StringVector strs = Options.getOptions().getDisplayQualifierNames();
for(int i=0; i<strs.size(); i++)
str = str.concat(" "+strs.get(i));
bufferedwriter.write(addEscapeChars(str));
bufferedwriter.newLine();
}
if(save_systematic_names)
{
String str = "systematic_name_qualifiers=";
StringVector strs = Options.getOptions().getSystematicQualifierNames();
for(int i=0; i<strs.size(); i++)
str = str.concat(" "+strs.get(i));
bufferedwriter.write(addEscapeChars(str));
bufferedwriter.newLine();
}
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
bufferedwriter.close();
}
}
catch (FileNotFoundException filenotfoundexception)
{
System.err.println("jemboss.properties read error");
}
catch (IOException e)
{
System.err.println("jemboss.properties i/o error");
}
}
/**
*
* Add in escape chars (for windows) to the backslash chars
* @param l string to insert escape characters to
*
*/
private static String addEscapeChars(String l)
{
int n = l.indexOf("\\");
while( n > -1)
{
l = l.substring(0,n)+"\\"+l.substring(n,l.length());
n = l.indexOf("\\",n+2);
}
return l;
}
/**
*
* Construct menu for genetic code tables.
*
*/
protected void makeGeneticCodeMenu(final JMenu options_menu)
StringVector v_genetic_codes = Options.getOptions().getOptionValues("genetic_codes");
String gcodes[] = (String[])v_genetic_codes.toArray(new String[v_genetic_codes.size()]);
// get the default
StringVector gcode_default = Options.getOptions().getOptionValues("genetic_code_default");
// determine default genetic code table
int default_code = 0;
if(gcode_default != null)
{
if(defS.length() < 3)
{
try
{
int num = Integer.parseInt(defS);
if(num > 0 && num <= gcodes.length)
default_code = num-1;
else
System.err.println(defS+" is not a valid number");
}
catch(NumberFormatException nfe)
{
System.err.println(defS+" is not a valid number");
}
}
}
if(gcodes[i].equals("-"))
continue;
int ind1;
while((ind1 = gcodes[i].indexOf("_")) > -1)
gcodes[i] = gcodes[i].substring(0,ind1) + " " +
gcodes[i].substring(ind1+1,gcodes[i].length());
String num = Integer.toString(i+1);
final String gc_name = num+". "+gcodes[i];
final JCheckBoxMenuItem geneCode = new JCheckBoxMenuItem(gc_name);
gcodeGroup.add(geneCode);
geneCode.setActionCommand(num);
geneCode.addItemListener(new ItemListener()
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
public void itemStateChanged(ItemEvent event)
{
if(geneCode.getState())
{
geneticCode = gc_name;
String tab = "translation_table_"+geneCode.getActionCommand();
String startCodons = "start_codons_"+geneCode.getActionCommand();
StringVector options_file_table =
Options.getOptions().getOptionValues(tab);
if(options_file_table != null)
{
if(options_file_table.size() == 64)
{
StringBuffer sbuff = new StringBuffer();
for(int i = 0; i < 64; ++i)
sbuff.append(options_file_table.elementAt(i)+" ");
Options.getOptions().setGeneticCode(sbuff.toString());
}
else
{
StringVector table = Options.getOptions().getOptionValues("translation_table_1");
for(int i = 0; i < options_file_table.size(); ++i)
{
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
// System.out.println(cod_plus_aa);
final int codon_index = Bases.getIndexOfBase(cod_plus_aa.charAt(0)) * 16 +
Bases.getIndexOfBase(cod_plus_aa.charAt(1)) * 4 +
Bases.getIndexOfBase(cod_plus_aa.charAt(2));
// System.out.println(cod_plus_aa.substring(3)+" "+codon_index+" "+
// table.elementAt(codon_index));
table.setElementAt(cod_plus_aa.substring(3), codon_index);
}
StringBuffer sbuff = new StringBuffer();
for(int i = 0; i < 64; ++i)
sbuff.append(table.elementAt(i)+" ");
Options.getOptions().setGeneticCode(sbuff.toString());
}
options_file_table =
Options.getOptions().getOptionValues(startCodons);
if(options_file_table != null)
{
StringBuffer sbuff = new StringBuffer();
for(int i = 0; i < options_file_table.size(); ++i)
sbuff.append(options_file_table.elementAt(i)+" ");
Options.getOptions().setProperty("start_codons",sbuff.toString());
}
}
AminoAcidSequence.setGeneCode();