I am having difficulties when attempting to run rescript dereplicate. I am getting an error that I cannot seem to find solution for.
I am running QIIME2 version 2024.5 and this version is on an external server that I believe installed it through conda.
I am using the silva-138_2_ssu_nr99 sequence and taxonomy files.
I have been running into some problems trying to dereplicate. When I run the below command…
qiime rescript dereplicate --i-sequences silva-138_2-ssu-nr99-seqs_cleaned.qza --i-taxa corrected_silva-138_2-ssu-nr99-tax.qza --p-mode 'super' --o-dereplicated-sequences silva-138_2-ssu-nr99_clean-derep-super.qza --o-dereplicated-taxa corrected_silva-138_2-ssu-nr99-tax-derep-super.qza
I get the following error
/home/share/anaconda/envs/qiime2-amplicon-2024.5/lib/python3.9/site-packages/qiime2/core/cache.py:468: UserWarning: Your temporary cache was found to be in an inconsistent state. It has been recreated.
warnings.warn(
Plugin error from rescript:
'CP013075.1696123.1697664'
Debug info has been saved to /tmp/qiime2-q2cli-err-abalx_cf.log
I have searched my corrected_silva-138_2-ssu-nr99-tax file and there is no feature ID that is CP013075.1696123.1697664
I have attached the file here for your reference.
qiime2-q2cli-err-abalx_cf.txt (4.7 KB)
Prior to receiving this error I ran the following
qiime rescript cull-seqs --i-sequences silva-138_2-ssu-nr99-seqs.qza --o-clean-sequences silva-138_2-ssu-nr99-seqs_cleaned.qza
qiime rescript dereplicate --i-sequences silva-138_2-ssu-nr99-seqs_cleaned.qza --i-taxa corrected_silva-138_2-ssu-nr99-tax.qza --p-mode 'super' --o-dereplicated-sequences silva-138_2-ssu-nr99_clean-derep-super.qza --o-dereplicated-taxa corrected_silva-138_2-ssu-nr99-tax-derep-super.qz a
When I ran the above script I ran into problems with duplicate feature IDs, so I did the following
qiime tools export --input-path silva-138_2-ssu-nr99-tax.qza --output-path silva-138_2-ssu-nr99-tax
mv taxonomy.tsv silva-138_2-ssu-nr99-tax. tsv
awk '!seen[$1]++' silva-138_2-ssu-nr99-tax.tsv > corrected_silva-138_2-ssu-nr99-ta x.ts v
qiime tools import --type 'FeatureData[Taxonomy]' --input-format HeaderlessTSVTaxonomyFormat --input-path corrected_silva-138_2-ssu-nr99-tax.tsv --output-path corrected_silva-138_2-ssu-nr99-tax.qza
Any guidance would be appreciated.