Dear all,
First of all, thanks a lot for all of your hard work with QIIME2!
I have a question please:
I imported my demultiplexed, free-from-adapters, paired-end data using the following command:
qiime tools import
--type 'SampleData[PairedEndSequencesWithQuality]'
--input-path $BATCHNAME"_manifest.tsv"
--output-path $BATCHNAME"_demux.qza"
--input-format PairedEndFastqManifestPhred33V2
Then I continued with the following command (by mistake):
qiime dada2 denoise-single
--i-demultiplexed-seqs $BATCHNAME"_demux.qza"
--p-trim-left 0
--p-trunc-len 200
--p-chimera-method 'consensus'
--o-representative-sequences $BATCHNAME"_rep_seqs_dada2_trunc200.qza"
--o-table $BATCHNAME"_table_dada2_trunc200.qza"
--o-denoising-stats $BATCHNAME"_stats_dada2_trunc200.qza"
Realizing that I should have used a different command, I then re-analyzed my data using:
qiime dada2 denoise-paired
--i-demultiplexed-seqs $BATCHNAME"_demux.qza"
--p-trim-left 0
--p-trunc-len 200
--p-chimera-method 'consensus'
--o-representative-sequences $BATCHNAME"_rep_seqs_dada2_trunc200.qza"
--o-table $BATCHNAME"_table_dada2_trunc200.qza"
--o-denoising-stats $BATCHNAME"_stats_dada2_trunc200.qza"
I then compared both results, hoping that my new results would look better.
But actually the results generated using denoise-single retain more sequences and show decent alpha rarefaction plots.
The results generated using denoise-paired lost a lot more sequences:
Does anyone know why is this so?
And is it okay for me to just use the denoise-single command for my paired-end data then?
Many thanks for your time and help