Skip to content

Commit 4465df8

Browse files
Alexander-Solclaudetrishorts
authored
Remove SpectralRecovery/MbrAnalysis feature (#2605)
* Remove SpectralRecovery/MbrAnalysis feature This removes the unused SpectralRecovery feature which had failing tests. Deleted: - TaskLayer/MbrAnalysis folder (SpectralRecoveryPSM, SpectralRecoveryResults, SpectralRecoveryRunner) - EngineLayer/ClassicSearch/MiniClassicSearchEngine.cs - Test/SpectralRecoveryTest.cs and test data Removed DoSpectralRecovery parameter and related UI from SearchTaskWindow, MainWindow settings, GuiGlobalParams, and UpdateGUISettings. Co-Authored-By: Claude Opus 4.5 <[email protected]> * Remove SpectralRecovery/MbrAnalysis feature This removes the unused SpectralRecovery feature which had failing tests. Deleted: - TaskLayer/MbrAnalysis folder (SpectralRecoveryPSM, SpectralRecoveryResults, SpectralRecoveryRunner) - EngineLayer/ClassicSearch/MiniClassicSearchEngine.cs - Test/SpectralRecoveryTest.cs and test data Removed DoSpectralRecovery parameter and related UI from SearchTaskWindow, MainWindow settings, GuiGlobalParams, and UpdateGUISettings. Co-Authored-By: Claude Opus 4.5 <[email protected]> --------- Co-authored-by: Claude Opus 4.5 <[email protected]> Co-authored-by: trishorts <[email protected]>
1 parent e7a072c commit 4465df8

31 files changed

+29
-43963
lines changed

MetaMorpheus/EngineLayer/ClassicSearch/MiniClassicSearchEngine.cs

Lines changed: 0 additions & 220 deletions
This file was deleted.

MetaMorpheus/EngineLayer/Util/ScanWithIndexAndNotchInfo.cs

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,4 @@ internal class ScanWithIndexAndNotchInfo(int notch, int scanIndex)
55
public readonly int Notch = notch;
66
public readonly int ScanIndex = scanIndex;
77
}
8-
9-
/// <summary>
10-
/// For use in MiniClassicSearchEngine
11-
/// </summary>
12-
/// <param name="scan"></param>
13-
/// <param name="notch"></param>
14-
/// <param name="scanIndex"></param>
15-
internal class ExtendedScanWithIndexAndNotchInfo(Ms2ScanWithSpecificMass scan, int notch, int scanIndex) : ScanWithIndexAndNotchInfo(notch, scanIndex)
16-
{
17-
public readonly Ms2ScanWithSpecificMass TheScan = scan;
18-
}
198
}

MetaMorpheus/GUI/MainWindow.xaml

Lines changed: 7 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1001,20 +1001,15 @@
10011001
<CheckBox Grid.Row="5" Grid.Column="1" Content="Ask" IsChecked="{Binding AskAboutArgCParams, Mode=TwoWay}" VerticalAlignment="Center"/>
10021002
<CheckBox Grid.Row="5" Grid.Column="2" Content="Use" IsChecked="{Binding UseArgCParams, Mode=TwoWay}" VerticalAlignment="Center"/>
10031003

1004-
<TextBlock Grid.Row="6" Grid.Column="0" Text="Spectral Recovery Recommendations"
1005-
VerticalAlignment="Center" Style="{StaticResource TextBlockStyle}"/>
1006-
<CheckBox Grid.Row="6" Grid.Column="1" Content="Ask" IsChecked="{Binding AskAboutSpectralRecoveryParams, Mode=TwoWay}" VerticalAlignment="Center"/>
1007-
<CheckBox Grid.Row="6" Grid.Column="2" Content="Use" IsChecked="{Binding UseSpectralRecoveryParams, Mode=TwoWay}" VerticalAlignment="Center"/>
1008-
1009-
<TextBlock Grid.Row="7" Grid.Column="0" Text="Overwrite Output Directory"
1004+
<TextBlock Grid.Row="6" Grid.Column="0" Text="Overwrite Output Directory"
10101005
VerticalAlignment="Center" Style="{StaticResource TextBlockStyle}"/>
1011-
<CheckBox Grid.Row="7" Grid.Column="1" Content="Ask" IsChecked="{Binding AskAboutOverwritingOutputDirectory, Mode=TwoWay}" VerticalAlignment="Center"/>
1012-
<CheckBox Grid.Row="7" Grid.Column="2" Content="Overwrite" IsChecked="{Binding OverwriteOutputDirectory, Mode=TwoWay}" VerticalAlignment="Center"/>
1013-
1014-
<TextBlock Grid.Row="8" Grid.Column="0" Text="Protein/RNA Mode Switching Prompt"
1006+
<CheckBox Grid.Row="6" Grid.Column="1" Content="Ask" IsChecked="{Binding AskAboutOverwritingOutputDirectory, Mode=TwoWay}" VerticalAlignment="Center"/>
1007+
<CheckBox Grid.Row="6" Grid.Column="2" Content="Overwrite" IsChecked="{Binding OverwriteOutputDirectory, Mode=TwoWay}" VerticalAlignment="Center"/>
1008+
1009+
<TextBlock Grid.Row="7" Grid.Column="0" Text="Protein/RNA Mode Switching Prompt"
10151010
VerticalAlignment="Center" Style="{StaticResource TextBlockStyle}"/>
1016-
<CheckBox Grid.Row="8" Grid.Column="1" Content="Ask" IsChecked="{Binding AskAboutModeSwitch, Mode=TwoWay}" VerticalAlignment="Center"/>
1017-
<ComboBox Grid.Row="8" Grid.Column="2" VerticalAlignment="Center" Width="154" HorizontalAlignment="Left"
1011+
<CheckBox Grid.Row="7" Grid.Column="1" Content="Ask" IsChecked="{Binding AskAboutModeSwitch, Mode=TwoWay}" VerticalAlignment="Center"/>
1012+
<ComboBox Grid.Row="7" Grid.Column="2" VerticalAlignment="Center" Width="154" HorizontalAlignment="Left"
10181013
ItemsSource="{Binding AllModeSwitchValues}"
10191014
SelectedItem="{Binding CachedModeSwitchResult, Mode=TwoWay}" />
10201015
</Grid>

0 commit comments

Comments
 (0)