Description Usage Arguments Examples
Verify that the input taxon_table file and the input mapping file meets specificationss The function takes one taxon table as its input, and verfies that it meets the expected standards. The standards incude: 1. Column names exist. 2. One of the columns is named "sum.taxonomy" 3. The "xxx_seq_number" column, if it ever existed, is removed 4. All columns apart from sum.taxonomy should be numeric 5. All columns apart from sum.taxonomy should have corresponding row in metadata file
1 | validate_input_files(taxon_table, metadata_file)
|
taxon_table |
taxonomy table from Anacapa |
metadata_file |
Qiime-style mapping |
1 2 3 4 5 | good_taxon_table <- data.frame(sum.taxonomy = c("a;b;c;d;f;u", "p;q;r;s;t;u"),
site_1 = c(0,1), site_2 = c(10, 20))
good_maps <- data.frame(site = c("site_1", "site_2"),
season = c("wet", "dry"), host = c("oak", "sage"))
validate_input_files(good_taxon_table, good_maps)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.