Using Qiime2 (qiime2/2018.4 on hpc), I am trying to import a feature table with the ASV frequencies per sample that I created using Dada2 on R. I used the following code to import the table into a qza file:
Plugin error from feature-classifier: Argument to parameter 'reads' is not a subtype of FeatureData[Sequence].
I know that my feature table is not in the FeatureData[Sequence] format and is in FeatureTable[Frequency] format. Any suggestions for a work around or a better way to match my features to taxonomy?
Just like you said, classify-sklearn needs a FeatureData[Sequence], which would be the sequences of the ASVs made by dada2. This should be something else you could export from R as an .fna file, then import as a FeatureData[Sequence] file.
No workarounds here. You have got to get the DNA sequences in order classify them. (But don't worry because you can totally export them from R!)