Hi @charlesalexandreroy ,
Welcome to the forum!
A few years back there was a QIIME 2 plugin, q2-perc-norm, designed for batch correction. You can see a post about it here with some more useful links:
I am not aware of a plugin for ConQuR, but it certainly sounds useful. I would recommend contacting the authors of ConQuR to discuss the idea — if you or they are interested in developing such a plugin, you can let us know on the forum if you need help getting started with plugin development.
This would be a feature table, and more specifically a FeatureData[Frequency] artifact. Many different QIIME 2 plugins produce and work with these but the most basic steps to generate a feature table (and specifically one where the features are taxonomic groups) would be:
- denoise and/or cluster your sequences, e.g., with q2-dada2, q2-deblur, or q2-vsearch (all of these will generate feature tables from demultiplexed sequence data; see the amplicon-docs for more usage details)
- perform taxonomy classification of your representative sequences with q2-feature-classifier
- use the q2-taxa plugin to collapse your feature table by taxonomy. The output will be a feature table (count matrix) of samples X taxa.
Good luck!