Hello, Team Qiime2 forum,
I have used 8 primers to amplify the sequences of bacterial genes and then pooled the data to generate amplicon sequencing data. I wanted to see the OUT/ASV clustering in the dataset.
For the same, I have imported the data in qiime2 followed by denoising using DADA2. Created classifier using fit-classifier-naive-bayes from data using SILVIA full-length sequences. I annotated the information using feature-classifier classify-sklearn. I visualized the information using metadata tabulate followed by taxa barplot. However, most of the features are unannotated. I am attaching the exact commands used for the process.
Please suggest if the approach is correct or some other plugins/parameters need to be changed to get a complete annotated feature table.
Importing data
qiime tools import --type MultiplexedPairedEndBarcodeInSequence --input-path fastq_files/ --output-path ./results/multiplexed-seqs.qza
Demultiplexed and summarise
Removed reverse barcodes
qiime cutadapt demux-paired --i-seqs ./results/multiplexed-seqs.qza --m-forward-barcodes-file metadata.tsv --m-forward-barcodes-column Forward --p-error-rate 0.1 --o-per-sample-sequences ./results/demux.qza --o-untrimmed-sequences ./results/untrimmed.qza --verbose
qiime demux summarize --i-data ./results/demux.qza --o-visualization ./results/demux.qzv
Selecting Sequence Variants
qiime dada2 denoise-paired
--i-demultiplexed-seqs ./results/demux.qza
--o-table ./results/table-dada2
--o-representative-sequences ./results/rep-seqs-dada2.qza
--p-trim-left-f 0
--p-trim-left-r 0
--p-trunc-len-f 134
--p-trunc-len-r 120
--p-n-threads 40
--p-n-reads-learn 200000
--o-denoising-stats ./results/denoising-stats.qza
Create classifier
qiime feature-classifier fit-classifier-naive-bayes --i-reference-reads ./classifier/silva-138-99-seqs.qza --i-reference-taxonomy ./classifier/silva-138-99-tax.qza --o-classifier ./classifier/silva_99_341F806R_classifier.qza --verbose
qiime feature-classifier classify-sklearn --i-classifier ./classifier/silva_99_341F806R_classifier.qza --i-reads ./results/rep-seqs-dada2.qza --o-classification ./results/taxonomy.qza
qiime metadata tabulate --m-input-file ./results/taxonomy.qza --o-visualization ./results/taxonomy.qzv
qiime taxa barplot --i-table ./results/table-dada2 --i-taxonomy ./results/taxonomy.qza --m-metadata-file metadata.tsv --o-visualization taxa-bar-plots.qzv