Skip to content

Commit fffd174

Browse files
committed
removed 2D from backend
1 parent 34198e6 commit fffd174

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

MetaMorpheus/TaskLayer/SearchTask/PostSearchAnalysisTask.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1024,7 +1024,7 @@ private void WritePrunedDatabase()
10241024
var proteinToConfidentBaseSequences = GetProteinToConfidentBaseSequences(Parameters.AllPsms);
10251025

10261026
// find all biopolymers that have at least one confident PSM and their confident localized modifications -> Used for determining which mods to retain
1027-
var proteinToConfidentModifiedSequences = GetProteinToConfidentModifiedSequences(Parameters.AllPsms, Parameters.SearchParameters.EvidenceRequiredToWriteLocalizedMod, Parameters.SearchParameters.IncludeProteinAmbiguous);
1027+
var proteinToConfidentModifiedSequences = GetProteinToConfidentModifiedSequences(Parameters.AllPsms, Parameters.SearchParameters.EvidenceRequiredToWriteLocalizedMod);
10281028

10291029
if (proteinToConfidentBaseSequences.Count == 0) return;
10301030

@@ -1073,7 +1073,7 @@ private Dictionary<IBioPolymer, List<IBioPolymerWithSetMods>> GetProteinToConfid
10731073
/// <param name="allPsms">List of all PSMs.</param>
10741074
/// <param name="evidenceRequired"></param>
10751075
/// <returns>A dictionary where the peptideModIndex is a protein and the value is all confidently identified species from that protein with an unambiguous modified sequences.</returns>
1076-
public Dictionary<IBioPolymer, List<IBioPolymerWithSetMods>> GetProteinToConfidentModifiedSequences(List<SpectralMatch> allPsms, uint evidenceRequired = 1, bool includeProteinAmbiguous = false)
1076+
public Dictionary<IBioPolymer, List<IBioPolymerWithSetMods>> GetProteinToConfidentModifiedSequences(List<SpectralMatch> allPsms, uint evidenceRequired = 1)
10771077
{
10781078
// set up and filter spectral matches
10791079
var fileSpecificParametersDictionary = FileSpecificParameters.ToDictionary(p => p.FileName, p => p.Parameters);

0 commit comments

Comments
 (0)