<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[使用rdp数据库构建16s qiime 分类器]]></title><description><![CDATA[<p dir="auto">使用 <code>current_Bacteria_unaligned.fa</code> rpd 数据库，构建 <code>qiime</code> 分类器</p>
<pre><code class="language-bash"># login with bioinfo
cd /ceph_disk3/lx/ws/user_dir_for_bioinfo/qiime_train_classifier
conda activate qiime2-2020.2
</code></pre>
<h4>导入数据</h4>
<pre><code class="language-bash">qiime tools import \
  --type 'FeatureData[Sequence]' \
  --input-path bacteria_unaligned_08_14_2020.fasta \
  --output-path bacteria_unaligned_08_14_2020.qza

qiime tools import \
  --type 'FeatureData[Taxonomy]' \
  --input-format HeaderlessTSVTaxonomyFormat \
  --input-path taxonomy.txt \
  --output-path ref-taxonomy.qza
</code></pre>
<h4>抽取序列</h4>
<pre><code class="language-bash">qiime feature-classifier extract-reads \
  --i-sequences bacteria_unaligned_08_14_2020.qza \
  --p-f-primer GTGCCAGCMGCCGCGGTAA \
  --p-r-primer GGACTACHVGGGTWTCTAAT \
  --p-trunc-len 120 \
  --p-min-length 100 \
  --p-max-length 400 \
  --o-reads xxxx.qza
  
</code></pre>
<h4>构建分类器</h4>
<pre><code class="language-bash">qiime feature-classifier fit-classifier-naive-bayes \
--i-reference-reads bacteria_unaligned_08_14_2020.qza \
--i-reference-taxonomy ref-taxonomy.qza \
--o-classifier rdp_bacteria_unaligned_classifier_08_14_2020.qza
</code></pre>
]]></description><link>http://an.forum.genostack.com/topic/581/使用rdp数据库构建16s-qiime-分类器</link><generator>RSS for Node</generator><lastBuildDate>Sat, 13 Jun 2026 10:58:21 GMT</lastBuildDate><atom:link href="http://an.forum.genostack.com/topic/581.rss" rel="self" type="application/rss+xml"/><pubDate>Tue, 15 Mar 2022 09:09:06 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to 使用rdp数据库构建16s qiime 分类器 on Tue, 12 Apr 2022 06:30:08 GMT]]></title><description><![CDATA[<p dir="auto"><a href="https://bioinformaticsworkbook.org/dataAnalysis/Metagenomics/Qiime2.html#gsc.tab=0" rel="nofollow ugc">https://bioinformaticsworkbook.org/dataAnalysis/Metagenomics/Qiime2.html#gsc.tab=0</a></p>
]]></description><link>http://an.forum.genostack.com/post/1377</link><guid isPermaLink="true">http://an.forum.genostack.com/post/1377</guid><dc:creator><![CDATA[anneng]]></dc:creator><pubDate>Tue, 12 Apr 2022 06:30:08 GMT</pubDate></item></channel></rss>