Hi,
I've looked around on the forum for help with interpreting an interactive quality plot from demux.qzv that is close to mine, but I haven't found any similar situations.
I'm using QIIME2 version 2019.1 through VirtualBox on a Mac.
After running the following:
qiime demux summarize --i-data et-demux-paired-end.qza --o-visualization et-demux.qzv
and looking at my demux.qzv, I found this:
(Hopefully the image upload works. If not, It's basically a bunch of dashed lines across the entire plot at quality score ~ 37, with only one boxplot at ~ 2 sequence bases.
In the table below the quality plots, all of the box plot features and percentiles have a blank instead of a quality score:
The same thing appears for my reverse reads. The sequences appear to have the same quality regardless of the number of sequence bases, so does that mean I don't have to trim or truncate anything to run dada2 and deblur?
I've already tried both analyses:
dada 2: qiime dada2 denoise-single --i-demultipexed-seqs et-demux-paired-end.qza --p-trim-left 0 --p-trunc-len 0 --o-representative-sequences et-rep-seqs-dada2.qza --o-table et-table-dada2.qza --o-denoising-stats et-stats-dada2.qza
deblur: qiime quality-filter q-score --i-demux demux-single-end.qza --o-filtered-sequences et-demux-filtered.qza --o-filter-stats et-demux-filter-stats.qza
qiime deblur denoise-16S --i-demultiplexed-seqs et-demux-filtered.qza --p-trim-length 0 --o-representative-sequences et-rep-seqs-deblur.qza --o-table et-table-deblur.qza --p-sample-stats --o-stats et-deblur-stats.qza
dada2 seemed to have worked fine, but with deblur I got this error:
Plugin error from deblur:
No sequences passed the filter. It is possible the trim_length (%d) may exceed the longest sequence, that all of the sequences are artifacts like PhiX or adapter, or that the positive reference used is not representative of the data being denoised.
Debug info has been saved to /tmp/qiime2-q2cli-err-gnwzrmxj.log
head /tmp/qiime2-q2cli-err-gnwzrmxj.log gives me:
/home/qiime2/miniconda/envs/qiime2-2019.1/lib/python3.6/site-packages/deblur/workflow.py:851: UserWarning: Problem removing artifacts from file (file name)
for several of my files. These specific files involved in the error have no commonalities in terms of number of sequences (they range from 30,982 to 188,975 sequences).
Here is my frequency plot in case that helps:
Does this have something to do with my quality plot, or the fact that I'm not trimming anything? If my quality plot is correct, where should I trim it (if at all)? Thanks for your help.