@wasade So I was able to download the 18S sequences I needed from QIITA, but I get this error when I try to classify the .qza file for the ASVs. I only get this error for 18S (and I've tried multiple 18S contexts), but not 16S (which works fine) so I don't know what's going on. Below are the commands I'm using and the error.
redbiom fetch samples
--from /qiime2/freshwater_ph_sample_ids
--context Deblur_2021.09-Illumina-18S-V9-90nt-844b41
--output /qiime2/$gene"_freshwater_ph_samples.biom"
qiime tools import
--type FeatureTable[Frequency]
--input-path /qiime2/$gene"_freshwater_ph_samples.biom"
--output-path /qiime2/$gene"_freshwater_ph_samples.qza"
qiime clawback sequence-variants-from-samples
--i-samples /qiime2/$gene"_freshwater_ph_samples.qza"
--o-sequences /qiime2/$gene"_freshwater_ph_ASVs.qza"
qiime feature-classifier classify-sklearn
--i-classifier /qiime2/$gene/$gene"_NB_SILVA_classifier.qza"
--i-reads /qiime2/$gene"_freshwater_ph_ASVs.qza"
--p-confidence=disable
--p-n-jobs=8
--o-classification /qiime2/$gene/$gene"_freshwater_ph_ASVs_classification.qza"Plugin error from feature-classifier:
Command '['grep', '-c', '^>', '/tmp/qiime2-archive-uzyptvrx/f6df7d7d-4b9d-45bf-bc9c-31c5646513c2/data/dna-sequences.fasta']' returned non-zero exit status 1.
Debug info has been saved to /tmp/qiime2-q2cli-err-78giiuxc.log
less /tmp/qiime2-q2cli-err-78giiuxc.log
Traceback (most recent call last):
File "/opt/conda/envs/qiime2-2020.8/lib/python3.6/site-packages/q2cli/commands.py", line 329, in call
results = action(**arguments)
File "", line 2, in classify_sklearn
File "/opt/conda/envs/qiime2-2020.8/lib/python3.6/site-packages/qiime2/sdk/action.py", line 245, in bound_callable
output_types, provenance)
File "/opt/conda/envs/qiime2-2020.8/lib/python3.6/site-packages/qiime2/sdk/action.py", line 390, in callable_executor
output_views = self._callable(**view_args)
File "/opt/conda/envs/qiime2-2020.8/lib/python3.6/site-packages/q2_feature_classifier/classifier.py", line 209, in classify_sklearn
reads_per_batch = _autotune_reads_per_batch(reads, n_jobs)
File "/opt/conda/envs/qiime2-2020.8/lib/python3.6/site-packages/q2_feature_classifier/classifier.py", line 192, in _autotune_reads_per_batch
stdout=subprocess.PIPE)
File "/opt/conda/envs/qiime2-2020.8/lib/python3.6/subprocess.py", line 438, in run
output=stdout, stderr=stderr)
subprocess.CalledProcessError: Command '['grep', '-c', '^>', '/tmp/qiime2-archive-uzyptvrx/f6df7d7d-4b9d-45bf-bc9c-31c5646513c2/data/dna-sequences.fasta']' returned non-zero exit status 1.