private JIntEdit txtScore, txtOverlap;
public AlignTab() {
super(new GridLayout(9,1));
txtThresholds = new JTextField(Parameter.blast_run_thresholds);
txtOverlap = new JIntEdit(Parameter.blast_filter_overlap);
txtScore = new JIntEdit(Parameter.blast_filter_score);
selector1 = new JComboBox(BlastExecutor.MATRICES);
txtThresholds.setToolTipText(UICaption.tooltip_label_run_blast_thresholds);
selector1.setSelectedItem(Parameter.blast_run_matrix);
JPanel panel1 = new JPanel(new GridLayout(1,2));
JPanel panel2 = new JPanel(new GridLayout(1,2));