Skip to content
Snippets Groups Projects
Commit 8a764407 authored by Olivier Langella's avatar Olivier Langella
Browse files

Maximal replaced by Maximum

parent f6aa5fd5
No related branches found
No related tags found
No related merge requests found
......@@ -113,10 +113,10 @@ public class OdsInformationOutput {
odsTable.writeCell("Mode");
odsTable.writeCell(datatype.getType());
odsTable.writeLine();
odsTable.writeCell("Maximale peptide Evalue");
odsTable.writeCell("Maximum peptide Evalue");
odsTable.writeCell(datatype.getConf().get_peptide_evalue());
odsTable.writeLine();
odsTable.writeCell("Maximale protein Evalue");
odsTable.writeCell("Maximum protein Evalue");
odsTable.writeCell(datatype.getConf().get_protein_evalue());
odsTable.writeLine();
odsTable.writeCell("Minimum number of peptides per protein");
......
......@@ -95,7 +95,7 @@ public class Filter_Windows {
pep_evalue = new Text(filter, SWT.SINGLE);
pep_evalue.setLayoutData(new GridData(GridData.FILL_HORIZONTAL));
Label l = new Label(filter, SWT.NONE);
l.setText("Maximal peptide Evalue");
l.setText("Maximum peptide Evalue");
pep_number = new Text(filter, SWT.SINGLE);
pep_number.setLayoutData(new GridData(GridData.FILL_HORIZONTAL));
......@@ -105,7 +105,7 @@ public class Filter_Windows {
prot_evalue = new Text(filter, SWT.SINGLE);
prot_evalue.setLayoutData(new GridData(GridData.FILL_HORIZONTAL));
l = new Label(filter, SWT.NONE);
l.setText("Maximal protein log(E value) to conserve a protein");
l.setText("Maximum protein log(E value) to conserve a protein");
Label separator = new Label(filter, SWT.SEPARATOR | SWT.HORIZONTAL);
GridData data = new GridData(GridData.FILL_HORIZONTAL);
......@@ -117,12 +117,12 @@ public class Filter_Windows {
filter_to_all.setEnabled(!type.getIs_invididual());
l = new Label(filter, SWT.NONE);
l.setText("Apply protein filter to all samples together");
Group mascotEvalue = new Group(shell, SWT.SHADOW_IN);
mascotEvalue.setText("Mascot Evalue calculation");
mascotEvalue.setLayoutData(new GridData(GridData.FILL_HORIZONTAL));
mascotEvalue.setLayout(new GridLayout(1, false));
theoriticalButton = new Button(mascotEvalue, SWT.RADIO);
theoriticalButton.setText("Theoretical (The ion score threshold is the same for all spectra)");
theoriticalButton.setSelection(conf.get_mascot_evalue_theoritical());
......@@ -175,7 +175,7 @@ public class Filter_Windows {
prot_evalue.setText(("" + conf.get_protein_evalue()));
pep_evalue.setText(("" + conf.get_peptide_evalue()));
pep_number.setText(("" + conf.get_peptide_number()));
filter_to_all.setSelection(conf.get_protein_filter_to_complete());
filter_to_all.setSelection(conf.get_protein_filter_to_complete());
}
private void modified_conf() throws MSMSException {
......@@ -205,7 +205,7 @@ public class Filter_Windows {
conf.set_protein_filter_to_complete(true);
else
conf.set_protein_filter_to_complete(false);
conf.set_mascot_evalue_theoritical(theoriticalButton.getSelection());
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment