Greetings,
I am running QIIME2 (2023 version) and I have a few questions regarding one of the data. Everything is fine but after the denoising step, I am not getting enough merged sequences because of which I am losing a lot of features and in the end while assigning taxonomy, I am not getting enough OTU abundances for the bacteria. I have tried various truncation lengths for forward and reverse reads but this is the maximum length at which I am atleast getting some output. Can you please suggest what can be done?
qiime cutadapt trim-paired
--i-demultiplexed-sequences demux-paired-end.qza
--p-front-f TCGTCGGCAGCGTCAGATGTGTATAAGAGACAGAYTGGGYDTAAAGNG
--p-front-r GTCTCGTGGGCTCGGAGATGTGTATAAGAGACAGTACNVGGGTATCTAATCC
--o-trimmed-sequences demux-paired-end-trimmed.qza
qiime demux summarize
--i-data demux-paired-end-trimmed.qza
--o-visualization demux-paired-end-trimmed.qzv
qiime tools view demux-paired-end-trimmed.qzv
qiime dada2 denoise-paired
--i-demultiplexed-seqs demux-paired-end-trimmed.qza
--p-trunc-len-f 125
--p-trunc-len-r 125
--o-representative-sequences rep-seqs.qza
--o-table table.qza
--o-denoising-stats stats-dada2.qza
qiime metadata tabulate
--m-input-file stats-dada2.qza
--o-visualization stats-dada2.qzv
qiime tools view stats-dada2.qzv
qiime feature-table summarize
--i-table table.qza
--m-sample-metadata-file metadata.txt
--o-visualization table.qzv
qiime tools view table.qzv
qiime feature-table tabulate-seqs
--i-data rep-seqs.qza
--o-visualization rep-seqs.qzv
qiime tools view rep-seqs.qzv
qiime feature-classifier classify-sklearn
--i-classifier silva-138-99-515-806-nb-classifier.qza
--i-reads rep-seqs.qza
--o-classification taxonomy.qza
qiime metadata tabulate
--m-input-file taxonomy.qza
--o-visualization taxonomy.qzv
qiime taxa barplot
--i-table table.qza
--i-taxonomy taxonomy.qza
--m-metadata-file metadata.txt
--o-visualization taxa-barplot.qzv
qiime tools export
--input-path table.qza
--output-path exported-feature-table
biom convert
--input-fp exported-feature-table/feature-table.biom
--output-fp exported-feature-table/otu-table.tsv
--to-tsv
qiime tools view taxa-barplot.qzv
qiime tools view exported-feature-table/otu-table.tsv