diff --git a/Docs/ChangeLog.md b/Docs/ChangeLog.md
index d33e688..a565514 100644
--- a/Docs/ChangeLog.md
+++ b/Docs/ChangeLog.md
@@ -1,3 +1,14 @@
+# Version: 1.116.1
+## Date: 2024-10-28
+### Changes:
+- Fix: Fixed the bug of when plot the heatmap of taxa-funcs with t-ststistic and f-statistic, the value still selected as p-value.
+- Change: Updated the cookbook.
+
+# Version: 1.116.0
+## Date: 2024-10-18
+### Changes:
+- New: 1. Added Advanced Parameters for Peptide Annotator 2. Add [Fill Zero] method for handling missing values in the data preprossing part.
+
# Version: 1.115.5
## Date: 2024-10-16
### Changes:
diff --git a/Docs/MetaX_Cookbook.md b/Docs/MetaX_Cookbook.md
index 1808fe0..9f7b81d 100644
--- a/Docs/MetaX_Cookbook.md
+++ b/Docs/MetaX_Cookbook.md
@@ -13,7 +13,7 @@ MetaX also features statistical modules and plotting tools for ana
# Project Page
-Visit **Github** to get more information:
+Visit **GitHub** to get more information:
[https://github.com/byemaxx/MetaX](https://github.com/byemaxx/MetaX)
@@ -35,144 +35,17 @@ Visit **Github** to get more information:
-# Preparing Your Data
-
-## Module 1. Database Builder
-
-**Note:** The results from **MetaLab v2.3** MaxQuant workflow do not require database building. However, we do not recommend using these results as input to MetaX, as many peptides may be discarded.
-
-- Build the database for the **first time** using the Database Builder.
-
- **Option 1: Build Database Using MGnify Data**
-
- Ensure you download the correct database type corresponding to your data.
-
- ![dbbuilder](./MetaX_Cookbook.assets/dbbuilder.png)
-
- **Option 2: Build Database Using Own Data**
-
- 1. **Annotation Table:** A TSV table (tab-separated), with the first column as protein name joined with Genome by "_", e.g., "Genome1_protein1", and other columns containing annotation information.
-
- ![dbbuilder_own](./MetaX_Cookbook.assets/dbbuilder_own.png)
-
- 2. **Taxa Table:** A TSV table (tab-separated), with the first column as Genome name, e.g., "Genome1", and the second column as taxa.
-
- **Example Annotation Table:**
-
- | Query | Preferred_name | EC | KEGG_ko |
- | ------------------- | -------------- | ----------------- | ------------------- |
- | MGYG000000001_00696 | mfd | - | ko:K03723 |
- | MGYG000000001_02838 | hxlR | - | - |
- | MGYG000000001_01674 | ispG | 1.17.7.1,1.17.7.3 | ko:K03526 |
- | MGYG000000001_02710 | glsA | 3.5.1.2 | ko:K01425 |
- | MGYG000000001_01356 | mutS2 | - | ko:K07456 |
- | MGYG000000001_02630 | - | - | - |
- | MGYG000000001_02418 | ackA | 2.7.2.1 | ko:K00925 |
- | MGYG000000001_00728 | atpA | 3.6.3.14 | ko:K02111 |
- | MGYG000000001_00695 | pth | 3.1.1.29 | ko:K01056 |
- | MGYG000000001_02907 | - | - | ko:K03086 |
- | MGYG000000001_02592 | rplC | - | ko:K02906 |
- | MGYG000000001_00137 | - | - | ko:K03480,ko:K03488 |
-
- **Example Taxa Table:**
-
- | Genome | Lineage |
- | ------------- | ------------------------------------------------------------ |
- | MGYG000000001 | d_Bacteria;p_Firmicutes_A;c_Clostridia;o_Peptostreptococcales;f_Peptostreptococcaceae;g_GCA-900066495;s_GCA-900066495 sp902362365 |
- | MGYG000000002 | d_Bacteria;p_Firmicutes_A;c_Clostridia;o_Lachnospirales;f_Lachnospiraceae;g_Blautia_A;s_Blautia_A faecis |
- | MGYG000000003 | d_Bacteria;p_Bacteroidota;c_Bacteroidia;o_Bacteroidales;f_Rikenellaceae;g_Alistipes;s_Alistipes shahii |
- | MGYG000000004 | d_Bacteria;p_Firmicutes_A;c_Clostridia;o_Oscillospirales;f_Ruminococcaceae;g_Anaerotruncus;s_Anaerotruncus colihominis |
- | MGYG000000005 | d_Bacteria;p_Firmicutes_A;c_Clostridia;o_Peptostreptococcales;f_Peptostreptococcaceae;g_Terrisporobacter;s_Terrisporobacter glycolicus_A |
- | MGYG000000006 | d_Bacteria;p_Firmicutes;c_Bacilli;o_Staphylococcales;f_Staphylococcaceae;g_Staphylococcus;s_Staphylococcus xylosus |
- | MGYG000000007 | d_Bacteria;p_Firmicutes;c_Bacilli;o_Lactobacillales;f_Lactobacillaceae;g_Lactobacillus;s_Lactobacillus intestinalis |
- | MGYG000000008 | d_Bacteria;p_Firmicutes;c_Bacilli;o_Lactobacillales;f_Lactobacillaceae;g_Lactobacillus;s_Lactobacillus johnsonii |
- | MGYG000000009 | d_Bacteria;p_Firmicutes;c_Bacilli;o_Lactobacillales;f_Lactobacillaceae;g_Ligilactobacillus;s_Ligilactobacillus murinus |
-
-## Module 2. Database Updater
-
-The **Database Updater** allows updating the database built by the **Database Builder** or adding more annotations. This step is **optional**.
-
-- Update the built database and extend annotations.
-
- ![db_updater](./MetaX_Cookbook.assets/db_updater.png)
-
- **Option 1: Built-in Mode**
-
- We recommend some extended databases, such as [dbCAN_seq](https://bcb.unl.edu/dbCAN_seq).
-
- **Option 2: TSV Table**
-
- Extend the database by adding a new database to the database table. Ensure the column separator is a tab and the first column is the Protein name, with other columns containing function annotations.
-
- **Example:**
-
- | Protein ID | COG | KEGG | ... |
- | ------------------- | ---------- | ---------- | ---- |
- | MGYG000000001_02630 | Function 1 | Function 1 | ... |
- | MGYG000000001_01475 | Function 2 | Function 1 | ... |
- | MGYG000000001_01539 | Function 3 | Function 1 | ... |
-
-## Module 3. Peptide Annotator
-
-### 1. Results from MAG Workflow
-
-The peptide results use Metagenome-assembled genomes (MAGs) as the reference database for protein searches, e.g., MetaLab-MAG, MetaLab-DIA and other workflows wich using MAG databases like MGnify or customized MAGs Database.
-
-- Annotate the peptide to Operational Taxa-Functions (OTF) Table before analysis using the Peptide Annotator.
-
- ![peptide2taxafunc](./MetaX_Cookbook.assets/peptide2taxafunc.png)
-
- **Required:**
-
- - **Database**: The database created by Database Builder
-
- - **Peptide Table**:
-
- - *Option 1*: From MetaLab-MAG results (final_peptides.tsv)
-
- - *Option 2*: Create it manually, with the first column as the ID (e.g., peptide sequence) and the second column as the proteins ID of MGnify (e.g., MGYG000003683_00301; MGYG000001490_01143) or your database, and other columns as the intensity of each sample.
-
- **Example:**
-
- | Sequence | Proteins | Intensity_V1_01 | Intensity_V1_02 | Intensity_V1_03 | Intensity_V1_04 |
- | ----------------------------------- | ------------------------------------------------------------ | --------------- | --------------- | --------------- | --------------- |
- | (Acetyl)KGGVEPQSETVWR | MGYG000002716_01681;MGYG000000195_00452;MGYG000001616_00519;MGYG000002258_01582;MGYG000001300_00281;MGYG000002926_00231;... | 714650 | 0 | 0 | 0 |
- | (Acetyl)KVIPELNGK | MGYG000003589_01892;MGYG000001560_01812;MGYG000001789_00244;... | 0 | 0 | 0 | 0 |
- | (Acetyl)LAELGAKAVTLSGPDGYIYDPDGITTK | MGYG000001199_02893 | 0 | 0 | 0 | 0 |
- | (Acetyl)LLTGLPDAYGR | MGYG000001757_01206;MGYG000004547_02135;MGYG000001283_00124;MGYG000004758_00803;MGYG000002486_00845;MGYG000000271_01269 | 0 | 307519 | 0 | 0 |
- | (Acetyl)MDFTLDKK | MGYG000000076_01275;MGYG000003694_00879;MGYG000000312_02425;MGYG000000271_02102;MGYG000004271_00233;MGYG000002517_00542;MGYG000000489_01025 | 306231 | 0 | 0 | 1214497 |
-
- - **Output Save Path**: The location to save the result table.
-
- - **LCA Threshold**: Find the LCA with the proportion threshold for each peptide. The default is 1.00 (100%).
-
- ![LCA_prop](./MetaX_Cookbook.assets/LCA_prop.png)
-
-### 2. Results from MaxQuant Workflow
-
-The peptide results from **MetaLab 2.3** MaxQuant workflow.
-
-- Select the **MetaLab** result folder, which contains the **maxquant_search** folder.
-
- ![peptide2taxafunc_tab2_1](MetaX_Cookbook.assets/peptide2taxafunc_tab2_1.png)
-
-- The **Peptide Annotator** will automatically find the **peptides_report.txt**, **BuiltIn.pepTaxa.csv**, and **functions.tsv** in the **maxquant_search** folder. Alternatively, you can select the files manually.
-
- - Select **OTFs Save To** to set the location to save the result table.
-
- ![peptide2taxafunc_tab2_2](MetaX_Cookbook.assets/peptide2taxafunc_tab2_2.png)
-
-
-
# Exploring Data with MetaX
-## Module 4. OTF Analyzer
+See the **[Preparing Your Data](#Preparing-Your-Data)** section to build the database and annotate peptides to OTFs before starting.
+
+## Module 1. OTF Analyzer
-After obtaining the **Operational Taxa-Functions (OTF) Table** using the **Peptide Annotator**, you can perform downstream analysis with the **OTF Analyzer**.
+After obtaining the **Operational Taxa-Functions (OTF) Table** using the **[Peptide Annotator](##Module-4.-Peptide-Annotator)**, you can perform downstream analysis with the **OTF Analyzer**.
## 1. Data Preparation
-**OTFs (Operational Taxa-Functions) Table:** Obtained from the Peptide Annotator module.
+**OTFs (Operational Taxa-Functions) Table:** Obtained from the [Peptide Annotator](##Module-4.-Peptide-Annotator) module.
**Meta Table:** The first column is sample names, and the other columns represent different groups. If no meta table is provided, meta info will be generated automatically: (1) all samples are in the same group; (2) each sample is a separate group.
@@ -784,6 +657,137 @@ We can select **meta** **groups** or **samples** (default a
+# Preparing Your Data
+
+## Module 2. Database Builder
+
+**Note:** The results from **MetaLab v2.3** MaxQuant workflow do not require database building. However, we do not recommend using these results as input to MetaX, as many peptides may be discarded.
+
+- Build the database for the **first time** using the Database Builder.
+
+ **Option 1: Build Database Using MGnify Data**
+
+ Ensure you download the correct database type corresponding to your data.
+
+ ![dbbuilder](./MetaX_Cookbook.assets/dbbuilder.png)
+
+ **Option 2: Build Database Using Own Data**
+
+ 1. **Annotation Table:** A TSV table (tab-separated), with the first column as protein name joined with Genome by "_", e.g., "Genome1_protein1", and other columns containing annotation information.
+
+ ![dbbuilder_own](./MetaX_Cookbook.assets/dbbuilder_own.png)
+
+ 2. **Taxa Table:** A TSV table (tab-separated), with the first column as Genome name, e.g., "Genome1", and the second column as taxa.
+
+ **Example Annotation Table:**
+
+ | Query | Preferred_name | EC | KEGG_ko |
+ | ------------------- | -------------- | ----------------- | ------------------- |
+ | MGYG000000001_00696 | mfd | - | ko:K03723 |
+ | MGYG000000001_02838 | hxlR | - | - |
+ | MGYG000000001_01674 | ispG | 1.17.7.1,1.17.7.3 | ko:K03526 |
+ | MGYG000000001_02710 | glsA | 3.5.1.2 | ko:K01425 |
+ | MGYG000000001_01356 | mutS2 | - | ko:K07456 |
+ | MGYG000000001_02630 | - | - | - |
+ | MGYG000000001_02418 | ackA | 2.7.2.1 | ko:K00925 |
+ | MGYG000000001_00728 | atpA | 3.6.3.14 | ko:K02111 |
+ | MGYG000000001_00695 | pth | 3.1.1.29 | ko:K01056 |
+ | MGYG000000001_02907 | - | - | ko:K03086 |
+ | MGYG000000001_02592 | rplC | - | ko:K02906 |
+ | MGYG000000001_00137 | - | - | ko:K03480,ko:K03488 |
+
+ **Example Taxa Table:**
+
+ | Genome | Lineage |
+ | ------------- | ------------------------------------------------------------ |
+ | MGYG000000001 | d_Bacteria;p_Firmicutes_A;c_Clostridia;o_Peptostreptococcales;f_Peptostreptococcaceae;g_GCA-900066495;s_GCA-900066495 sp902362365 |
+ | MGYG000000002 | d_Bacteria;p_Firmicutes_A;c_Clostridia;o_Lachnospirales;f_Lachnospiraceae;g_Blautia_A;s_Blautia_A faecis |
+ | MGYG000000003 | d_Bacteria;p_Bacteroidota;c_Bacteroidia;o_Bacteroidales;f_Rikenellaceae;g_Alistipes;s_Alistipes shahii |
+ | MGYG000000004 | d_Bacteria;p_Firmicutes_A;c_Clostridia;o_Oscillospirales;f_Ruminococcaceae;g_Anaerotruncus;s_Anaerotruncus colihominis |
+ | MGYG000000005 | d_Bacteria;p_Firmicutes_A;c_Clostridia;o_Peptostreptococcales;f_Peptostreptococcaceae;g_Terrisporobacter;s_Terrisporobacter glycolicus_A |
+ | MGYG000000006 | d_Bacteria;p_Firmicutes;c_Bacilli;o_Staphylococcales;f_Staphylococcaceae;g_Staphylococcus;s_Staphylococcus xylosus |
+ | MGYG000000007 | d_Bacteria;p_Firmicutes;c_Bacilli;o_Lactobacillales;f_Lactobacillaceae;g_Lactobacillus;s_Lactobacillus intestinalis |
+ | MGYG000000008 | d_Bacteria;p_Firmicutes;c_Bacilli;o_Lactobacillales;f_Lactobacillaceae;g_Lactobacillus;s_Lactobacillus johnsonii |
+ | MGYG000000009 | d_Bacteria;p_Firmicutes;c_Bacilli;o_Lactobacillales;f_Lactobacillaceae;g_Ligilactobacillus;s_Ligilactobacillus murinus |
+
+## Module 3. Database Updater
+
+The **Database Updater** allows updating the database built by the **Database Builder** or adding more annotations. This step is **optional**.
+
+- Update the built database and extend annotations.
+
+ ![db_updater](./MetaX_Cookbook.assets/db_updater.png)
+
+ **Option 1: Built-in Mode**
+
+ We recommend some extended databases, such as [dbCAN_seq](https://bcb.unl.edu/dbCAN_seq).
+
+ **Option 2: TSV Table**
+
+ Extend the database by adding a new database to the database table. Ensure the column separator is a tab and the first column is the Protein name, with other columns containing function annotations.
+
+ **Example:**
+
+ | Protein ID | COG | KEGG | ... |
+ | ------------------- | ---------- | ---------- | ---- |
+ | MGYG000000001_02630 | Function 1 | Function 1 | ... |
+ | MGYG000000001_01475 | Function 2 | Function 1 | ... |
+ | MGYG000000001_01539 | Function 3 | Function 1 | ... |
+
+## Module 4. Peptide Annotator
+
+### 1. Results from MAG Workflow
+
+The peptide results use Metagenome-assembled genomes (MAGs) as the reference database for protein searches, e.g., MetaLab-MAG, MetaLab-DIA and other workflows wich using MAG databases like MGnify or customized MAGs Database.
+
+- Annotate the peptide to the Operational Taxa-Functions (OTF) Table before analysis using the Peptide Annotator.
+
+ ![peptide2taxafunc](./MetaX_Cookbook.assets/peptide2taxafunc.png)
+
+ **Required:**
+
+ - **Database**: The database created by [Database Builder](##Module-2.-Database-Builder)
+
+ - **Peptide Table**:
+
+ - *Option 1*: From MetaLab-MAG results (final_peptides.tsv)
+
+ - *Option 2*: Create it manually, with the first column as the ID (e.g., peptide sequence) and the second column as the proteins ID of MGnify (e.g., MGYG000003683_00301; MGYG000001490_01143) or your database, and other columns as the intensity of each sample.
+
+ **Example:**
+
+ | Sequence | Proteins | Intensity_V1_01 | Intensity_V1_02 | Intensity_V1_03 | Intensity_V1_04 |
+ | ----------------------------------- | ------------------------------------------------------------ | --------------- | --------------- | --------------- | --------------- |
+ | (Acetyl)KGGVEPQSETVWR | MGYG000002716_01681;MGYG000000195_00452;MGYG000001616_00519;MGYG000002258_01582;MGYG000001300_00281;MGYG000002926_00231;... | 714650 | 0 | 0 | 0 |
+ | (Acetyl)KVIPELNGK | MGYG000003589_01892;MGYG000001560_01812;MGYG000001789_00244;... | 0 | 0 | 0 | 0 |
+ | (Acetyl)LAELGAKAVTLSGPDGYIYDPDGITTK | MGYG000001199_02893 | 0 | 0 | 0 | 0 |
+ | (Acetyl)LLTGLPDAYGR | MGYG000001757_01206;MGYG000004547_02135;MGYG000001283_00124;MGYG000004758_00803;MGYG000002486_00845;MGYG000000271_01269 | 0 | 307519 | 0 | 0 |
+ | (Acetyl)MDFTLDKK | MGYG000000076_01275;MGYG000003694_00879;MGYG000000312_02425;MGYG000000271_02102;MGYG000004271_00233;MGYG000002517_00542;MGYG000000489_01025 | 306231 | 0 | 0 | 1214497 |
+
+ - **Output Save Path**: The location to save the result table.
+
+ - **LCA Threshold**: Find the LCA with the proportion threshold for each peptide. The default is 1.00 (100%).
+
+ ![LCA_prop](./MetaX_Cookbook.assets/LCA_prop.png)
+
+### 2. Results from MaxQuant Workflow
+
+The peptide results from **MetaLab 2.3** MaxQuant workflow.
+
+- Select the **MetaLab** result folder, which contains the **maxquant_search** folder.
+
+ ![peptide2taxafunc_tab2_1](MetaX_Cookbook.assets/peptide2taxafunc_tab2_1.png)
+
+- The **Peptide Annotator** will automatically find the **peptides_report.txt**, **BuiltIn.pepTaxa.csv**, and **functions.tsv** in the **maxquant_search** folder. Alternatively, you can select the files manually.
+
+ - Select **OTFs Save To** to set the location to save the result table.
+
+ ![peptide2taxafunc_tab2_2](MetaX_Cookbook.assets/peptide2taxafunc_tab2_2.png)
+
+
+
+
+
# Developer Tools
diff --git a/metax/gui/main_gui.py b/metax/gui/main_gui.py
index 7230595..5feea8c 100644
--- a/metax/gui/main_gui.py
+++ b/metax/gui/main_gui.py
@@ -796,7 +796,8 @@ def hide_plot_setting_groupbox(self):
groupbox_list = ["groupBox_basic_plot", "groupBox_basic_heatmap_plot_settings",
"groupBox_cross_heatmap_settings", "groupBox_deseq2_plot_settings",
"groupBox_co_expression_plot_settings", "groupBox_expression_trends_plot_settings",
- "groupBox_taxa_func_link_plot_settings", "groupBox_taxa_func_link_net_plot_settings"
+ "groupBox_taxa_func_link_plot_settings", "groupBox_taxa_func_link_net_plot_settings",
+ "groupBox_peptide_annotator_settings"
]
for groupbox_name in groupbox_list:
groupbox = getattr(self, groupbox_name)
@@ -2049,6 +2050,14 @@ def run_peptide2taxafunc(self):
final_peptide_path = f'''{self.lineEdit_final_peptide_path.text()}'''
peptide2taxafunc_outpath = f'''{self.lineEdit_peptide2taxafunc_outpath.text()}'''
threshold = float(self.doubleSpinBox_LCA_threshold.value())
+ genome_mode = self.checkBox_annotator_genome_mode.isChecked()
+ protein_separator = self.lineEdit_annotator_protein_separator.text()
+ protein_genome_separator = self.lineEdit_annotator_genome_separator.text()
+ peptide_col = self.lineEdit_annotator_peptide_col_name.text()
+ protein_col = self.lineEdit_annotator_protein_col_name.text()
+ sample_col_prefix = self.lineEdit_annotator_sample_col_prefix.text()
+ distinct_genome_threshold = self.spinBox_annotator_distinct_num_threshold.value()
+ exclude_protein_contains = self.lineEdit_annotator_exclude_protein_contains.text()
if db_path == '':
QMessageBox.warning(self.MainWindow, 'Warning', 'Please select database!')
@@ -2065,6 +2074,15 @@ def peptide2taxafunc_main_wrapper():
peptide_path = final_peptide_path,
output_path = peptide2taxafunc_outpath,
threshold=threshold,
+ genome_mode=genome_mode,
+ protein_separator=protein_separator,
+ protein_genome_separator=protein_genome_separator,
+ protein_col=protein_col,
+ peptide_col=peptide_col,
+ sample_col_prefix=sample_col_prefix,
+ distinct_genome_threshold=distinct_genome_threshold,
+ exclude_protein_contains = exclude_protein_contains
+
)
return instance.run_annotate()
self.run_in_new_window(peptide2taxafunc_main_wrapper, show_msg=True)
diff --git a/metax/gui/metax_gui/main_window.ui b/metax/gui/metax_gui/main_window.ui
index d780368..81c7523 100644
--- a/metax/gui/metax_gui/main_window.ui
+++ b/metax/gui/metax_gui/main_window.ui
@@ -245,8 +245,8 @@
0
0
- 391
- 80
+ 528
+ 534
@@ -726,6 +726,11 @@
multiple
+ -
+
+ FillZero
+
+
@@ -907,6 +912,11 @@
regression
+ -
+
+ FillZero
+
+
@@ -2779,7 +2789,7 @@
0
0
- 999
+ 621
150
@@ -7457,8 +7467,8 @@
0
0
- 620
- 65
+ 1016
+ 105
@@ -9278,8 +9288,8 @@
0
0
- 383
- 68
+ 1016
+ 141
@@ -9502,16 +9512,13 @@
-
- 1
+ 0
MAG
-
-
-
-
-
@@ -9519,34 +9526,174 @@
+ -
+
+
+ Open
+
+
+
+ -
+
+
+ ?
+
+
+
-
- -
-
+
-
+
- Database
+ ?
- -
-
+
-
+
- LCA Threshold
+ GO
- -
-
-
- Open
+
-
+
+
+ Annotating Settings
+
+
-
+
+
-
+
+
+ Proteins
+
+
+
+ -
+
+
+ Peptide Column Name
+
+
+
+ -
+
+
+ Protein Separator
+
+
+
+ -
+
+
+ Genome Separator in Protein ID
+
+
+
+ -
+
+
+ Proteins Group Column Name
+
+
+
+ -
+
+
+ Sequence
+
+
+
+ -
+
+
+ The separator between proteins in protein groups, e.g. ";" in MGYG000003683_00301;MGYG000000756_01431;MGYG000001490_01143
+
+
+ ;
+
+
+
+ -
+
+
+ The separator in protein ID to split the genome ID. e.g. "_" in MGYG000003683_00301
+
+
+ _
+
+
+
+ -
+
+
+ Prefix of Intensity Column
+
+
+
+ -
+
+
+ e.g. "Intensity" in Intensity_V2_05, Intensity_V2_06
+
+
+ Intensity
+
+
+
+ -
+
+
+ Filter Genome with Distinct peptide Number
+
+
+
+ -
+
+
+ 9999
+
+
+
+ -
+
+
+ Staring LCA level from Genome
+
+
+ true
+
+
+
+ -
+
+
+ Exclude Protein with
+
+
+
+ -
+
+
+ Remove the peptides which annoate to exclude proteins
+
+
+ REV_
+
+
+
+
+
+
- -
-
+
-
+
- ?
+ LCA Threshold
@@ -9557,17 +9704,17 @@
- -
-
+
-
+
- Open
+ Database
- -
-
+
-
+
- ?
+ Open
@@ -9597,6 +9744,9 @@
+ -
+
+
-
@@ -9604,10 +9754,10 @@
- -
-
+
-
+
- GO
+ Show Advanced Settings
@@ -9635,8 +9785,8 @@
0
0
- 313
- 41
+ 1044
+ 493
@@ -10273,7 +10423,7 @@
0
0
1122
- 23
+ 21