sampledoc
News and Announcements »

summarize_taxa.py – Summarize Taxa

Description:

The summarize_taxa.py script provides summary information of the representation of taxonomic groups within each sample. It takes an OTU table that contains taxonomic information as input. The taxonomic level for which the summary information is provided is designated with the -L option. The meaning of this level will depend on the format of the taxon strings that are returned from the taxonomy assignment step. The taxonomy strings that are most useful are those that standardize the taxonomic level with the depth in the taxonomic strings. For instance, for the RDP classifier taxonomy, Level 2 = Domain (e.g. Bacteria), 3 = Phylum (e.g. Firmicutes), 4 = Class (e.g. Clostridia), 5 = Order (e.g. Clostridiales), 6 = Family (e.g. Clostridiaceae), and 7 = Genus (e.g. Clostridium). By default, the relative abundance of each taxonomic group will be reported, but the raw counts can be returned if -a is passed.

Usage: summarize_taxa.py [options]

Input Arguments:

Note

[REQUIRED]

-i, --otu_table_fp
Input OTU table filepath [REQUIRED]

[OPTIONAL]

-L, --level
Taxonomic level to summarize by. [default: 2,3,4,5,6]
-m, --mapping
Input metadata mapping filepath. If supplied, then the taxon information will be added to this file. This option is useful for coloring PCoA plots by taxon abundance or to perform statistical tests of taxon/mapping associations.
-d, --delimiter
Delimitor separating taxonomy levels. [default: ;]
-r, --relative_abundance
DEPRECATED: please use -a/–absolute_abundance to disable relative abundance [default: ]
-a, --absolute_abundance
If present, the absolute abundance of the lineage in each sample is reported. By default, this script uses relative abundance [default: False]
-l, --lower_percentage
If present, OTUs having higher absolute abundance are trimmed. To remove OTUs that make up more than 5% of the total dataset you would pass 0.05. [default: None]
-u, --upper_percentage
If present, OTUs having lower absolute abundance are trimmed. To remove the OTUs that makes up less than 45% of the total dataset you would pass 0.45. [default: None]
-t, --transposed_output
If present, the output will be written transposed from the regular output. This is helpful in cases when you want to use Site Painter to visualize your data [default: False]
-o, --output_dir
Path to the output directory

Output:

There are two possible output formats depending on whether or not a mapping file is provided with the -m option. If a mapping file is not provided, a table is returned where the taxonomic groups are each in a row and there is a column for each sample. If a mapping file is provided, the summary information will be appended to this file. Specifically, a new column will be made for each taxonomic group to which the relative abundances or raw counts will be added to the existing rows for each sample. The addition of the taxonomic information to the mapping file allows for taxonomic coloration of Principal coordinates plots in the 3d viewer. As described in the make_3d_plots.py section, principal coordinates plots can be dynamically colored based on any of the metadata columns in the mapping file. Dynamic coloration of the plots by the relative abundances of each taxonomic group can help to distinguish which taxonomic groups are driving the clustering patterns.

Examples:

The following command can be used to summarize taxa based on the Class, where the default parameters are used (no mapping file, delimiter for RDP (“-d ;”) and output relative abundance) and the results are written to the directory “Class”:

summarize_taxa.py -i otu_table.txt -L 4 -o ./Class

Optionally the user can have the relative abundances added to the user-generated mapping file, by using the following command:

summarize_taxa.py -i otu_table.txt -L 4 -m Mapping_file.txt

Alternatively, the user may want to output the raw counts of each lineage within a sample, which can be used in the next step for making area, bar and pie charts, by using the following command:

summarize_taxa.py -i otu_table.txt -L 4 -a

Site index


sampledoc