Skip to content

Commit b5cfd5c

Browse files
committed
Add a tooltip to explain different RT alignment options.
Suggested by #1099 (comment)
1 parent 9737388 commit b5cfd5c

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

MSFragger-GUI/src/com/dmtavt/fragpipe/tools/speclibgen/SpeclibPanel.java

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,13 @@ private JPanel createPanelEasypqp() {
158158

159159
uiComboPqpCal = UiUtils.createUiCombo(pqpCal);
160160
FormEntry fePqpCal = new FormEntry("easypqp.rt-cal",
161-
"RT calibration", uiComboPqpCal);
161+
"RT calibration", uiComboPqpCal, SwingUtils.makeHtml(
162+
"<b>Automatic selection of a run as reference RT</b> selects the run with the most identified peptides as a reference. Overlapped peptides are used for the alignment\n"
163+
+ "<b>Biognosys_iRT</b>, <b>ciRT</b>, and <b>Pierce_iRT</b> uses the peptides from the Biognosys iRT kit, common human peptides, and Pierce iRT kit to perform the alignment.\n"
164+
+ "For unfractionated data, <b>Automatic selection of a run as reference RT</b> is recommended.\n"
165+
+ "When building the library from fractionated data, there may be not enough overlapped peptides for the alignment. Should consider using the other options.\n"
166+
+ "<b>ciRT</b> is overall the safest option for human samples.\n"
167+
+ "Users can also provide their own iRT peptides by using the <b>User provided RT calibration file</b> option.\n"));
162168
final String optionIMManual = "User provided IM calibration file";
163169
uiComboPqpIMCal = UiUtils.createUiCombo(Arrays.asList("Automatic selection of a run as reference IM", optionIMManual));
164170
FormEntry fePqpIMCal = new FormEntry("easypqp.im-cal",

0 commit comments

Comments
 (0)