Skip to content

Commit

Permalink
Change three glycan-related modules to be disabled by default.
Browse files Browse the repository at this point in the history
If there are no entries in the workflow file to disable them, they will always be enabled.
  • Loading branch information
fcyu committed Jan 18, 2024
1 parent 0899fb6 commit cb80ec8
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ private JPanel createpanelGlycanAssignment() {
pGlycoAssignContent = mu.newPanel(null, mu.lcFillXNoInsetsTopBottom());
pGlycoAdvParams = mu.newPanel(null, mu.lcFillXNoInsetsTopBottom());

checkRunGlycanAssignment = UiUtils.createUiCheck("Assign Glycans with FDR", true);
checkRunGlycanAssignment = UiUtils.createUiCheck("Assign Glycans with FDR", false);
checkRunGlycanAssignment.setName(PROP_run_glyco_mode);
checkRunGlycanAssignment.setToolTipText("NOTE: requires PTM-Shepherd! Check the 'Run PTM-Shepherd' box on the PTMs tab to enable this section. Perform glycan assignment and glycan FDR on PSMs reported with a delta mass");
uiCheckGlycoAdvParams = UiUtils.createUiCheck("Edit Advanced Parameters", false);
Expand Down Expand Up @@ -246,11 +246,11 @@ private JPanel createpanelGlycanAssignment() {
.tooltip("By default, the best target glycan is printed to the PSM table for PSMs assigned to a decoy glycan (with q-value = 1)\n" +
"Check this box to instead print the decoy glycan (identified by 'Decoy_[glycan name])")
.create();
FormEntry feRemoveGlycoDeltaMass = mu.feb(PROP_remove_glyco_deltamass, UiUtils.createUiCheck("Remove Glycan Delta Mass", true))
FormEntry feRemoveGlycoDeltaMass = mu.feb(PROP_remove_glyco_deltamass, UiUtils.createUiCheck("Remove Glycan Delta Mass", false))
.tooltip("Removes glycan mass from Delta Mass column in PSM table, even for PSMs that do not pass glycan FDR.\n" +
"Required for processing by IonQuant and for PSM table integrity, but prevents re-analysis by PTM-Shepherd.")
.create();
FormEntry feNGlycanMode = mu.feb(PROP_nglyco_mode, UiUtils.createUiCheck("N-Glycan Mode", true))
FormEntry feNGlycanMode = mu.feb(PROP_nglyco_mode, UiUtils.createUiCheck("N-Glycan Mode", false))
.tooltip("Sets localization to N-X-S/T sequon if enabled and uses default N-glycan database if custom glycan database is not provided\n. " +
"If disabled, localization settings are taken from 'Restrict localization to' parameter above\n" +
"and O-glycan default database used.")
Expand Down

0 comments on commit cb80ec8

Please sign in to comment.