Hello!
Now I am analysis 18S V4-5 NGS data using QIIME-compatible SILVA 132 release.
18S V4-5 Primer
616*f TTAAARVGYTCGTAGTYG
1132r CCGTCAATTHCTTYAART
Training SILVA 18S classifier:
qiime tools import --type 'FeatureData[Sequence]' --input-path SILVA_132_QIIME_release/rep_set/rep_set_18S_only/99/silva_132_99_18S.fna --output-path silva_132_99_18S_otus
I think the silva_132_99_18S.fna is the full length of 18S rRNA gene.
Q1. Why here the Min Length is 900, how to understand the short length sequence?
time qiime feature-classifier extract-reads --i-sequences silva_132_99_18S_otus.qza --p-f-primer TTAAARVGYTCGTAGTYG --p-r-primer CCGTCAATTHCTTYAART --o-reads silva_132_99_18S_616-1132-ref-seq.qza
Q2. The sequence count was decreased from 55145 to 53880, how to understand the decreased sequence?
Q3. Is there any method to know which sequences/taxonomy were removed.
After training classifier, I compared the taxa from full length and primer extracted classifier:
qiime feature-classifier classify-sklearn --i-classifier silva_132_99_18S_full_all_level_classifier.qza --i-reads representative_sequences.qza --o-classification taxonomy-all-level.qza
qiime taxa barplot --i-table table.qza --i-taxonomy taxonomy-all-level.qza --o-visualization silva-all-level-barplot --m-metadata-file metadata.tsv
D_8__Eurotiales;D_9__Aspergillaceae;D_10__Aspergillus: Aspergillus could be identified.
qiime feature-classifier classify-sklearn --i-classifier silva_132_99_18S_all-level_616-1132_classifier.qza --i-reads rep-seq-filtered.qza --o-classification taxonomy-silva_132_all-level_616-1132
qiime taxa barplot --i-table table.qza --i-taxonomy Taxonomy-silva_132_all-level_616-1132.qza --m-metadata-file metadata.tsv --o-visualization Silva-taxa-barplot_616-1132
D_8__Eurotiales;D_9__Aspergillaceae;__: The family of Aspergillaceae could be identified, but the Aspergillus could not be identified.
Q4. Which classifier is more precise? Why Aspergillus could not be identified using primer extracted classifier?
Any commons would be greatly appreciated.
Thank you so much!