Import data from QIIME2 results to MbioDataset. There is
some loss of granularity in this process. It results
in a simpler and more performant object which is compliant
with the MicrobiomeDB infrastructure. See mia::importQIIME2
for documentation.
Arguments
- normalizationMethod
- Normalization method to use on they assay data. Options are "none" and "TSS". Applying TSS normalization to absolute taxonomic abundances produces relative taxonomic abundances. Default is "TSS". 
- keepRawValues
- Keep the raw assay values as well as the normalized values. 
- verbose
- Print messages 
- ...
- Arguments to pass to mia::importQIIME2 
Examples
featureTableFile <- system.file("extdata", "table.qza", package = "mia")
taxonomyTableFile <- system.file("extdata", "taxonomy.qza", package = "mia")
mbioDataset <- importQIIME2(
     normalizationMethod = "none", 
     keepRawValues = TRUE, 
     verbose = TRUE, 
     featureTableFile, 
     taxonomyTableFile
)