diff --git a/inst/pages/import.qmd b/inst/pages/import.qmd index ee19c186..6d8820d6 100644 --- a/inst/pages/import.qmd +++ b/inst/pages/import.qmd @@ -58,7 +58,7 @@ tree_file_path <- system.file( ``` Now we can read in the biom file and convert it into a `TreeSE` object. In -addition, we retrieve the rank names from the prefixes of the feature names +addition, we retrieve the rank names from the prefixes of the taxa names and then remove them with the `rank.from.prefix` and `prefix.rm` optional arguments. @@ -108,7 +108,8 @@ sample_meta <- read.csv( sample_meta_file_path, sep = ",", row.names = 1) # Add this sample data to colData of the taxonomic data object -# Note that the data must be given in a DataFrame format +# Note that the samples in the sample data must be in the same order as +in the original biom file and that data must be given in a DataFrame format colData(tse) <- DataFrame(sample_meta) ```