I want to use DADA2 or Deblur to generate FeatureData[Sequence]
and FeatureTable[Frequency]
, but both commands are not working.
DADA2 :
qiime dada2 denoise-single
--i-demultiplexed-seqs demux.qza
--p-trim-left 0 --p-trunc-len 0
--o-representative-sequences rep-seqs.qza
--o-table table.qza
--o-denoising-stats denoising-stats.qza
--p-n-threads 0
Plugin error from dada2:
No reads passed the filter. trunc_len (0) may be longer than read lengths, or other arguments (such as max_ee or trunc_q) may be preventing reads from passing the filter.
DEBLUR:
qiime deblur denoise-16S
--i-demultiplexed-seqs demux.qza
--p-trim-length -1
--o-representative-sequences rep-seqs.qza
--o-table table.qza
--p-sample-stats
--o-stats deblur-stats.qza
--p-jobs-to-start 16
Plugin error from deblur:
No sequences passed the filter. It is possible the trim_length (-1) 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.