Hi everyone, I am trying to train my own classifier following the steps from the Tutorials by using the database downloaded from Ezbiocloud, include taxonomy txt file and OTU sequence fasta file. The format of taxonomy file is not QIIME’s default so at first I modified them manually.
(Before: 81152 Bacteria;Thermotogae;Thermotogae_c;Thermotogales;Fervidobacteriaceae;A61579_g;A61579_s
81153 Bacteria;Proteobacteria;Alphaproteobacteria;Rhodospirillales;Rhodospirillaceae;Magnetospirillum;Magnetospirillum magnetotacticum)
(After: 81152 k__Bacteria; p__Thermotogae; c__Thermotogae; o__Thermotogales; f__Fervidobacteriaceae; g__A61579; s__A61579 81153 k__Bacteria; p__Proteobacteria; c__Alphaproteobacteria; o__Rhodospirillales; f__Rhodospirillaceae; g__Magnetospirillum; s__Magnetospirillum magnetotacticum)
It seems good until the last step " Test the classifier". It showed the massage "Plugin error from feature-classifier:
this classifier does not support confidence values
Debug info has been saved to /tmp/qiime2-q2cli-err-r87x189t.log"
Would you please help me to debug them. Thank you!
Running VirtualBox Qiime2 in the Windows 7. All commands were listed below.
qiime tools import
--type 'FeatureData[Sequence]'
--input-path ezbiocloud_qiime_full.fasta
--output-path ezbio.qza
qiime tools import
--type 'FeatureData[Taxonomy]'
--input-format HeaderlessTSVTaxonomyFormat
--input-path ezbiocloud_id_taxonomy.txt
--output-path ref-taxonomy.qza
qiime feature-classifier extract-reads
--i-sequences ezbio.qza
--p-f-primer GTGCCAGCMGCCGCGGTAA
--p-r-primer GGACTACHVGGGTWTCTAAT
--p-trunc-len 120
--p-min-length 100
--p-max-length 400
--o-reads ref-seqs.qza
qiime feature-classifier fit-classifier-naive-bayes
--i-reference-reads ref-seqs.qza
--i-reference-taxonomy ref-taxonomy.qza
--o-classifier classifier.qza
qiime feature-classifier classify-sklearn
--i-classifier classifier.qza
--i-reads rep-seqs.qza
--o-classification taxonomy.qza