<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>小生这厢有礼了(BioFaceBook Personal Blog) &#187; 三代测序</title>
	<atom:link href="https://www.biofacebook.com/?cat=6&#038;feed=rss2" rel="self" type="application/rss+xml" />
	<link>https://www.biofacebook.com</link>
	<description>记录生物信息学点滴足迹（NGS,Genome,Meta,Linux)</description>
	<lastBuildDate>Sun, 23 Aug 2020 03:28:53 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>https://wordpress.org/?v=4.1.41</generator>
	<item>
		<title>Metagenomics standard operating procedure v2</title>
		<link>https://www.biofacebook.com/?p=1527</link>
		<comments>https://www.biofacebook.com/?p=1527#comments</comments>
		<pubDate>Sun, 23 Aug 2020 03:28:53 +0000</pubDate>
		<dc:creator><![CDATA[szypanther]]></dc:creator>
				<category><![CDATA[三代测序]]></category>
		<category><![CDATA[二代测序]]></category>
		<category><![CDATA[生物信息]]></category>

		<guid isPermaLink="false">http://www.biofacebook.com/?p=1527</guid>
		<description><![CDATA[<p>http://www.360doc.com/content/20/0823/10/71250389_931761136.shtml</p> <p>https://github.com/LangilleLab/microbiome_helper/wiki/Metagenomics-standard-operating-procedure-v2</p> <p>Note that this workflow is continually being updated. If you want to use the below commands be sure to keep track of them locally.</p> <p>Last updated: 9 Oct 2018 (see revisions above for earlier minor versions and Metagenomics SOPs on the SOP for earlier major versions)</p> <p>Important points to keep in mind:</p> The [...]]]></description>
				<content:encoded><![CDATA[<p><strong><em>http://www.360doc.com/content/20/0823/10/71250389_931761136.shtml</em></strong></p>
<p>https://github.com/LangilleLab/microbiome_helper/wiki/Metagenomics-standard-operating-procedure-v2</p>
<p><em>Note that this workflow is continually being updated. If you want to use the below commands be sure to keep track of them locally.</em></p>
<p><em>Last updated: 9 Oct 2018 (see <code>revisions</code> above for earlier minor versions and <code>Metagenomics SOPs</code> on the SOP for earlier major versions)</em></p>
<p>Important points to keep in mind:</p>
<ul>
<li>The below options are not necessarily best for your data; it is important to explore different options, especially at the read quality filtering stage.</li>
<li>If you are confused about a particular step be sure to check out the pages under <code>Metagenomic Resources</code> on the right side-bar.</li>
<li>You should check that only the FASTQs of interest are being specified at each step (e.g. with the <code>ls</code> command). If you are re-running commands multiple times or using optional steps the input filenames and/or folders could differ.</li>
<li>The tool <code>parallel</code> comes up several times in this workflow. Be sure to check out our tutorial on this tool <a href="https://github.com/LangilleLab/microbiome_helper/wiki/Quick-Introduction-to-GNU-Parallel">here</a>.</li>
<li>You can always run <code>parallel</code> with the <code>--dry-run</code> option to see what commands are being run to double-check they are doing what you want!</li>
</ul>
<p>This workflow starts with raw paired-end MiSeq or NextSeq data in demultiplexed FASTQ format assumed to be located within a folder called <code>raw_data</code>.</p>
<h2><a id="user-content-1-first-steps" class="anchor" href="https://github.com/LangilleLab/microbiome_helper/wiki/Metagenomics-standard-operating-procedure-v2#1-first-steps"></a>1. First Steps</h2>
<h3><a id="user-content-11-join-lanes-together-all-illumina-except-miseq" class="anchor" href="https://github.com/LangilleLab/microbiome_helper/wiki/Metagenomics-standard-operating-procedure-v2#11-join-lanes-together-all-illumina-except-miseq"></a>1.1 Join lanes together (all Illumina, except MiSeq)</h3>
<p>Concatenate multiple lanes of sequencing together (e.g. for NextSeq data). If you do <strong>NOT</strong> do this step, remember to change <code>cat_lanes</code> to <code>raw_data</code> in the further commands below that have assumed you are working with the most common type of metagenome data.</p>
<pre><code>concat_lanes.pl raw_data/* -o cat_lanes -p 4
</code></pre>
<h3><a id="user-content-12-inspect-read-quality" class="anchor" href="https://github.com/LangilleLab/microbiome_helper/wiki/Metagenomics-standard-operating-procedure-v2#12-inspect-read-quality"></a>1.2 Inspect read quality</h3>
<p>Run <code>fastqc</code> to allow manual inspection of the quality of sequences.</p>
<pre><code>mkdir fastqc_out
fastqc -t 4 cat_lanes/* -o fastqc_out/
</code></pre>
<h3><a id="user-content-13-optional-stitch-fr-reads" class="anchor" href="https://github.com/LangilleLab/microbiome_helper/wiki/Metagenomics-standard-operating-procedure-v2#13-optional-stitch-fr-reads"></a>1.3 (Optional) Stitch F+R reads</h3>
<p>Stitch paired-end reads together (summary of stitching results are written to &#8220;pear_summary_log.txt&#8221;). Note: it is important to check the % of reads assembled. It may be better to concatenate the forward and reverse reads together if the assembly % is too low (see step 2.2).</p>
<pre><code>run_pear.pl -p 4 -o stitched_reads cat_lanes/*
</code></pre>
<p><strong><em>If you don&#8217;t stitch your reads together at this step you will need to unzip your FASTQ files before continuing with the below commands.</em></strong></p>
<h2><a id="user-content-2-read-quality-control-and-contaminant-screens" class="anchor" href="https://github.com/LangilleLab/microbiome_helper/wiki/Metagenomics-standard-operating-procedure-v2#2-read-quality-control-and-contaminant-screens"></a>2. Read Quality-Control and Contaminant Screens</h2>
<h3><a id="user-content-21-running-kneaddata" class="anchor" href="https://github.com/LangilleLab/microbiome_helper/wiki/Metagenomics-standard-operating-procedure-v2#21-running-kneaddata"></a>2.1 Running KneadData</h3>
<p>Use <code>kneaddata</code> to run pre-processing tools. First Trimmomatic is run to remove low quality sequences. Then Bowtie2 is run to screen out contaminant sequences. Below we are screening out reads that map to the human or PhiX genomes. Note KneadData is being run below on all unstitched FASTQ pairs with <code>parallel</code>, you can see our quick tutorial on this tool <a href="https://github.com/LangilleLab/microbiome_helper/wiki/Quick-Introduction-to-GNU-Parallel">here</a>. For a detailed breakdown of the options in the below command see <a href="https://github.com/LangilleLab/microbiome_helper/wiki/Metagenomics-Sequencing-Pre-processing">this page</a>. The forward and reverse reads will be specified by &#8220;_1&#8243; and &#8220;_2&#8243; in the output files, ignore the &#8220;R1&#8243; in each filename. Note that the <code>\</code> characters at the end of each line are just to split the command over multiple lines to make it easier to read.</p>
<pre><code>parallel -j 1 --link 'kneaddata -i {1} -i {2} -o kneaddata_out/ \
-db /home/shared/bowtiedb/GRCh38_PhiX --trimmomatic /usr/local/prg/Trimmomatic-0.36/ \
-t 4 --trimmomatic-options "SLIDINGWINDOW:4:20 MINLEN:50" \
--bowtie2-options "--very-sensitive --dovetail" --remove-intermediate-output' \
 ::: cat_lanes/*_R1.fastq ::: cat_lanes/*_R2.fastq
</code></pre>
<p>Clean up the output directory (helps downstream commands) by moving the discarded sequences to a subfolder:</p>
<pre><code>mkdir kneaddata_out/contam_seq

mv kneaddata_out/*_contam*.fastq kneaddata_out/contam_seq
</code></pre>
<p>You can produce a logfile summarizing the kneadData output with this command:</p>
<pre><code>kneaddata_read_count_table --input kneaddata_out --output kneaddata_read_counts.txt
</code></pre>
<h3><a id="user-content-22-concatenate-unstitched-output-omit-if-data-stitched-above" class="anchor" href="https://github.com/LangilleLab/microbiome_helper/wiki/Metagenomics-standard-operating-procedure-v2#22-concatenate-unstitched-output-omit-if-data-stitched-above"></a>2.2 Concatenate unstitched output (Omit if data stitched above)</h3>
<p>If you did not stitch your paired-end reads together with <code>pear</code>, then you can concatenate the forward and reverse FASTQs together now. Note this is done after quality filtering so that both reads in a pair are either discarded or retained. It&#8217;s important to only specify the &#8220;paired&#8221; FASTQs outputted by <code>kneaddata</code> in the below command.</p>
<pre><code>concat_paired_end.pl -p 4 --no_R_match -o cat_reads kneaddata_out/*_paired_*.fastq 
</code></pre>
<p>You should check over the commands that are printed to screen to make sure the correct FASTQs are being concatenated together.</p>
<h2><a id="user-content-3-determine-functions-with-humann2" class="anchor" href="https://github.com/LangilleLab/microbiome_helper/wiki/Metagenomics-standard-operating-procedure-v2#3-determine-functions-with-humann2"></a>3. Determine Functions with HUMAnN2</h2>
<h3><a id="user-content-31-run-humann2" class="anchor" href="https://github.com/LangilleLab/microbiome_helper/wiki/Metagenomics-standard-operating-procedure-v2#31-run-humann2"></a>3.1 Run HUMAnN2</h3>
<p>Run <code>humann2</code> with <code>parallel</code> to calculate abundance of UniRef90 gene families and MetaCyc pathways. If you are processing environment data (e.g. soil samples) the vast majority of the reads may not map using this approach. Instead, you can try mapping against the UniRef50 database (which you can point to with the <code>--protein-database</code> option).</p>
<pre><code>mkdir humann2_out

parallel -j 4 'humann2 --threads 1 --input {} --output humann2_out/{/.}' ::: cat_reads/*fastq
</code></pre>
<h3><a id="user-content-32-merge-individual-sample-data-together" class="anchor" href="https://github.com/LangilleLab/microbiome_helper/wiki/Metagenomics-standard-operating-procedure-v2#32-merge-individual-sample-data-together"></a>3.2 Merge individual sample data together</h3>
<p>Join HUMAnN2 output per sample into one table.</p>
<pre><code>mkdir humann2_final_out

humann2_join_tables -s --input humann2_out/ --file_name pathabundance --output humann2_final_out/humann2_pathabundance.tsv
humann2_join_tables -s --input humann2_out/ --file_name pathcoverage --output humann2_final_out/humann2_pathcoverage.tsv
humann2_join_tables -s --input humann2_out/ --file_name genefamilies --output humann2_final_out/humann2_genefamilies.tsv
</code></pre>
<h3><a id="user-content-33-table-output-normalization" class="anchor" href="https://github.com/LangilleLab/microbiome_helper/wiki/Metagenomics-standard-operating-procedure-v2#33-table-output-normalization"></a>3.3 Table output normalization</h3>
<p>Re-normalize gene family and pathway <strong>abundances</strong> (so that all samples are in units of copies per million).</p>
<pre><code>humann2_renorm_table --input humann2_final_out/humann2_pathabundance.tsv --units cpm --output humann2_final_out/humann2_pathabundance_cpm.tsv
humann2_renorm_table --input humann2_final_out/humann2_genefamilies.tsv --units cpm --output humann2_final_out/humann2_genefamilies_cpm.tsv
</code></pre>
<h3><a id="user-content-34-separate-out-taxonomic-contributions" class="anchor" href="https://github.com/LangilleLab/microbiome_helper/wiki/Metagenomics-standard-operating-procedure-v2#34-separate-out-taxonomic-contributions"></a>3.4 Separate out taxonomic contributions</h3>
<p>Split HUMAnN2 output abundance tables in stratified and unstratified tables (stratified tables include the taxa associated with a functional profile).</p>
<pre><code>humann2_split_stratified_table --input humann2_final_out/humann2_pathabundance_cpm.tsv --output humann2_final_out
humann2_split_stratified_table --input humann2_final_out/humann2_genefamilies_cpm.tsv --output humann2_final_out
humann2_split_stratified_table --input humann2_final_out/humann2_pathcoverage.tsv --output humann2_final_out
</code></pre>
<h3><a id="user-content-35-format-stamp-function-file" class="anchor" href="https://github.com/LangilleLab/microbiome_helper/wiki/Metagenomics-standard-operating-procedure-v2#35-format-stamp-function-file"></a>3.5 Format STAMP function file</h3>
<p>Convert unstratified HUMAnN2 abundance tables to STAMP format by changing header-line. These commands remove the comment character and the spaces in the name of the first column. Trailing descriptions of the abundance datatype are also removed from each sample&#8217;s column name.</p>
<pre><code>sed 's/_Abundance-RPKs//g' humann2_final_out/humann2_genefamilies_cpm_unstratified.tsv | sed 's/# Gene Family/GeneFamily/' &gt; humann2_final_out/humann2_genefamilies_cpm_unstratified.spf
sed 's/_Abundance//g' humann2_final_out/humann2_pathabundance_cpm_unstratified.tsv | sed 's/# Pathway/Pathway/' &gt; humann2_final_out/humann2_pathabundance_cpm_unstratified.spf
sed 's/_Coverage//g' humann2_final_out/humann2_pathcoverage_unstratified.tsv | sed 's/# Pathway/Pathway/' &gt; humann2_final_out/humann2_pathcoverage_unstratified.spf
</code></pre>
<h3><a id="user-content-36-extract-metaphlan2-taxonomic-compositions" class="anchor" href="https://github.com/LangilleLab/microbiome_helper/wiki/Metagenomics-standard-operating-procedure-v2#36-extract-metaphlan2-taxonomic-compositions"></a>3.6 Extract MetaPhlAn2 taxonomic compositions</h3>
<p>Since HUMAnN2 also runs MetaPhlAn2 as an initial step, we can use the output tables already created to get the taxonomic composition of our samples. First we need to gather all the output MetaPhlAn2 results per sample into a single directory and then merge them into a single table using MetaPhlAn2&#8217;s <code>merge_metaphlan_tables.py</code> command. After this file is created we can fix the header so that each column corresponds to a sample name without the trailing &#8220;_metaphlan_bugs_list&#8221; description. Note that MetaPhlAn2 works best for well-characterized environments, like the human gut, and has low sensitivity in other environments.</p>
<pre><code>mkdir metaphlan2_out
cp humann2_out/*/*/*metaphlan_bugs_list.tsv metaphlan2_out/
/usr/local/metaphlan2/utils/merge_metaphlan_tables.py metaphlan2_out/*metaphlan_bugs_list.tsv &gt; metaphlan2_merged.txt
sed -i 's/_metaphlan_bugs_list//g' metaphlan2_merged.txt
</code></pre>
<h3><a id="user-content-37-format-stamp-taxonomy-file" class="anchor" href="https://github.com/LangilleLab/microbiome_helper/wiki/Metagenomics-standard-operating-procedure-v2#37-format-stamp-taxonomy-file"></a>3.7 Format STAMP taxonomy file</h3>
<p>Lastly we can convert this MetaPhlAn2 abundance table to STAMP format</p>
<pre><code>metaphlan_to_stamp.pl metaphlan2_merged.txt &gt; metaphlan2_merged.spf</code></pre>
]]></content:encoded>
			<wfw:commentRss>https://www.biofacebook.com/?feed=rss2&#038;p=1527</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Chip seq</title>
		<link>https://www.biofacebook.com/?p=1292</link>
		<comments>https://www.biofacebook.com/?p=1292#comments</comments>
		<pubDate>Thu, 16 Nov 2017 07:46:14 +0000</pubDate>
		<dc:creator><![CDATA[szypanther]]></dc:creator>
				<category><![CDATA[三代测序]]></category>
		<category><![CDATA[生物信息]]></category>

		<guid isPermaLink="false">http://www.biofacebook.com/?p=1292</guid>
		<description><![CDATA[<p>何謂ChIP-Seq?</p> <p>ChIP–seq ( Chromatin immunoprecipitation sequencing )是指染色質免疫沉澱後，所獲得的DNA片段進行高通量定序，並將此片段利用生物資訊的軟體對回至基因體，可以瞭解DNA-binding proteins及histone modifications的狀況，進而得知染色質及相结合的調控因子之間的相互作用關係。</p> <p>ChIP-chip與ChIP-Seq差異?</p> <p>次世代定序較ChIP-chip提供更高的解析度，較少的雜訊，較少的ChIP-DNA的量，及可偵測的動態範圍及基因體範圍較廣，因此可呈現較真實的基因調控及表觀遺傳學現況。</p> <p></p> <p>如何分析ChIP-Seq資料?</p> <p>從次世代定序儀所得到的影像檔，會轉換成核苷酸序列，並計算每個核苷酸的錯誤率，將正確性高的序列對到基因體，找到Peak後，與對照組(通常是Input DNA)比較，利用統計學的計算此Enriched region的錯誤率，之後可進行其它的分析。</p> <p></p> <p>如何找到Protein binding site?</p> <p>DNA是雙股的結構，因此ChIP-Seq是從DNA的5’端定序，會對到基因體的正反股，如下圖可看到藍色序列對到的是正股，紅色序列對到的是反股，因序列的數量畫出常態分佈後找到Peak，而兩者高峰處之間為Protein binding site (可稱為Enriched region)。</p> <p></p> <p>ChIP-Seq對照組</p> <p>(1) Input DNA：免疫沉澱實驗前，取打斷的DNA當對照組，</p> <p>(2) Mock IP DNA：打斷的DNA有經過免疫沈殿的實驗，但沒有加入抗體。</p> <p>(3) Nonspecific IP DNA：打斷的DNA經過免疫沉澱的實驗，但有加入IgG。</p> <p>這3個對照組最常用的是Input DNA，是為了矯正DNA打斷及PCR產生的bias。另外，也可以藉由Input DNA核苷酸序列的數量以及免疫沉澱後的核苷酸序列的數量之間比較，瞭解ChIP的效率，如下圖，而此圖也可以瞭解ChIP-Seq及ChIP-chip差異，前者可獲得高解析度及高敏感性的資料。</p> <p></p> [...]]]></description>
				<content:encoded><![CDATA[<p><strong>何謂</strong><strong><span lang="EN-US">ChIP-Seq?</span></strong></p>
<p><span lang="EN-US">ChIP–seq ( Chromatin immunoprecipitation sequencing )</span><span lang="ZH-CN">是指染色質免疫沉澱後，</span>所獲得的<span lang="EN-US">DNA</span>片段<span lang="ZH-CN">進行</span>高通量<span lang="ZH-CN">定序，</span>並將此片段利用生物資訊的軟體對回至基因體，<span lang="ZH-CN">可以瞭解</span><span lang="EN-US">DNA-binding proteins</span><span lang="ZH-CN">及</span><span lang="EN-US">histone modifications</span><span lang="ZH-CN">的狀況，</span>進而得知<span lang="ZH-CN">染色</span>質<span lang="ZH-CN">及</span>相<span lang="ZH-CN">结合的</span>調控因子<span lang="ZH-CN">之</span>間<span lang="ZH-CN">的相互作用</span>關係。</p>
<p><strong><span lang="EN-US">ChIP-chip</span></strong><strong>與</strong><strong><span lang="EN-US">ChIP-Seq</span></strong><strong>差異</strong><strong><span lang="EN-US">?</span></strong></p>
<p>次世代定序較<span lang="EN-US">ChIP-chip</span>提供更高的解析度，較少的雜訊，較少的<span lang="EN-US">ChIP-DNA</span>的量，及可偵測的動態範圍及基因體範圍較廣，因此可呈現較真實的基因調控及表觀遺傳學現況。</p>
<p><img title="20120914_pic1" src="https://pic.pimg.tw/yourgene/1347845215-798112088_n.png" alt="20120914_pic1" border="0" /></p>
<p><strong>如何分析</strong><strong><span lang="EN-US">ChIP-Seq</span></strong><strong>資料</strong><strong><span lang="EN-US">?</span></strong></p>
<p>從次世代定序儀所得到的影像檔，會轉換成核苷酸序列，並計算每個核苷酸的錯誤率，將正確性高的序列對到基因體，找到<span lang="EN-US">Peak</span>後，與對照組<span lang="EN-US">(</span>通常是<span lang="EN-US">Input DNA)</span>比較，利用統計學的計算此<span lang="EN-US">Enriched region</span>的錯誤率，之後可進行其它的分析。</p>
<p><img src="https://pic.pimg.tw/yourgene/1347845259-2463000820.png" alt="20120914_pic2" /></p>
<p><strong>如何找到</strong><strong><span lang="EN-US">Protein binding site?</span></strong></p>
<p><span lang="EN-US">DNA</span>是雙股的結構，因此<span lang="EN-US">ChIP-Seq</span>是從<span lang="EN-US">DNA</span>的<span lang="EN-US">5’</span>端定序，會對到基因體的正反股，如下圖可看到藍色序列對到的是正股，紅色序列對到的是反股，因序列的數量畫出常態分佈後找到<span lang="EN-US">Peak</span>，而兩者高峰處之間為<span lang="EN-US">Protein binding site (</span>可稱為<span lang="EN-US">Enriched region)</span>。</p>
<p><img src="https://pic.pimg.tw/yourgene/1347845378-4117750393_n.png" alt="20120914_pic3" /></p>
<p><strong><span lang="EN-US">ChIP-Seq</span></strong><strong>對照組</strong></p>
<p><span lang="EN-US">(1)   </span><span lang="EN-US">Input DNA</span>：免疫沉澱實驗前，取打斷的<span lang="EN-US">DNA</span>當對照組，</p>
<p><span lang="EN-US">(2)   </span><span lang="EN-US">Mock IP DNA</span>：打斷的<span lang="EN-US">DNA</span>有經過免疫沈殿的實驗，但沒有加入抗體。</p>
<p><span lang="EN-US">(3)   </span><span lang="EN-US">Nonspecific IP DNA</span>：打斷的<span lang="EN-US">DNA</span>經過免疫沉澱的實驗，但有加入<span lang="EN-US">IgG</span>。</p>
<p>這<span lang="EN-US">3</span>個對照組最常用的是<span lang="EN-US">Input DNA</span>，是為了矯正<span lang="EN-US">DNA</span>打斷及<span lang="EN-US">PCR</span>產生的<span lang="EN-US">bias</span>。另外，也可以藉由<span lang="EN-US">Input</span><span lang="EN-US"> DNA</span>核苷酸<span lang="ZH-CN">序列的</span>數<span lang="ZH-CN">量以及</span>免疫沉澱後<span lang="ZH-CN">的</span>核苷酸<span lang="ZH-CN">序列的</span>數<span lang="ZH-CN">量</span>之間比較<span lang="ZH-CN">，</span>瞭解<span lang="EN-US">ChIP</span><span lang="ZH-CN">的效率，如下圖，</span>而<span lang="ZH-CN">此圖也可以瞭解</span><span lang="EN-US">ChIP-Seq</span><span lang="ZH-CN">及</span><span lang="EN-US">ChIP-chip</span><span lang="ZH-CN">差異，前者可獲得高解析度及高敏感性的資料。</span></p>
<p><img src="https://pic.pimg.tw/yourgene/1347845415-181470900_n.png" alt="20120914_pic4" /></p>
]]></content:encoded>
			<wfw:commentRss>https://www.biofacebook.com/?feed=rss2&#038;p=1292</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Illumina MiSeq 与GS FLX/Junior、Ion Torrent PGM性能比较</title>
		<link>https://www.biofacebook.com/?p=675</link>
		<comments>https://www.biofacebook.com/?p=675#comments</comments>
		<pubDate>Tue, 08 Jan 2013 02:35:24 +0000</pubDate>
		<dc:creator><![CDATA[szypanther]]></dc:creator>
				<category><![CDATA[三代测序]]></category>
		<category><![CDATA[二代测序]]></category>
		<category><![CDATA[生物信息]]></category>
		<category><![CDATA[NGS]]></category>

		<guid isPermaLink="false">http://www.biofacebook.com/?p=675</guid>
		<description><![CDATA[Illumina MiSeq 与GS FLX/Junior性能比较表 <p> </p> <p align="center">Illumina MiSeq</p> <p align="center">GS FLX/Junior</p> 实验流程和周期 提供最快的二代测序的实验流程， 可在8小时内完成从DNA样本其实到分析后的数据，比GS FLX/Junior快5倍。流程包括：l 文库制备：1.5小时，使用快速、transposon-based Nextera方法</p> <p>l 在一个仪器系统内、以不到4.5小时（1 X 36 bp）的时间完成从自动话的簇生成到测序</p> <p>l 在同一个仪器系统内，以不到2小时的时间完成初级和次级测序数据分析</p> <p>l 2 X 150 bp运行约需27小时* GS FLX/Junior 完整实验流程需要几天，包括：l 建库: 1 天</p> <p>l emPCR: off-instrument and labor-intensive, 2-3 天手工操作</p> <p>l 测序：10 hours</p> <p>l 初级和次级测序数据分析8小时(GS FLX), &#62;2 小时(GS Junior) 通量 最高通量的个人化测序仪：l 每次运行可产出1-1.5 [...]]]></description>
				<content:encoded><![CDATA[<h1 align="center"><span style="font-family: Calibri;">Illumina MiSeq</span><span style="font-size: medium;"> 与</span><span style="font-family: Calibri;">GS FLX/Junior</span><span style="font-size: medium;">性能比较表</span></h1>
<p><span style="font-family: Calibri;"> <wbr></wbr></span></p>
<table border="1" cellspacing="0" cellpadding="0">
<thead>
<tr>
<td valign="top" width="92"><strong><span style="font-family: Calibri;"> <wbr></wbr></span></strong></td>
<td valign="top" width="458">
<p align="center"><strong><span style="font-family: Calibri;">Illumina MiSeq</span></strong></p>
</td>
<td valign="top" width="392">
<p align="center"><strong><span style="font-family: Calibri;">GS FLX/Junior</span></strong></p>
</td>
</tr>
</thead>
<tbody>
<tr>
<td valign="top" width="92">实验流程和周期</td>
<td valign="top" width="458">提供最快的二代测序的实验流程， 可在<span style="font-family: Calibri;">8</span>小时内完成从<span style="font-family: Calibri;">DNA</span>样本其实到分析后的数据，比<strong><span style="font-family: Calibri;">GS FLX/Junior</span></strong>快<span style="font-family: Calibri;">5</span>倍。流程包括：<span style="font-family: Wingdings;">l</span> <wbr> <wbr> 文库制备：<span style="font-family: Calibri;">1.5</span>小时，使用快速、<span style="font-family: Calibri;">transposon-based Nextera</span>方法</wbr></wbr></p>
<p><span style="font-family: Wingdings;">l</span> <wbr> <wbr> 在一个仪器系统内、以不到<span style="font-family: Calibri;">4.5</span>小时（<span style="font-family: Calibri;">1 X 36 bp</span>）的时间完成从自动话的簇生成到测序</wbr></wbr></p>
<p><span style="font-family: Wingdings;">l</span> <wbr> <wbr> 在同一个仪器系统内，以不到<span style="font-family: Calibri;">2</span>小时的时间完成初级和次级测序数据分析</wbr></wbr></p>
<p><span style="font-family: Wingdings;">l</span> <wbr> <wbr> <span style="font-family: Calibri;">2 X 150 bp</span>运行约需<span style="font-family: Calibri;">27</span>小时<span style="font-family: Calibri;">*</span></wbr></wbr></td>
<td valign="top" width="392"><span style="font-family: Calibri;">GS FLX/Junior</span> 完整实验流程需要几天，包括：<span style="font-family: Wingdings;">l</span> <wbr> <wbr> 建库<span style="font-family: Calibri;">: 1</span> 天</wbr></wbr></p>
<p><span style="font-family: Wingdings;">l</span> <wbr> <wbr> <span style="font-family: Calibri;">emPCR: off-instrument and labor-intensive, 2-3</span> 天手工操作</wbr></wbr></p>
<p><span style="font-family: Wingdings;">l</span> <wbr> <wbr> 测序：<span style="font-family: Calibri;">10 hours</span></wbr></wbr></p>
<p><span style="font-family: Wingdings;">l</span> <wbr> <wbr> 初级和次级测序数据分析<span style="font-family: Calibri;">8</span>小时<span style="font-family: Calibri;">(GS FLX), &gt;2</span> 小时<span style="font-family: Calibri;">(GS Junior)</span></wbr></wbr></td>
</tr>
<tr>
<td valign="top" width="92">通量</td>
<td valign="top" width="458">最高通量的个人化测序仪：<span style="font-family: Wingdings;">l</span> <wbr> <wbr> 每次运行可产出<span style="font-family: Calibri;">1-1.5 Gb</span>数据，以及<span style="font-family: Calibri;">6.8 M PE Reads</span></wbr></wbr></p>
<p><span style="font-family: Wingdings;">l</span> <wbr> <wbr> 通量和读取数适合一系列广泛的重要应用，如：靶向<span style="font-family: Calibri;">/</span>扩增子测序、小基因组测序、<span style="font-family: Calibri;">ChIP-Seq</span>和<span style="font-family: Calibri;">small RNA</span></wbr></wbr></td>
<td valign="top" width="392"><span style="font-family: Wingdings;">l</span> <wbr> <wbr> 每次测序可产生<span style="font-family: Calibri;">0.5G/1M reads (GS FLX)</span>或<span style="font-family: Calibri;">35M/100k reads (GS Junior)</span><span style="font-family: Calibri;"> <wbr></wbr></span></p>
<p></wbr></wbr></td>
</tr>
<tr>
<td valign="top" width="92">读长</td>
<td valign="top" width="458"><span style="font-family: Wingdings;">l</span> <wbr> <wbr> <span style="font-family: Calibri;">MiSeq</span>可进行<span style="font-family: Calibri;">2 X 150 bp</span>的<span style="font-family: Calibri;">paired end</span>读取，这项功能可以帮助开展一系列重要的应用，如：小基因组的<span style="font-family: Calibri;">de novo assembly</span>、结构变异检测，以及将读取<span style="font-family: Calibri;">map</span>到重复区域等<span style="font-family: Wingdings;">l</span> <wbr> <wbr> 可进行<span style="font-family: Calibri;">2 X 150 bp</span>重叠读取，这样可产生达到<span style="font-family: Calibri;">275 bp</span>的高精度、高灵敏的“连续”读取</wbr></wbr></p>
<p></wbr></wbr></td>
<td valign="top" width="392"><span style="font-family: Wingdings;">l</span> <wbr> <wbr> <span style="font-family: Calibri;">400bp</span></wbr></wbr></td>
</tr>
<tr>
<td valign="top" width="92">化学原理</td>
<td valign="top" width="458"><span style="font-family: Wingdings;">l</span> <wbr> <wbr> <span style="font-family: Calibri;">Illumina SBS</span>化学试剂可以提供最高产出的<span style="font-family: Calibri;">prefect reads</span>和大于<span style="font-family: Calibri;">Q30 (99.9%</span>准确率<span style="font-family: Calibri;">)</span> 的碱基序列<span style="font-family: Wingdings;">l</span> <wbr> <wbr> 读取质量不受重复碱基区域影响</wbr></wbr></p>
<p><span style="font-family: Wingdings;">l</span> <wbr> <wbr> 在二代测序领域，<span style="font-family: Calibri;">Illumina</span>的<span style="font-family: Calibri;">SBS</span>化学原理是最广泛验证的技术，且具有最多的文献支持</wbr></wbr></p>
<p></wbr></wbr></td>
<td valign="top" width="392"><span style="font-family: Wingdings;">l</span> <wbr> <wbr> 焦磷酸<span style="font-family: Calibri;">(Pyrosequencing)</span>化学原理，在检测重复序列区域时错误率高<span style="font-family: Wingdings;">l</span> <wbr> <wbr> 无法准确测出连续超过<span style="font-family: Calibri;">8</span>个相同碱基</wbr></wbr></p>
<p></wbr></wbr></td>
</tr>
<tr>
<td valign="top" width="92">系统性价比运行费用</td>
<td valign="top" width="458"><span style="font-family: Wingdings;">l</span> <wbr> <wbr> 整机价格包含所有测序运行和数据分析所需的硬件，无隐含费用<span style="font-family: Wingdings;">l</span> <wbr> <wbr> 根据读长的不同，运行成本小于<span style="font-family: Calibri;">$1000</span></wbr></wbr></p>
<p>与<strong><span style="font-family: Calibri;">GS FLX/Junior</span></strong>相比具有最低的每<span style="font-family: Calibri;">Mb</span>数据成本</p>
<p></wbr></wbr></td>
<td valign="top" width="392">除了<span style="font-family: Calibri;">GS FLX/Junior</span> 整机的价格外，还需如下配套仪器<span style="font-family: Wingdings;">l</span> <wbr> <wbr> <span style="font-family: Calibri;">BioAnalyzer 2100 &#8211; $20-30K</span></wbr></wbr></p>
<p><span style="font-family: Wingdings;">l</span> <wbr> <wbr> <span style="font-family: Calibri;">TBS 380 Fluorometer – $10K</span></wbr></wbr></p>
<p><span style="font-family: Wingdings;">l</span> <wbr> <wbr> <span style="font-family: Calibri;">Coulter Counter &#8211; $18K</span></wbr></wbr></p>
<p><span style="font-family: Wingdings;">l</span> <wbr> <wbr> <span style="font-family: Calibri;">emPCR Preparation System &#8211; &gt;$30K</span></wbr></wbr></p>
<p><span style="font-family: Wingdings;">l</span> <wbr> <wbr> 运行成本<span style="font-family: Calibri;">$1000-10000</span></wbr></wbr></p>
<p><span style="font-family: Wingdings;">l</span> <wbr> <wbr> <span style="font-family: Calibri;">GS FLX</span> 还需另购计算机服务器</wbr></wbr></td>
</tr>
<tr>
<td valign="top" width="92">应用</td>
<td valign="top" width="458"><span style="font-family: Wingdings;">l</span> <wbr> <wbr> <span style="font-family: Calibri;">Amplicon sequencing ; Targeted resequencing</span><span style="font-family: Wingdings;">l</span> <wbr> <wbr> <span style="font-family: Calibri;">Small Genome Sequencing (&lt;20Mb de novo per run )</span></wbr></wbr></p>
<p><span style="font-family: Wingdings;">l</span> <wbr> <wbr> <span style="font-family: Calibri;">ChIp-Seq; RNA – Seq; Metagenomics (16S)</span></wbr></wbr></p>
<p><span style="font-family: Wingdings;">l</span> <wbr> <wbr> <span style="font-family: Calibri;">cDNA/transcriptome sequencing</span></wbr></wbr></p>
<p></wbr></wbr></td>
<td valign="top" width="392"><span style="font-family: Wingdings;">l</span> <wbr> <wbr> <span style="font-family: Calibri;">Amplicon sequencing</span><span style="font-family: Wingdings;">l</span> <wbr> <wbr> <span style="font-family: Calibri;">Small Genome Sequencing ( &lt;10 Mb de novo per run for GS FLX; &lt;2 Mb de novo per run for GS Junior)</span></wbr></wbr></p>
<p><span style="font-family: Wingdings;">l</span> <wbr> <wbr> <span style="font-family: Calibri;">Metagenomics/pathogen detection</span></wbr></wbr></p>
<p><span style="font-family: Wingdings;">l</span> <wbr> <wbr> <span style="font-family: Calibri;">cDNA/transcriptome sequencing</span></wbr></wbr></p>
<p></wbr></wbr></td>
</tr>
<tr>
<td valign="top" width="92">靶向重测序</td>
<td valign="top" width="458"><span style="font-family: Calibri;">Illumina</span>可以提供广泛、优化的靶向重测序解决方案：<span style="font-family: Wingdings;">l</span> <wbr> <wbr> <span style="font-family: Calibri;">PCR</span>扩增：快速的基于<span style="font-family: Calibri;">Nextera</span>的文库制备（<span style="font-family: Calibri;">90</span>分钟）和<span style="font-family: Calibri;">36 bp</span>测序适合几十个区段的测序，区域和样本可以进行多重分析</wbr></wbr></p>
<p><span style="font-family: Wingdings;">l</span> <wbr> <wbr> 高度多重的扩增子和样本：使用<span style="font-family: Calibri;">TruSeq Custom Amplicon Kit</span>短至<span style="font-family: Calibri;">8</span>小时的流程 <span style="font-family: Calibri;">(</span>每样本几百个靶向区域<span style="font-family: Calibri;">)</span>，比毛细管电泳测序便宜几十倍</wbr></wbr></p>
<p><span style="font-family: Wingdings;">l</span> <wbr> <wbr> 通过杂交捕获方式的<span style="font-family: Calibri;">TruSeq Custom Enrichment</span>（<span style="font-family: Calibri;">1-10Mb</span>）：目前性价比最高的方法，从样本池中预先进行富集，以实现高效的流程并缩短运行时间</wbr></wbr></p>
<p><span style="font-family: Wingdings;">l</span> <wbr> <wbr> <span style="font-family: Calibri;">Illumina</span>提供相应的试剂盒，以支持以上应用</wbr></wbr></td>
<td valign="top" width="392"><span style="font-family: Wingdings;">l</span> <wbr> <wbr> 需第三方试剂及仪器</wbr></wbr></td>
</tr>
</tbody>
</table>
<p><span style="font-family: Calibri;"> <wbr></wbr></span></p>
<p>&nbsp;</p>
<h1 align="center"><span style="font-size: medium;"><span style="font-family: Calibri;">Illumina MiSeq</span>与<span style="font-family: Calibri;">Ion Torrent PGM</span>性能比较表</span></h1>
<p><span style="font-family: Calibri;"> <wbr></wbr></span></p>
<p>&nbsp;</p>
<table border="1" cellspacing="0" cellpadding="0">
<thead>
<tr>
<td valign="top" width="158"><strong><span style="font-family: Calibri;"> <wbr></wbr></span></strong></td>
<td valign="top" width="392"><strong><span style="font-family: Calibri;">Illumina MiSeq</span></strong></td>
<td valign="top" width="392"><strong><span style="font-family: Calibri;">Ion Torrent PGM</span></strong></td>
</tr>
</thead>
<tbody>
<tr>
<td valign="top" width="158">实验周期</td>
<td valign="top" width="392">提供最快的二代测序的实验流程，可在<span style="font-family: Calibri;">8</span>小时内完成从<span style="font-family: Calibri;">DNA</span>样本其实到分析后的数据，比<span style="font-family: Calibri;">Ion Torrent</span>快<span style="font-family: Calibri;">5</span>倍。流程包括：<span style="font-family: Wingdings;">l</span> <wbr> 文库制备：<span style="font-family: Calibri;">1.5</span>小时，使用快速、<span style="font-family: Calibri;">transposon-based Nextera</span>方法</wbr></p>
<p><span style="font-family: Wingdings;">l</span> <wbr> 在一个仪器系统内、以不到<span style="font-family: Calibri;">4.5</span>小时（<span style="font-family: Calibri;">1 X 36 bp</span>）的时间完成从自动话的簇生成到测序</wbr></p>
<p><span style="font-family: Wingdings;">l</span> <wbr> 在一个仪器系统内，以不到<span style="font-family: Calibri;">2</span>小时的时间完成初级和次级分析</wbr></p>
<p><span style="font-family: Wingdings;">l</span> <wbr> <span style="font-family: Calibri;">2 X 150 bp</span>运行约需<span style="font-family: Calibri;">27</span>小时<span style="font-family: Calibri;">*</span></wbr></td>
<td valign="top" width="392">整个实验流程需要数天时间，包括：<span style="font-family: Wingdings;">l</span> <wbr> 文库制备：<span style="font-family: Calibri;">1</span>天，且需要大量的手工操作</wbr></p>
<p><span style="font-family: Wingdings;">l</span> <wbr> <span style="font-family: Calibri;">ePCR:</span> 在主机外进行，且需要大量手工操作，手动实验需<span style="font-family: Calibri;">3</span>天，半自动操作需<span style="font-family: Calibri;">1-2</span>天</wbr></p>
<p><span style="font-family: Wingdings;">l</span> <wbr> 测序：<span style="font-family: Calibri;">2</span>小时</wbr></p>
<p><span style="font-family: Wingdings;">l</span> <wbr> 仪器外的初级和次级数据分析：<span style="font-family: Calibri;">1</span>天，使用第三方软件，并且需要<span style="font-family: Calibri;">$16.5k</span>的服务器</wbr></td>
</tr>
<tr>
<td valign="top" width="158">操作流程</td>
<td valign="top" width="392"><span style="font-family: Wingdings;">l</span> <wbr> 通过触摸屏方便地控制仪器操作<span style="font-family: Wingdings;">l</span> <wbr> 最简捷的样本准备流程：采用<span style="font-family: Calibri;">Nextera</span>文库制备方法仅需<span style="font-family: Calibri;">15</span>分钟手动操作时间</wbr></p>
<p><span style="font-family: Wingdings;">l</span> <wbr> 即插即用型试剂：预混与预装的<span style="font-family: Calibri;">14:20</span>，进行解冻，放入仪器即可运行</wbr></p>
<p><span style="font-family: Wingdings;">l</span> <wbr> <span style="font-family: Calibri;">1</span>小时内在同一台仪器上完成簇生成，无需复杂的<span style="font-family: Calibri;">emulsion PCR</span></wbr></p>
<p><span style="font-family: Wingdings;">l</span> <wbr> 在同一台机器上完成碱基读取、<span style="font-family: Calibri;">alignment</span>和变异检出</wbr></p>
<p><span style="font-family: Wingdings;">l</span> <wbr> <span style="font-family: Calibri;">RFID</span>追踪试剂耗材：自动将信息载入仪器</wbr></p>
<p><span style="font-family: Wingdings;">l</span> <wbr> 从簇生成到数据分析整个流程仅需<span style="font-family: Calibri;">20</span>分钟的手动操作时间</wbr></p>
<p></wbr></td>
<td valign="top" width="392"><span style="font-family: Wingdings;">l</span> <wbr> 复杂的操作流程：使用多个仪器进行的操作流程，更多出现失误的可能<span style="font-family: Wingdings;">l</span> <wbr> 耗时的文库制备流程：有限的可选方案</wbr></p>
<p><span style="font-family: Wingdings;">l</span> <wbr> <span style="font-family: Calibri;">Emulsion PCR</span>复杂且困难的扩增步骤：操作复杂且容易出错</wbr></p>
<p><span style="font-family: Wingdings;">l</span> <wbr> 无<span style="font-family: Calibri;">Paired-End</span>测序，仪器的可用性和应用范围大大受限</wbr></p>
<p><span style="font-family: Wingdings;">l</span> <wbr> 手动数据分析：用户必须转变输出文件格式，以用于变异检出或其他生物学有意义的结果</wbr></p>
<p></wbr></td>
</tr>
<tr>
<td valign="top" width="158">通量</td>
<td valign="top" width="392">最高通量的个人化测序仪：<span style="font-family: Wingdings;">l</span> <wbr> 每次运行可产出<span style="font-family: Calibri;">&gt;1 Gb</span>数据，以及<span style="font-family: Calibri;">&gt;6M PE Reads</span></wbr></p>
<p><span style="font-family: Wingdings;">l</span> <wbr> 通量和读取数适合一系列广泛的重要应用，如：靶向<span style="font-family: Calibri;">/</span>扩增子测序、小基因组测序、<span style="font-family: Calibri;">ChIP-Seq</span>和<span style="font-family: Calibri;">small RNA</span></wbr></td>
<td valign="top" width="392"><span style="font-family: Wingdings;">l</span> <wbr> 计划在<span style="font-family: Calibri;">2011</span>年第一季度达到<span style="font-family: Calibri;">100 Mb</span>通量（目前为<span style="font-family: Calibri;">10 Mb</span>），受限的通量无法进行许多重要的应用<span style="font-family: Wingdings;">l</span> <wbr> 读取数量有限，不适合计数类型的应用，如：<span style="font-family: Calibri;">small RNA</span>和<span style="font-family: Calibri;">ChIP-Seq</span></wbr></p>
<p></wbr></td>
</tr>
<tr>
<td valign="top" width="158">化学原理</td>
<td valign="top" width="392"><span style="font-family: Wingdings;">l</span> <wbr> <span style="font-family: Calibri;">Illumina SBS</span>化学试剂可以提供最高产出的<span style="font-family: Calibri;">prefect reads</span>和大于<span style="font-family: Calibri;">Q30</span>的碱基<span style="font-family: Wingdings;">l</span> <wbr> 读取质量不受重复碱基区域影响</wbr></p>
<p><span style="font-family: Wingdings;">l</span> <wbr> 在二代测序领域，<span style="font-family: Calibri;">Illumina</span>的<span style="font-family: Calibri;">SBS</span>化学原理是最广泛验证的技术，且具有最多的文献支持</wbr></p>
<p></wbr></td>
<td valign="top" width="392"><span style="font-family: Wingdings;">l</span> <wbr> 与<span style="font-family: Calibri;">Pyrosequencing</span>和<span style="font-family: Calibri;">454</span>相似的化学原理，在检测重复序列区域时错误率高<span style="font-family: Wingdings;">l</span> <wbr> 未经验证的技术，没有文献支持</wbr></p>
<p></wbr></td>
</tr>
<tr>
<td valign="top" width="158">是否支持<span style="font-family: Calibri;">Paired End</span>测序</td>
<td valign="top" width="392"><span style="font-family: Wingdings;">l</span> <wbr> <span style="font-family: Calibri;">MiSeq</span>可进行<span style="font-family: Calibri;">2 X 150 bp</span>的<span style="font-family: Calibri;">paired end</span>读取，这项功能可以帮助开展一系列重要的应用，如：小基因组的<span style="font-family: Calibri;">de novo assembly</span>、结构变异检测，以及将读取<span style="font-family: Calibri;">map</span>到重复区域等<span style="font-family: Wingdings;">l</span> <wbr> 可进行<span style="font-family: Calibri;">2 X 150 bp</span>重叠读取，这样可产生达到<span style="font-family: Calibri;">275 bp</span>的高精度、高灵敏的“连续”读取</wbr></p>
<p></wbr></td>
<td valign="top" width="392">不支持<span style="font-family: Calibri;">PE</span>测序，严重限制了仪器的可用性和应用范围</td>
</tr>
<tr>
<td valign="top" width="158">应用范围</td>
<td valign="top" width="392">应用灵活，支持广泛的传统毛细管电泳测序和二代测序的一系列应用：<span style="font-family: Wingdings;">l</span> <wbr> 扩增子测序</wbr></p>
<p><span style="font-family: Wingdings;">l</span> <wbr> 靶向重测序</wbr></p>
<p><span style="font-family: Wingdings;">l</span> <wbr> <span style="font-family: Calibri;">Clone Checking</span></wbr></p>
<p><span style="font-family: Wingdings;">l</span> <wbr> 小基因组测序（<span style="font-family: Calibri;">de nove/</span>重测序，<span style="font-family: Calibri;">&lt;20Mb</span>）</wbr></p>
<p><span style="font-family: Wingdings;">l</span> <wbr> <span style="font-family: Calibri;">ChIP-Seq</span></wbr></p>
<p><span style="font-family: Wingdings;">l</span> <wbr> 小<span style="font-family: Calibri;">RNA</span>测序</wbr></p>
<p><span style="font-family: Wingdings;">l</span> <wbr> 宏基因组（<span style="font-family: Calibri;">16S</span>）</wbr></p>
<p><span style="font-family: Wingdings;">l</span> <wbr> 以及更多应用……</wbr></td>
<td valign="top" width="392">有限的数据产出、低的检测精度、以及缺乏<span style="font-family: Calibri;">paired end</span>测序支持，应用非常受限</td>
</tr>
<tr>
<td valign="top" width="158">系统性价比</td>
<td valign="top" width="392"><span style="font-family: Wingdings;">l</span> <wbr> 整机价格包含所有测序运行和数据分析所需的硬件，无隐含费用<span style="font-family: Wingdings;">l</span> <wbr> 根据读长的不同，运行成本小于<span style="font-family: Calibri;">$1000</span></wbr></p>
<p><span style="font-family: Wingdings;">l</span> <wbr> 与<span style="font-family: Calibri;">Ion Torrent</span>相比具有最低的每<span style="font-family: Calibri;">Mb</span>数据成本</wbr></p>
<p></wbr></td>
<td valign="top" width="392">除主机外需要一系列的辅助仪器：<span style="font-family: Wingdings;">l</span> <wbr> <span style="font-family: Calibri;">Ion Torrent PGM</span>：<span style="font-family: Calibri;">$50k</span></wbr></p>
<p><span style="font-family: Wingdings;">l</span> <wbr> <span style="font-family: Calibri;">Torrent Server: $16.5k</span></wbr></p>
<p><span style="font-family: Wingdings;">l</span> <wbr> <span style="font-family: Calibri;">Bioruptor &#8211; $20K</span>用于<span style="font-family: Calibri;">DNA</span>片段化</wbr></p>
<p><span style="font-family: Wingdings;">l</span> <wbr> <span style="font-family: Calibri;">Sample Preparation Library Builder? System (EZ Bead?</span>具体价格？<span style="font-family: Calibri;">)</span></wbr></p>
<p><span style="font-family: Wingdings;">l</span> <wbr> 相同数据量运行成本高于<span style="font-family: Calibri;">8000</span>美金<span style="font-family: Calibri;">.</span></wbr></td>
</tr>
<tr>
<td valign="top" width="158">仪器体积</td>
<td valign="top" width="392"><span style="font-family: Wingdings;">l</span> <wbr> 整个系统可以方便的适合标准的实验室台面：约<span style="font-family: Calibri;">2</span>平方英尺占地面积<span style="font-family: Wingdings;">l</span> <wbr> 整合的系统，用于簇生成、<span style="font-family: Calibri;">paired-end</span>测序、初级和次级分析</wbr></p>
<p><span style="font-family: Wingdings;">l</span> <wbr> 无需<span style="font-family: Calibri;">emulsion PCR</span>：无需单独的<span style="font-family: Calibri;">clean room</span>或是通风橱</wbr></p>
<p></wbr></td>
<td valign="top" width="392"><span style="font-family: Wingdings;">l</span> <wbr> 虽然仪器主机体积比较小，但<span style="font-family: Calibri;">emulsion PCR</span>需要较大空间<span style="font-family: Wingdings;">l</span> <wbr> 参考<span style="font-family: Calibri;">emulsion PCR</span>流程，需要多个房间进行实验</wbr></p>
<p><span style="font-family: Wingdings;">l</span> <wbr> <span style="font-family: Calibri;">SOLiD 4 &#8211; (2 required; 3 recommended) (SPG, 4/10)</span></wbr></p>
<p><wbr> <wbr> <wbr> <wbr> <wbr> <wbr> <wbr> <wbr> <wbr> <wbr> <wbr> <wbr> <wbr> Room 1 – library preparation (amplicon free room)</wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></p>
<p><wbr> <wbr> <wbr> <wbr> <wbr> <wbr> <wbr> <wbr> <wbr> <wbr> <wbr> <wbr> <wbr> Room 2 –emulsion PCR, bead, and slide preparation</wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></p>
<p>Room 3 – sequencing room</p>
<p><span style="font-family: Wingdings;">l</span> <wbr> Roche FLX (4 rooms) (SPG, 4/09)</wbr></p>
<p><wbr> <wbr> <wbr> <wbr> <wbr> <wbr> <wbr> <wbr> <wbr> <wbr> <wbr> <wbr> <wbr> Room 1 – library preparation (amplicon free room)</wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></p>
<p><wbr> <wbr> <wbr> <wbr> <wbr> <wbr> <wbr> <wbr> <wbr> <wbr> <wbr> <wbr> <wbr> Room 2 –DNA library capture, emulsification, emulsion <span style="font-family: Calibri;"> <wbr> <wbr>dispense</wbr></wbr></span></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></p>
<p><wbr> <wbr> <wbr> <wbr> <wbr> <wbr> <wbr> <wbr> <wbr> <wbr> <wbr> <wbr> <wbr> Room 3 – ePCR amplification, bead recovery and enrichment, primer annealing</wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></p>
<p><wbr> <wbr> <wbr> <wbr> <wbr> <wbr> <wbr> <wbr> <wbr> Room 4 &#8211; Sequencing</wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></p>
<p></wbr></td>
</tr>
<tr>
<td valign="top" width="158">靶向重测序</td>
<td valign="top" width="392"><span style="font-family: Calibri;">Illumina</span>可以提供广泛、优化的靶向重测序解决方案：<span style="font-family: Wingdings;">l</span> <wbr> <span style="font-family: Calibri;">PCR</span>扩增：快速的基于<span style="font-family: Calibri;">Nextera</span>的文库制备（<span style="font-family: Calibri;">90</span>分钟）和<span style="font-family: Calibri;">36 bp</span>测序适合几十个区段的测序，区域和样本可以进行多重分析</wbr></p>
<p><span style="font-family: Wingdings;">l</span> <wbr> 高度多重的扩增子和样本：使用<span style="font-family: Calibri;">TruSeq Custom Amplicon Kit</span>短至<span style="font-family: Calibri;">8</span>小时的流程（每样本几百个靶向区域），比毛细管电泳测序便宜<span style="font-family: Calibri;">10</span>多倍</wbr></p>
<p><span style="font-family: Wingdings;">l</span> <wbr> 通过杂交捕获方式的<span style="font-family: Calibri;">TruSeq Custom Enrichment</span>（<span style="font-family: Calibri;">1-10Mb</span>）：目前性价比最高的方法，从样本池中预先进行富集，以实现高效的流程并缩短运行时间</wbr></p>
<p><span style="font-family: Wingdings;">l</span> <wbr> <span style="font-family: Calibri;">Illumina</span>提供相应的试剂盒，以支持以上应用</wbr></td>
<td valign="top" width="392"><span style="font-family: Wingdings;">l</span> <wbr> 需要第三方的试剂支持，很难保证优化的实验结果</wbr></td>
</tr>
</tbody>
</table>
]]></content:encoded>
			<wfw:commentRss>https://www.biofacebook.com/?feed=rss2&#038;p=675</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>第三代测序技术</title>
		<link>https://www.biofacebook.com/?p=517</link>
		<comments>https://www.biofacebook.com/?p=517#comments</comments>
		<pubDate>Thu, 23 Aug 2012 01:50:50 +0000</pubDate>
		<dc:creator><![CDATA[szypanther]]></dc:creator>
				<category><![CDATA[三代测序]]></category>
		<category><![CDATA[NGS]]></category>

		<guid isPermaLink="false">http://www.biofacebook.com/?p=517</guid>
		<description><![CDATA[<p>如果有人告诉你用显微镜实时观测单分子DNA聚合酶复制DNA，并用它来测序，你一定会 认为他异想天开，没有一点生物的sense。 我最初就是这样认为的，然而它不仅可以实现，而且已经实现了！这个就是被称为第三 代的测序技术，Pacific Biosciences公司推出的“Single Molecule Real Time (SMRT &#38;trade;) DNA Sequencing”（单分子实时DNA测序）。 我有幸在NIH听到了这个技术发明人Stephen Turner博士的讲座，根据自己粗浅的理解 记录整理一下。</p> <p>要实现单分子实时测序，有三个关键的技术。 第一个是荧光标记的脱氧核苷酸。显微镜现在再厉害，也不可能真的实时看到“单分子 ”。但是它可以实时记录荧光的强度变化。当荧光标记的脱氧核苷酸被掺入DNA链的时 候，它的荧光就同时能在DNA链上探测到。当它与DNA链形成化学键的时候，它的荧光基 团就被DNA聚合酶切除，荧光消失。这种荧光标记的脱氧核苷酸不会影响DNA聚合酶的活 性，并且在荧光被切除之后，合成的DNA链和天然的DNA链完全一样。 第二个是纳米微孔。因为在显微镜实时记录DNA链上的荧光的时候，DNA链周围的众多的 荧光标记的脱氧核苷酸形成了非常强大的荧光背景。这种强大的荧光背景使单分子的荧 光探测成为不可能。Pacific Biosciences公司发明了一种直径只有几十纳米的纳米孔[ zero-mode waveguides (ZMWs)]，单分子的DNA聚合酶被固定在这个孔内。在这么小的 孔内，DNA链周围的荧光标记的脱氧核苷酸有限，而且由于A，T，C，G这四种荧光标记 的脱氧核苷酸非常快速地从外面进入到孔内又出去，它们形成了非常稳定的背景荧光信 号。而当某一种荧光标记的脱氧核苷酸被掺入到DNA链时，这种特定颜色的荧光会持续 一小段时间，直到新的化学键形成，荧光基团被DNA聚合酶切除为止（见图）。 第三个是共聚焦显微镜实时地快速地对集成在板上的无数的纳米小孔同时进行记录。由 于我对显微原理的物理知识匮乏，而Pacific Biosciences公司又没有非常强调在这方 面的发明，不做进一步探讨。</p> <p>他们还对这一技术进行进一步的优化。 第一个是把双链DNA环化反复测序。人们可以在双链DNA的两头连上发夹结构的DNA adaptor，从而使DNA环化。而DNA聚合酶就能够以环化的DNA作为模板滚环复制，反复测 一段DNA序列。这种反复测序，纠正了偶尔出现的复制错误，从而使测序精度非常高。 第二个是激发光中断测序法。DNA聚合酶虽然很稳定，但是在强大的激发光作用下酶也 是有一定寿命的。如果把激发光中断一段时间，在这段时间内DNA聚合酶继续复制DNA， 当激发光重新开启以后，人们就可以测到长DNA链后面的序列。</p> <p>第三代测序技术非常可怕。1、它实现了DNA聚合酶内在自身的反应速度，一秒可以测10 个碱基，测序速度是化学法测序的2万倍。2、它实现了DNA聚合酶内在自身的 processivity（延续性，也就是DNA聚合酶一次可以合成很长的片段），一个反应就可 以测非常长的序列。 二代测序现在可以测到上百个碱基，但是三代测序现在就可以测 几千个碱基。这为基因组的重复序列的拼接提供了非常好的条件。3、它的精度非常高 ，达到99.9999%。 此外，它还有两个应用是二代测序所不具备的。 第一个是直接测RNA的序列。既然DNA聚合酶能够实时观测，那么以RNA为模板复制DNA的 逆转录酶也同样可以。RNA的直接测序，将大大降低体外逆转录产生的系统误差。 第二个是直接测甲基化的DNA序列。实际上DNA聚合酶复制A、T、C、G的速度是不一样的 。正常的C或者甲基化的C为模板，DNA聚合酶停顿的时间不同。根据这个不同的时间， [...]]]></description>
				<content:encoded><![CDATA[<p>如果有人告诉你用显微镜实时观测单分子DNA聚合酶复制DNA，并用它来测序，你一定会<br />
认为他异想天开，没有一点生物的sense。<br />
我最初就是这样认为的，然而它不仅可以实现，而且已经实现了！这个就是被称为第三<br />
代的测序技术，Pacific Biosciences公司推出的“Single Molecule Real Time (SMRT<br />
&amp;trade;) DNA Sequencing”（单分子实时DNA测序）。<br />
我有幸在NIH听到了这个技术发明人Stephen Turner博士的讲座，根据自己粗浅的理解<br />
记录整理一下。</p>
<p>要实现单分子实时测序，有三个关键的技术。<br />
第一个是荧光标记的脱氧核苷酸。显微镜现在再厉害，也不可能真的实时看到“单分子<br />
”。但是它可以实时记录荧光的强度变化。当荧光标记的脱氧核苷酸被掺入DNA链的时<br />
候，它的荧光就同时能在DNA链上探测到。当它与DNA链形成化学键的时候，它的荧光基<br />
团就被DNA聚合酶切除，荧光消失。这种荧光标记的脱氧核苷酸不会影响DNA聚合酶的活<br />
性，并且在荧光被切除之后，合成的DNA链和天然的DNA链完全一样。<br />
第二个是纳米微孔。因为在显微镜实时记录DNA链上的荧光的时候，DNA链周围的众多的<br />
荧光标记的脱氧核苷酸形成了非常强大的荧光背景。这种强大的荧光背景使单分子的荧<br />
光探测成为不可能。Pacific Biosciences公司发明了一种直径只有几十纳米的纳米孔[<br />
zero-mode waveguides (ZMWs)]，单分子的DNA聚合酶被固定在这个孔内。在这么小的<br />
孔内，DNA链周围的荧光标记的脱氧核苷酸有限，而且由于A，T，C，G这四种荧光标记<br />
的脱氧核苷酸非常快速地从外面进入到孔内又出去，它们形成了非常稳定的背景荧光信<br />
号。而当某一种荧光标记的脱氧核苷酸被掺入到DNA链时，这种特定颜色的荧光会持续<br />
一小段时间，直到新的化学键形成，荧光基团被DNA聚合酶切除为止（见图）。<br />
第三个是共聚焦显微镜实时地快速地对集成在板上的无数的纳米小孔同时进行记录。由<br />
于我对显微原理的物理知识匮乏，而Pacific Biosciences公司又没有非常强调在这方<br />
面的发明，不做进一步探讨。</p>
<p>他们还对这一技术进行进一步的优化。<br />
第一个是把双链DNA环化反复测序。人们可以在双链DNA的两头连上发夹结构的DNA<br />
adaptor，从而使DNA环化。而DNA聚合酶就能够以环化的DNA作为模板滚环复制，反复测<br />
一段DNA序列。这种反复测序，纠正了偶尔出现的复制错误，从而使测序精度非常高。<br />
第二个是激发光中断测序法。DNA聚合酶虽然很稳定，但是在强大的激发光作用下酶也<br />
是有一定寿命的。如果把激发光中断一段时间，在这段时间内DNA聚合酶继续复制DNA，<br />
当激发光重新开启以后，人们就可以测到长DNA链后面的序列。</p>
<p>第三代测序技术非常可怕。1、它实现了DNA聚合酶内在自身的反应速度，一秒可以测10<br />
个碱基，测序速度是化学法测序的2万倍。2、它实现了DNA聚合酶内在自身的<br />
processivity（延续性，也就是DNA聚合酶一次可以合成很长的片段），一个反应就可<br />
以测非常长的序列。 二代测序现在可以测到上百个碱基，但是三代测序现在就可以测<br />
几千个碱基。这为基因组的重复序列的拼接提供了非常好的条件。3、它的精度非常高<br />
，达到99.9999%。<br />
此外，它还有两个应用是二代测序所不具备的。<br />
第一个是直接测RNA的序列。既然DNA聚合酶能够实时观测，那么以RNA为模板复制DNA的<br />
逆转录酶也同样可以。RNA的直接测序，将大大降低体外逆转录产生的系统误差。<br />
第二个是直接测甲基化的DNA序列。实际上DNA聚合酶复制A、T、C、G的速度是不一样的<br />
。正常的C或者甲基化的C为模板，DNA聚合酶停顿的时间不同。根据这个不同的时间，<br />
可以判断模板的C是否甲基化。</p>
<p>Pacific Biosciences公司预计2010年或者2011年就会推出商业化的测序仪器。在不远<br />
的将来，如果他们能和二代测序一样集成100万个纳米微孔，那么一台仪器15分钟就能<br />
够准确地测出一个人的基因组。以后每个人的基因组测序成本将变成100美元，人人都<br />
可以消费得起。想想人类基因组计划耗资30亿美元，费时十几年，无数科学家参与其中<br />
，技术的革新意义是多么重大啊！</p>
<p>公司链接：http://www.pacificbiosciences.com/</p>
]]></content:encoded>
			<wfw:commentRss>https://www.biofacebook.com/?feed=rss2&#038;p=517</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
