Skip to content

Commit

Permalink
Pass dissociation type not autodetect to diss type collection (#2343)
Browse files Browse the repository at this point in the history
* reverted filtering method for psms passed to FlashLFQ

* yo

---------

Co-authored-by: Alex <AlexSolivais@gmail.com>
Co-authored-by: MICHAEL SHORTREED <mrshortreed@wisc.edu>
Co-authored-by: Alexander-Sol <41119316+Alexander-Sol@users.noreply.github.com>
  • Loading branch information
4 people authored Feb 16, 2024
1 parent 57cb82d commit 8d10e39
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion MetaMorpheus/TaskLayer/SearchTask/SearchTask.cs
Original file line number Diff line number Diff line change
Expand Up @@ -508,7 +508,7 @@ public static void MatchInternalFragmentIons(PeptideSpectralMatch[] fileSpecific
foreach (PeptideWithSetModifications peptide in ambiguousPeptides)
{
internalFragments.Clear();
peptide.FragmentInternally(combinedParams.DissociationType, minInternalFragmentLength, internalFragments);
peptide.FragmentInternally(dissociationType, minInternalFragmentLength, internalFragments);
//TODO: currently, internal and terminal ions can match to the same observed peaks (much like how b- and y-ions can match to the same peaks). Investigate if we should change that...
matchedIonsForAllAmbiguousPeptides.Add(MetaMorpheusEngine.MatchFragmentIons(scanForThisPsm, internalFragments, combinedParams));
}
Expand Down

0 comments on commit 8d10e39

Please sign in to comment.