Skip to content

Commit

Permalink
added xi:score to the list of selectable scores
Browse files Browse the repository at this point in the history
  • Loading branch information
Lutz Fischer committed Mar 31, 2015
1 parent bedecdb commit 435e1a2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
7 changes: 4 additions & 3 deletions src/main/java/org/rappsilber/fdr/gui/FDRGUI.form
Original file line number Diff line number Diff line change
Expand Up @@ -294,12 +294,13 @@
<Properties>
<Property name="editable" type="boolean" value="true"/>
<Property name="model" type="javax.swing.ComboBoxModel" editor="org.netbeans.modules.form.editors2.ComboBoxModelEditor">
<StringArray count="5">
<StringArray count="6">
<StringItem index="0" value="Score"/>
<StringItem index="1" value="pvalue"/>
<StringItem index="2" value="FDRScore"/>
<StringItem index="3" value="MS:1001143"/>
<StringItem index="4" value="search engine specific score for PSMs"/>
<StringItem index="3" value="xi:score"/>
<StringItem index="4" value="MS:1001143"/>
<StringItem index="5" value="search engine specific score for PSMs"/>
</StringArray>
</Property>
</Properties>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/rappsilber/fdr/gui/FDRGUI.java
Original file line number Diff line number Diff line change
Expand Up @@ -2269,7 +2269,7 @@ public void actionPerformed(java.awt.event.ActionEvent evt) {
});

cbMZMatchScoreName.setEditable(true);
cbMZMatchScoreName.setModel(new javax.swing.DefaultComboBoxModel(new String[] { "Score", "pvalue", "FDRScore", "MS:1001143", "search engine specific score for PSMs" }));
cbMZMatchScoreName.setModel(new javax.swing.DefaultComboBoxModel(new String[] { "Score", "pvalue", "FDRScore", "xi:score", "MS:1001143", "search engine specific score for PSMs" }));
cbMZMatchScoreName.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
cbMZMatchScoreNameActionPerformed(evt);
Expand Down

0 comments on commit 435e1a2

Please sign in to comment.