Dear QIIME2 team,
I am using the commands below (Qiime2-2021.4) to process ITS data with the deblur algorithm. However, I am having an error while using:
qiime deblur denoise-other
It exits with non-zero status 1.
I am attaching the error file here. q2deblur_other_error.txt (6.9 KB)
Here's the commands that I use:
qiime tools import \
--type 'SampleData[PairedEndSequencesWithQuality]' \
--input-path $INP \
--input-format CasavaOneEightSingleLanePerSampleDirFmt \
--output-path demux-ITS.qza
qiime cutadapt trim-paired \
--i-demultiplexed-sequences demux-ITS.qza \
--p-front-f GGGTGARTCATCRARTYTTTG \
--p-front-r CCTSCSCTTANTDATATGC \
--p-cores 24 \
--o-trimmed-sequences trimmed-seqs_ITS.qza \
--verbose
qiime itsxpress trim-pair \
--i-per-sample-sequences trimmed-seqs_ITS.qza \
--p-region ITS2 \
--p-taxa F \
--p-threads 24 \
--o-trimmed trimmed_demux_ITS_deblur.qza \
--verbose
qiime quality-filter q-score \
--i-demux trimmed_demux_ITS_deblur.qza \
--o-filtered-sequences demux-filtered-deblur.qza \
--o-filter-stats demux-filter-stats-deblur.qza
qiime deblur denoise-other \
--i-demultiplexed-seqs demux-filtered-deblur.qza \
--i-reference-seqs unite-ver8-seqs_99_s_all_02.02.2019.qza \
--p-trim-length 237 \
--p-jobs-to-start 24 \
--o-representative-sequences rep-seqs-deblur.qza \
--o-table table-deblur.qza \
--o-stats deblur-stats.qza \
--verbose
I would be happy to hear your suggestion.
Thank you very much for your help!