Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[WIP] filter psms for flashlfq only by qvalue and qvalue notch #2259

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 2 additions & 12 deletions TaskLayer/SearchTask/PostSearchAnalysisTask.cs
Original file line number Diff line number Diff line change
Expand Up @@ -254,21 +254,11 @@ private void QuantificationAnalysis()
}

// get PSMs to pass to FlashLFQ
List<PeptideSpectralMatch> unambiguousPsmsBelowOnePercentFdr = new();
if (Parameters.AllPsms.Count > 100)//PEP is not computed when there are fewer than 100 psms
{
unambiguousPsmsBelowOnePercentFdr = Parameters.AllPsms.Where(p =>
p.FdrInfo.PEP_QValue <= 0.01
&& !p.IsDecoy
&& p.FullSequence != null).ToList(); //if ambiguous, there's no full sequence
}
else
{
unambiguousPsmsBelowOnePercentFdr = Parameters.AllPsms.Where(p =>
List<PeptideSpectralMatch> unambiguousPsmsBelowOnePercentFdr = Parameters.AllPsms.Where(p =>
p.FdrInfo.QValue <= 0.01
&& p.FdrInfo.QValueNotch <= 0.01
&& !p.IsDecoy
&& p.FullSequence != null).ToList(); //if ambiguous, there's no full sequence
}

// pass protein group info for each PSM
var psmToProteinGroups = new Dictionary<PeptideSpectralMatch, List<FlashLFQ.ProteinGroup>>();
Expand Down