Hi! Im runnin an amplicon sequences analysis (V3-V4 region) for a single sample. For making barplots, I ran qiime taxa barplot. Of course without filtering anything the result wasnt something visually acceptable, so i decided to use "filter-features" command with "--p-min-frecuency". I ve tried different values (50,70,100) to get a good looking graph, thinking it would be the same result for the majority groups. However, majority groups changed their order of importance.
In other words, this pipeline:
qiime taxa barplot
--i-table ./table-no-unassigned.qza \ #This is the feature table without mithocondria, chloroplast and unassigned related features
--i-taxonomy ./taxonomy.qza
--m-metadata-file ./metadata.tsv
--o-visualization ./barplots/taxa_barplot_no-unassigned.qzv
qiime tools view ./barplots/taxa_barplot_no-unassigned.qzv
Gives me Methanosaeta, Smithella, Bacteroidetes_vadinHA17 and uncultured as major genus.
On the other hand, when I try this:
qiime feature-table filter-features
--i-table table-no-archaea-unassigned.qza
--p-min-frequency 50
--o-filtered-table feature-frequency50-bacteria-table.qza
qiime taxa barplot
--i-table ./feature-frequency50-bacteria-table.qza
--i-taxonomy ./taxonomy.qza
--m-metadata-file ./metadata.tsv
--o-visualization ./barplots/taxa_barplot_feature_frecuency50_bacteria.qzv
qiime tools view ./barplots/taxa_barplot_feature_frecuency50_bacteria.qzv
Gives me Methanosaeta*,Smithella*, Leptolinea and Methanoregula as major genus.
Different --p-min-frequency arguments result in different order of importance of the taxonomic groups. How I can handle with this? I expected that "filtering" option did not modify (at least) majority groups, but rather eliminate the minority groups. I really don´t get it. Can you help me?