demux.qzv quality plot

I got this curve from Illumina MiSeq sequencing.


I understood from the sequencing center that only demultiplexing was made but no quality filtering was done.
Do I still need to proceed dada2? And in what parameters?
Thank you!

Hello @Hila_t,

Welcome back to the forums! :wave:

Your quality score plot looks quite good. Is that for one sample or all your samples? How many reads made it all the way to 150 base pairs?

Yes, I would try running dada2. I like starting with the settings shown in the examples in the Parkinson’s Mouse Tutorial, and see how well they work on my data set.

Let me know what you try and if you have any questions along the way.

Colin

Thank you @colinbrislawn,

This is a plot of all my samples.

But this is for single-end sequences. Is it better to use in Atacama Soil tutorial?

1 Like

Good catch! Yes, the Atacama Soil tutorial includes dada2 commands commands for paired end data you can use an examples.

The quality at the start of their reads is low, so they use

  --p-trim-left-f 13 \
  --p-trim-left-r 13 \

when running dada2 denoise-paired.

Given that your quality is higher, I might try running

  --p-trim-left-f 3 \
  --p-trim-left-r 3 \

when you rundada2 denoise-paired, but these decisions are up to you!

Let us know how it goes!

Colin

Hi @colinbrislawn,
when I running dada2 denoise-paired I get Frequency per sample:


Why is it so low? I used the following command:
qiime dada2 denoise-paired
--i-demultiplexed-seqs paired-end-demux.qza
--p-trim-left-f 0
--p-trim-left-r 0
--p-trunc-len-f 150
--p-trunc-len-r 150
--o-table table.qza
--o-representative-sequences rep-seqs.qza
--o-denoising-stats denoising-stats.qza

@colinbrislawn.
In addition, do I need to do trimming for the primers I used (515F / 806R)?
Thank you…

I think this might be the clue we need to explain why dada2 denoise-paired performed so poorly.

Given that the forward primer starts at 515 and the reverse primer starts at 806...
806-515 = 291 bp amplicons.

Your reads are 150bp x 2 = 300 bp of coverage, which leaves only 9 bp in the region of overlap, which might not be enough for dada2 to join them. :crying_cat_face:

If you can't join the reads, you could try running dada2 denoise-single on the forward and reverse reads separately and see what you find.

Let us know what you try next!
Colin

1 Like

This topic was automatically closed 31 days after the last reply. New replies are no longer allowed.