|
6 | 6 | xmlns:local="clr-namespace:MetaMorpheusGUI"
|
7 | 7 | mc:Ignorable="d"
|
8 | 8 | Drop="Window_Drop" AllowDrop="true" Background="{StaticResource BackgroundColor}" WindowStartupLocation="CenterScreen" MinHeight="400"
|
9 |
| - MinWidth="800" Height="550" Width="950" |
| 9 | + MinWidth="800" Height="550" Width="1000" |
10 | 10 | Loaded="MyWindow_Loaded">
|
11 | 11 |
|
12 | 12 | <Window.Resources>
|
|
122 | 122 | <!--Defines the context menu when "add task" button is clicked-->
|
123 | 123 | <ContextMenu x:Key="AddTaskMenu" Style="{StaticResource ContextMenuStyle}">
|
124 | 124 | <MenuItem Header="Add new calibration task" Click="AddCalibrateTaskButton_Click" />
|
| 125 | + <MenuItem Header="Add new averaging task" Click="AddAveragingTaskButton_OnClick" /> |
125 | 126 | <MenuItem Header="Add new GPTMD task" Click="AddGPTMDTaskButton_Click" />
|
126 | 127 | <MenuItem Header="Add new search task" Click="AddSearchTaskButton_Click" />
|
127 | 128 | <MenuItem Header="Add new crosslink task" Click="AddCrosslinkTask_Click" />
|
|
298 | 299 |
|
299 | 300 | task performs mass calibration;
|
300 | 301 |
|
| 302 | + <!-- TODO: Change link to averaging paper once published --> |
301 | 303 | <LineBreak />
|
| 304 | + |
| 305 | + ● The |
| 306 | + |
| 307 | + <Hyperlink NavigateUri="https://github.com/smith-chem-wisc/MetaMorpheus/wiki/Averaging-Task" RequestNavigate="Hyperlink_RequestNavigate"> |
| 308 | + averaging |
| 309 | + </Hyperlink> |
302 | 310 |
|
303 |
| - ● the |
| 311 | + task averages spectra to refine isotopic distributions |
| 312 | + |
| 313 | + <LineBreak /> |
| 314 | + |
| 315 | + ● The |
304 | 316 | <Hyperlink NavigateUri="https://pubs.acs.org/doi/10.1021/acs.jproteome.6b00034" RequestNavigate="Hyperlink_RequestNavigate">
|
305 | 317 | GPTMD
|
306 | 318 | </Hyperlink>
|
|
309 | 321 |
|
310 | 322 | <LineBreak />
|
311 | 323 |
|
312 |
| - ● the search task performs a proteomics database search, with |
| 324 | + ● The search task performs a proteomics database search, with |
313 | 325 |
|
314 | 326 | <Hyperlink NavigateUri="https://pubs.acs.org/doi/10.1021/acs.jproteome.7b00608" RequestNavigate="Hyperlink_RequestNavigate">
|
315 | 327 | quantification
|
|
328 | 340 |
|
329 | 341 | <LineBreak />
|
330 | 342 |
|
331 |
| - ● the |
| 343 | + ● The |
332 | 344 |
|
333 | 345 | <Hyperlink NavigateUri="https://pubs.acs.org/doi/10.1021/acs.jproteome.8b00141" RequestNavigate="Hyperlink_RequestNavigate">
|
334 | 346 | XL search
|
|
338 | 350 |
|
339 | 351 | <LineBreak />
|
340 | 352 |
|
341 |
| - ● the |
| 353 | + ● The |
342 | 354 |
|
343 | 355 | <Hyperlink NavigateUri="https://www.biorxiv.org/content/10.1101/2020.05.18.102327v1.abstract" RequestNavigate="Hyperlink_RequestNavigate">
|
344 | 356 | glycopeptide
|
|
501 | 513 | <!--Button to add tasks-->
|
502 | 514 | <Grid Grid.Row="2" Background="{StaticResource BackgroundColor}" Margin="0,0,10,0" HorizontalAlignment="Right">
|
503 | 515 | <Grid.ColumnDefinitions>
|
504 |
| - <ColumnDefinition Width="150"/> |
505 |
| - <ColumnDefinition Width="150"/> |
506 |
| - <ColumnDefinition Width="150"/> |
507 |
| - <ColumnDefinition Width="150"/> |
508 |
| - <ColumnDefinition Width="150"/> |
| 516 | + <ColumnDefinition Width="140"/> |
| 517 | + <ColumnDefinition Width="140"/> |
| 518 | + <ColumnDefinition Width="140"/> |
| 519 | + <ColumnDefinition Width="140"/> |
| 520 | + <ColumnDefinition Width="140"/> |
| 521 | + <ColumnDefinition Width="140"/> |
509 | 522 | </Grid.ColumnDefinitions>
|
510 | 523 |
|
511 | 524 | <Button Name="AddCalibTaskButton" Grid.Column="0" Content="+ADD CALIBRATION" HorizontalAlignment="Right" Click="AddCalibrateTaskButton_Click"
|
512 |
| - Style="{StaticResource ImportantButtonStyle}" Margin="0,0,1,0" Width="150"/> |
513 |
| - <Button Name="AddGptmdTaskButton" Grid.Column="1" Content="+ADD PTM DISCOVERY" HorizontalAlignment="Right" Click="AddGPTMDTaskButton_Click" |
514 |
| - Style="{StaticResource ImportantButtonStyle}" Margin="0,0,1,0" Width="150"/> |
515 |
| - <Button Name="AddSearchTaskButton" Grid.Column="2" Content="+ADD SEARCH" HorizontalAlignment="Right" Click="AddSearchTaskButton_Click" |
516 |
| - Style="{StaticResource ImportantButtonStyle}" Margin="0,0,1,0" Width="150"/> |
517 |
| - <Button Name="AddXlTaskButton" Grid.Column="3" Content="+ADD XL SEARCH" HorizontalAlignment="Right" Click="AddCrosslinkTask_Click" |
518 |
| - Style="{StaticResource ImportantButtonStyle}" Margin="0,0,1,0" Width="150"/> |
519 |
| - <Button Name="AddGlycoTaskButton" Grid.Column="4" Content="+ADD GLYCO SEARCH" HorizontalAlignment="Right" Click="AddGlycoSearchTask_Click" |
520 |
| - Style="{StaticResource ImportantButtonStyle}" Margin="0,0,0,0" Width="150"/> |
| 525 | + Style="{StaticResource ImportantButtonStyle}" Margin="0,0,1,0" Width="140"/> |
| 526 | + <Button Name="AddAveragingTaskButton" Grid.Column="1" Content="+AVERAGE SPECTRA" HorizontalAlignment="Right" Click="AddAveragingTaskButton_OnClick" |
| 527 | + Style="{StaticResource ImportantButtonStyle}" Margin="0, 0, 1, 0" Width="140" FontSize="11" /> |
| 528 | + <Button Name="AddGptmdTaskButton" Grid.Column="2" Content="+ADD PTM DISCOVERY" HorizontalAlignment="Right" Click="AddGPTMDTaskButton_Click" |
| 529 | + Style="{StaticResource ImportantButtonStyle}" Margin="0,0,1,0" Width="140"/> |
| 530 | + <Button Name="AddSearchTaskButton" Grid.Column="3" Content="+ADD SEARCH" HorizontalAlignment="Right" Click="AddSearchTaskButton_Click" |
| 531 | + Style="{StaticResource ImportantButtonStyle}" Margin="0,0,1,0" Width="140"/> |
| 532 | + <Button Name="AddXlTaskButton" Grid.Column="4" Content="+ADD XL SEARCH" HorizontalAlignment="Right" Click="AddCrosslinkTask_Click" |
| 533 | + Style="{StaticResource ImportantButtonStyle}" Margin="0,0,1,0" Width="140"/> |
| 534 | + <Button Name="AddGlycoTaskButton" Grid.Column="5" Content="+ADD GLYCO SEARCH" HorizontalAlignment="Right" Click="AddGlycoSearchTask_Click" |
| 535 | + Style="{StaticResource ImportantButtonStyle}" Margin="0,0,0,0" Width="140"/> |
521 | 536 | </Grid>
|
522 | 537 |
|
523 | 538 | <!--List of tasks-->
|
|
0 commit comments