Welcome to the forum @Newbie!
QIIME 2 is designed to analyze data whether it is raw or halfway or even fully analyzed. This is accomplished by "importing" different data types into QIIME 2 artifacts (i.e., converting different standard interoperable formats into QIIME 2 files).
It's a matter of opinion but diversity analyses are not a simple thing to accomplish, so importing and running with QIIME 2 is probably the easiest thing to do, unless if e.g., you are proficient with R and would prefer using vegan etc.
Basically what you will need to do (since all files are excel format) this is where I would start:
- convert to TSV
- remove special characters (excel will insert special line breaks and do other things that totally destroy files... excel should really never be used for touching data because it causes woes such as these)
- import the files following the tutorials here: Importing data — QIIME 2 2020.11.1 documentation
Now let me tell you about what you have and how to import:
This is your "feature table". Use biom to convert to biom format, then import using these instruction.
This sounds like your sample metadata file so I am not sure what you mean here:
you may just need to reformat this file to fit the specifications described here.
Then the correctly formatted metadata file is ready to use as a TSV, it is not "imported" in any way.
This can be imported like this:
qiime tools import \
--type 'FeatureData[Taxonomy]' \
--input-path taxonomy.txt \
--output-path taxonomy.qza
Once the feature table and taxonomy are imported, you can start analyzing your data, e.g., see this tutorial for diversity analyses that you can run with those data.
Though note that it sounds like you do not have sequences or a phylogenetic tree, so do not attempt to run the phylogenetic analyses described there. Instead of using the core-metrics-phylogenetic
pipeline use the core-metrics
pipeline in its place.
Good luck!