This notebook demonstrates how to evaluate classification accuracy of "novel taxa". Due to the unique nature of this analysis, the metrics that we use to evaluate classification accuracy of "novel taxa" are different from those used for mock and simulated communities.
The key measure here is rate of match
vs. overclassification
, hence P/R/F are not useful metrics. Instead, we define and measure the following as percentages:
Where L
= taxonomic level being tested
In [1]:
from tax_credit.framework_functions import novel_taxa_classification_evaluation
from tax_credit.eval_framework import parameter_comparisons
from tax_credit.plotting_functions import (pointplot_from_data_frame,
heatmap_from_data_frame,
per_level_kruskal_wallis,
rank_optimized_method_performance_by_dataset)
import seaborn.xkcd_rgb as colors
from os.path import expandvars, join, exists
from glob import glob
from IPython.display import display, Markdown
import pandas as pd
In [7]:
project_dir = expandvars("../../")
analysis_name = "novel-taxa-simulations"
precomputed_results_dir = join(project_dir, "data", "precomputed-results", analysis_name)
expected_results_dir = join(project_dir, "data", analysis_name)
summary_fp = join(precomputed_results_dir, 'evaluate_classification_summary.csv')
results_dirs = glob(join(precomputed_results_dir, '*', '*', '*', '*'))
# we can save plots in this directory
outdir = expandvars("../../plots/")
This cell performs the classification evaluation and should not be modified.
In [3]:
force = True
if force or not exists(summary_fp):
accuracy_results = novel_taxa_classification_evaluation(results_dirs, expected_results_dir, summary_fp)
else:
accuracy_results = pd.DataFrame.from_csv(summary_fp)
Finally, we plot our results. Line plots show the mean +/- 95% confidence interval for each classification result at each taxonomic level (1 = phylum, 6 = species) in each dataset tested. Do not modify the cell below, except to adjust the color_palette used for plotting. This palette can be a dictionary of colors for each group, as shown below, or a seaborn color palette.
Precision = Proportion of classifications that were correct. For novel taxa, this means a match at the last common ancestor (LCA) (level-1). True Positives / (True Positives + False Positives)
Recall = Proportion of reads that were correctly classified. Equals the number of exact matches to the LCA. True Positives / (True Positives + False Negatives)
F-measure = Harmonic mean of Precision and Recall
overclassification_ratio = proportion of taxa that were assigned to correct lineage but to a deeper taxonomic level than expected, rather than to LCA. E.g., assignment to another species in the clade
underclassification_ratio = proportion of assignments to correct lineage but to a lower level than expected.
misclassification_ratio = proportion of assignments to an incorrect lineage.
In [4]:
color_palette={
'expected': 'black', 'rdp': colors['baby shit green'], 'sortmerna': colors['macaroni and cheese'],
'uclust': 'coral', 'blast': 'indigo', 'blast+': colors['electric purple'], 'naive-bayes': 'dodgerblue',
'naive-bayes-bespoke': 'blue', 'vsearch': 'firebrick'
}
y_vars = ["Precision", "Recall", "F-measure",
"overclassification_ratio",
"underclassification_ratio", "misclassification_ratio"]
For novel-taxa analysis, a separate classification is performed at each taxonomic level using different test (unique taxa at level L) and training sets (ref - test taxonomies). Hence, results at each level L represent independent tests, unlike for mock and simulated communities where each level represents the accuracy of each species-level classification trimmed to level L. For novel taxa, results at level L indicate the accuracy with with method M assigns the correct lineage to a "novel" taxon, which is unrepresented in the reference at level L, e.g., level 6 indicates the performance with which each classifier assigns the correct genus to each species.
In [5]:
point = pointplot_from_data_frame(accuracy_results, "level", y_vars,
group_by="Dataset", color_by="Method",
color_palette=color_palette)
In [8]:
for k, v in point.items():
v.savefig(join(outdir, 'novel-{0}-lineplots.pdf'.format(k)))
In [9]:
result = per_level_kruskal_wallis(accuracy_results, y_vars, group_by='Method',
dataset_col='Dataset', alpha=0.05,
pval_correction='fdr_bh')
result
Out[9]:
In [10]:
heatmap_from_data_frame(accuracy_results, metric="Precision", rows=["Method", "Parameters"], cols=["Dataset", "level"])
Out[10]:
In [11]:
heatmap_from_data_frame(accuracy_results, metric="Recall", rows=["Method", "Parameters"], cols=["Dataset", "level"])
Out[11]:
In [12]:
heatmap_from_data_frame(accuracy_results, metric="F-measure", rows=["Method", "Parameters"], cols=["Dataset", "level"])
Out[12]:
In [13]:
heatmap_from_data_frame(accuracy_results, metric="overclassification_ratio", rows=["Method", "Parameters"], cols=["Dataset", "level"])
Out[13]:
In [14]:
heatmap_from_data_frame(accuracy_results, metric="underclassification_ratio", rows=["Method", "Parameters"], cols=["Dataset", "level"])
Out[14]:
In [15]:
heatmap_from_data_frame(accuracy_results, metric="misclassification_ratio", rows=["Method", "Parameters"], cols=["Dataset", "level"])
Out[15]:
Rank parameters for each method to determine the best parameter configuration within each method. Count best values in each column indicate how many samples a given method achieved within one mean absolute deviation of the best result (which is why they may sum to more than the total number of samples).
In [16]:
for method in accuracy_results['Method'].unique():
top_params = parameter_comparisons(accuracy_results[accuracy_results["level"] == 6],
method, metrics=["Precision", "Recall",
"overclassification_ratio",
"underclassification_ratio",
"misclassification_ratio",
"F-measure"],
ascending={"Precision": False, "Recall": False,
"overclassification_ratio": True,
"underclassification_ratio": True,
"misclassification_ratio": True,
"F-measure": False},
sample_col='Dataset', method_col='Method',
dataset_col='Dataset')
display(Markdown('## {0}'.format(method)))
display(top_params[:5])
Now we rank the top-performing method/parameter combination for each method at species level. Methods are ranked by top F-measure, and the average value for each metric is shown (rather than count best as above). F-measure distributions are plotted for each method, and compared using paired t-tests with FDR-corrected P-values. This cell does not need to be altered, unless if you wish to change the metric used for sorting best methods and for plotting.
In [17]:
boxes = rank_optimized_method_performance_by_dataset(accuracy_results, dataset="Dataset",
metric="F-measure",
level="level",
level_range=range(6,7),
display_fields=["Method",
"Parameters",
"Precision",
"Recall",
"F-measure",
"overclassification_ratio",
"underclassification_ratio",
"misclassification_ratio"],
paired=True,
parametric=True,
color=None,
color_palette=color_palette)
In [18]:
for k, v in boxes.items():
v.get_figure().savefig(join(outdir, 'novel-{0}-boxplots.pdf'.format(k)))
In [ ]: