summarize_taxa.py -a
will output actual abundances rather than relative abundances. That
should get you want you want. I recommend using summarize_taxa.py here
instead of summarize_taxa_through_plots.py as you need relative
abundances for the plots.
Greg
In the development version of QIIME the convert_biom.py script will
change your summary table to a valid OTU table in biom format using
this command:
convert_biom.py -i cat_otu_table_L4.txt -o cat_otu_table_L4.biom
--biom_table_type "taxon table"
Now beware that you will not be able to do phylogenetic alpha or beta
analysis on this table because the current methods rely on the names
on the tip of the tree and not in clades (basically what you are doing
when you summarize or split the otu table in taxonomic levels) so the
suggestion is to use only non phylogenetic metrics for this kind of
analyses. By the way, I have added a feature request in QIIME:
https://sourceforge.net/tracker/?func=detail&aid=3510927&group_id=272178&atid=1157167
Cheers
--
Antonio González Peña
Research Assistant, Knight Lab
University of Colorado at Boulder
https://chem.colorado.edu/knightgroup/
I was thinking in non phylogenetic methods in alpha, for example Chao1
or observed species vs. PD, or beta, in example Bray Curtis vs.
UniFrac, analyses.
Now when you use unifrac in beta_diversity.py you are assessing the
community differences between samples using the phylogenetic tree
(which OTUs/lineages contribute to the difference based on the tree),
step 6 of the tutorial http://bmf2.colorado.edu/unifrac/tutorial.psp ;
when you use beta_significance.py you are testing whether the pattern
you are seeing is significant or not using unifrac, step 7. In the current
implementations you need to pass the full OTU table and the full tree,
not summarized.
Hope this helps.
That one is otu_category_significance.py
Cheers.