Skip to content

Commit

Permalink
Add documentation comment referencing the MSGF Results Summarizer
Browse files Browse the repository at this point in the history
  • Loading branch information
alchemistmatt committed Feb 21, 2024
1 parent fc498b9 commit 62dd8e2
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CreateMSGFPlusResultsFileFromPHRP/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -378,7 +378,7 @@ private static void ShowProgramHelp()
Console.WriteLine("E-mail: [email protected] or [email protected]");
Console.WriteLine("Website: https://github.com/PNNL-Comp-Mass-Spec/ or https://panomics.pnnl.gov/ or https://www.pnnl.gov/integrative-omics");

// Delay for 750 msec in case the user double clicked this file from within Windows Explorer (or started the program via a shortcut)
// Delay for 750 msec in case the user double-clicked this file from within Windows Explorer (or started the program via a shortcut)
Thread.Sleep(750);
}
catch (Exception ex)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -312,6 +312,11 @@ public abstract class ToolResultsBaseClass
/// <para>
/// From column Q.Value for DIA-NN
/// </para>
/// <para>
/// The MSGF Results Summarizer filters on QValue when computing PSM stats, which are stored in the database using procedure store_job_psm_stats
/// Stats are displayed on the Analysis Job Detail Report page, for example:
/// Spectra Searched: 23949, Total PSMs: 12317, Unique Peptides: 10439, Unique Proteins: 2247 (FDR &lt; 1.00%)
/// </para>
/// </remarks>
public double QValue;
}
Expand Down
2 changes: 1 addition & 1 deletion Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ public static int Main(string[] args)
return 0;
}

// Delay for 750 msec in case the user double clicked this file from within Windows Explorer (or started the program via a shortcut)
// Delay for 750 msec in case the user double-clicked this file from within Windows Explorer (or started the program via a shortcut)
Thread.Sleep(750);

return -1;
Expand Down

0 comments on commit 62dd8e2

Please sign in to comment.