Skip to content

Commit

Permalink
Add a tooltip to explain different RT alignment options.
Browse files Browse the repository at this point in the history
  • Loading branch information
fcyu committed Sep 29, 2023
1 parent 9737388 commit bb0d811
Showing 1 changed file with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,13 @@ private JPanel createPanelEasypqp() {

uiComboPqpCal = UiUtils.createUiCombo(pqpCal);
FormEntry fePqpCal = new FormEntry("easypqp.rt-cal",
"RT calibration", uiComboPqpCal);
"RT calibration", uiComboPqpCal, SwingUtils.makeHtml(
"<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"
+ "<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"
+ "For unfractionated data, <b>Automatic selection of a run as reference RT</b> is recommended.\n"
+ "When building the library from fractionated data, there may be not enough overlapped peptides for the alignment. Should consider using the other options.\n"
+ "<b>ciRT</b> is overall the safest option for human samples.\n"
+ "Users can also provide their own iRT peptides by using the <b>User provided RT calibration file</b> option.\n"));
final String optionIMManual = "User provided IM calibration file";
uiComboPqpIMCal = UiUtils.createUiCombo(Arrays.asList("Automatic selection of a run as reference IM", optionIMManual));
FormEntry fePqpIMCal = new FormEntry("easypqp.im-cal",
Expand Down

0 comments on commit bb0d811

Please sign in to comment.