You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When importing a qiime2 style metadata file, the function mStat_import_qiime2_as_data_obj() does not remove the annotation row "q2:types" specifing the data type
Thank you for bringing this to our attention. It seems that the issue you're experiencing is due to the mStat_import_qiime2_as_data_obj() function not stripping the "q2:types" annotation row that specifies data types in the metadata file. This row is necessary for qiime2 but should not be included in the data object created for analysis.
We'll look into updating the function to automatically remove this row during the import process. In the meantime, you can manually adjust the metadata file to remove the "q2:types" row before importing it, or you could use a line of code to exclude it after the data is loaded into R.
We appreciate your feedback and will notify you once we have an update on this issue. If you have any more details or specific examples you could share, that would help us ensure the solution fully addresses your needs.
When importing a qiime2 style metadata file, the function mStat_import_qiime2_as_data_obj() does not remove the annotation row "q2:types" specifing the data type
data.obj <- mStat_import_qiime2_as_data_obj(
otu_qza = "qiime2_mp_data/rarefied_table.qza",
taxa_qza = "qiime2_mp_data/taxonomy.qza",
sam_tab = "qiime2_mp_data/sample_metadata.tsv",
tree_qza = "qiime2_mp_data/rooted-tree.qza"
)
The text was updated successfully, but these errors were encountered: