View source: R/dada_phyloseq.R
save_pq | R Documentation |
A wrapper of write_pq to save in all three possible formats
save_pq(physeq, path = NULL, ...)
physeq |
(required): a |
path |
a path to the folder to save the phyloseq object |
... |
Other arguments passed on to |
Write :
4 separate tables
1 table version
1 RData file
Build a folder (in path) with four csv tables (refseq.csv
, otu_table.csv
, tax_table.csv
, sam_data.csv
) + one
table with all tables together + a rdata file (physeq.RData
) that can be loaded using
base::load()
function + if present a phylogenetic tree in Newick format (phy_tree.txt
)
Adrien Taudière
write_pq()
save_pq(data_fungi, path = paste0(tempdir(), "/phyloseq"))
unlink(paste0(tempdir(), "/phyloseq"), recursive = TRUE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.