Description Usage Arguments Details Value Note Author(s) Examples
View source: R/make_framebot_tax_table.R
Create a taxonomy table from FunGene Pipeline output.
1 | make_framebot_tax_table(clstr_machine, taxa_machine)
|
clstr_machine |
match_cluster_machine_name.txt from my FunGene Pipeline script |
taxa_machine |
match_taxa_machine_names.txt from my FunGene Pipeline script |
My FunGene pipeline script (see john-quensen.com) produces one file matching representative sequence machine names with cluster numbers and a second matching representative sequence machine names with taxa names found by FrameBot. This function parses and combines the two files to produce a phyloseq tax_table. Ranks are Genus, Species, and Strain. Classification is the closest match to sequence in the FrameBot reference database. The percent identity to the closest match is appended to the name of the closest match (strain level in the tax_table).
A tax_table of class phyloseq.
See the workshop page Command Line FunGene Pipeline at john-quensen.com for the FunGene Pipeline script.
John Quensen
1 2 3 | match.clst <- system.file("extdata", "match_cluster_machine_name.txt", package="RDPutils")
match.taxa <- system.file("extdata", "match_taxa_machine_names.txt", package="RDPutils")
my_taxa <- make_framebot_tax_table(clstr_machine=match.clst, taxa_machine=match.taxa)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.