Skip to content

Commit

Permalink
Revert "quick fix file loading done (#2064)" (#2078)
Browse files Browse the repository at this point in the history
This reverts commit 2600c70.
  • Loading branch information
rmmiller22 authored Jun 29, 2021
1 parent fc72929 commit 0ebf374
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 0 additions & 2 deletions TaskLayer/GlycoSearchTask/GlycoSearchTask.cs
Original file line number Diff line number Diff line change
Expand Up @@ -99,8 +99,6 @@ protected override MyTaskResults RunSpecific(string OutputFolder, List<DbForTask
Status("Getting ms2 scans...", thisId);

Ms2ScanWithSpecificMass[] arrayOfMs2ScansSortedByMass = GetMs2Scans(myMsDataFile, origDataFile, combinedParams).OrderBy(b => b.PrecursorMass).ToArray();
myFileManager.DoneWithFile(origDataFile);

List<GlycoSpectralMatch>[] newCsmsPerMS2ScanPerFile = new List<GlycoSpectralMatch>[arrayOfMs2ScansSortedByMass.Length];

for (int currentPartition = 0; currentPartition < CommonParameters.TotalPartitions; currentPartition++)
Expand Down
2 changes: 1 addition & 1 deletion TaskLayer/XLSearchTask/XLSearchTask.cs
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ protected override MyTaskResults RunSpecific(string OutputFolder, List<DbForTask
Status("Getting ms2 scans...", thisId);

Ms2ScanWithSpecificMass[] arrayOfMs2ScansSortedByMass = GetMs2Scans(myMsDataFile, origDataFile, combinedParams).OrderBy(b => b.PrecursorMass).ToArray();
myFileManager.DoneWithFile(origDataFile);

List<CrosslinkSpectralMatch>[] newCsmsPerMS2ScanPerFile = new List<CrosslinkSpectralMatch>[arrayOfMs2ScansSortedByMass.Length];
for (int currentPartition = 0; currentPartition < CommonParameters.TotalPartitions; currentPartition++)
{
Expand Down

0 comments on commit 0ebf374

Please sign in to comment.