<?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[植物基因组学]]></title><description><![CDATA[植物基因组学]]></description><link>http://an.forum.genostack.com/category/41</link><generator>RSS for Node</generator><lastBuildDate>Sat, 13 Jun 2026 14:44:20 GMT</lastBuildDate><atom:link href="http://an.forum.genostack.com/category/41.rss" rel="self" type="application/rss+xml"/><pubDate>Sun, 07 Apr 2024 07:08:30 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[烟草数据分析]]></title><description><![CDATA[<p dir="auto">参考</p>
<p dir="auto"><a href="https://gatk.broadinstitute.org/hc/en-us/articles/360035531572-Evaluating-the-quality-of-a-germline-short-variant-callset" rel="nofollow ugc">https://gatk.broadinstitute.org/hc/en-us/articles/360035531572-Evaluating-the-quality-of-a-germline-short-variant-callset</a></p>
]]></description><link>http://an.forum.genostack.com/topic/1061/烟草数据分析</link><guid isPermaLink="true">http://an.forum.genostack.com/topic/1061/烟草数据分析</guid><dc:creator><![CDATA[mengpf]]></dc:creator><pubDate>Sun, 07 Apr 2024 07:08:30 GMT</pubDate></item><item><title><![CDATA[DNA Fingerprinting for Crop Varietal Identification: Fit-for-Purpose Protocols, their Costs and Analytical Implications]]></title><description><![CDATA[<p dir="auto"><a href="https://cas.cgiar.org/sites/default/files/pdf/SPIA%20Study_DNA%20Fingerprinting%20for%20Crop%20Varietal%20Identification_April%202020.pdf" rel="nofollow ugc">https://cas.cgiar.org/sites/default/files/pdf/SPIA Study_DNA Fingerprinting for Crop Varietal Identification_April 2020.pdf</a></p>
<p dir="auto">DNA Fingerprinting for Crop Varietal Identification:<br />
Fit-for-Purpose Protocols, their Costs and Analytical<br />
Implications</p>
]]></description><link>http://an.forum.genostack.com/topic/759/dna-fingerprinting-for-crop-varietal-identification-fit-for-purpose-protocols-their-costs-and-analytical-implications</link><guid isPermaLink="true">http://an.forum.genostack.com/topic/759/dna-fingerprinting-for-crop-varietal-identification-fit-for-purpose-protocols-their-costs-and-analytical-implications</guid><dc:creator><![CDATA[anneng]]></dc:creator><pubDate>Tue, 23 Aug 2022 08:01:08 GMT</pubDate></item><item><title><![CDATA[bedtools intersect 用于计算多个bam的交集序列]]></title><description><![CDATA[<p dir="auto">1.工具<br />
<a href="https://bedtools.readthedocs.io/en/latest/content/tools/intersect.html" rel="nofollow ugc">https://bedtools.readthedocs.io/en/latest/content/tools/intersect.html</a></p>
<pre><code>git clone https://github.91chi.fun//https://github.com/arq5x/bedtools2.git
cd bedtools2/
make
</code></pre>
<p dir="auto">2.比对<br />
使用bwa mem 比对每个样本（例如烟草的组装后的结果）</p>
<pre><code>bwa mem ref.fa s1.fq | samtools sorted -o s1.sorted.bam -
</code></pre>
<p dir="auto">3.过滤<br />
过滤掉部分比对上的序列（soft clip和hard clip）和没有比对上的序列</p>
<pre><code>samtools view s1.sorted.bam | awk '$6 !~ /H|S/{print}' | samtools view -bS - &gt; s1.noclips.bam
samtools view -b -F 4  s1.noclips.bam -o s1.noclips.mapped.bam
</code></pre>
<p dir="auto">4.取各个样本的交集<br />
每次取2个 一直循环到最后1个</p>
<pre><code>../bin/bedtools intersect -a s1.noclips.mapped.bam -b s2.noclips.mapped.bam -bed &gt;intersect.s1.s2.bed
../bin/bedtools intersect -a intersect.s1.s2.bed -b s3.sorted.bam -bed &gt;intersect.s1.s2.s3.bed
</code></pre>
<p dir="auto">5.从每个样本提取序列<br />
使用最终的交集 bed 文件 提取包含这些交集的reads 每个样本都取一次</p>
<pre><code>samtools view s1.noclips.mapped.bam  -L intersect.s1.s2.s3.bed -o s1.regions.bam
samtools fasta s1.regions.bam -o s1.fasta
</code></pre>
]]></description><link>http://an.forum.genostack.com/topic/739/bedtools-intersect-用于计算多个bam的交集序列</link><guid isPermaLink="true">http://an.forum.genostack.com/topic/739/bedtools-intersect-用于计算多个bam的交集序列</guid><dc:creator><![CDATA[anneng]]></dc:creator><pubDate>Tue, 02 Aug 2022 05:44:15 GMT</pubDate></item><item><title><![CDATA[小米SSR、SNP挖掘]]></title><description><![CDATA[<p dir="auto"><a href="https://www.ncbi.nlm.nih.gov/pmc/articles/PMC3536327/" rel="nofollow ugc">https://www.ncbi.nlm.nih.gov/pmc/articles/PMC3536327/</a><br />
SNP Markers and Their Impact on Plant Breeding</p>
]]></description><link>http://an.forum.genostack.com/topic/732/小米ssr-snp挖掘</link><guid isPermaLink="true">http://an.forum.genostack.com/topic/732/小米ssr-snp挖掘</guid><dc:creator><![CDATA[anneng]]></dc:creator><pubDate>Wed, 20 Jul 2022 02:33:07 GMT</pubDate></item><item><title><![CDATA[玉米SNP]]></title><description><![CDATA[<p dir="auto"><a href="https://www.mdpi.com/2077-0472/11/7/597/htm" rel="nofollow ugc">https://www.mdpi.com/2077-0472/11/7/597/htm</a></p>
]]></description><link>http://an.forum.genostack.com/topic/731/玉米snp</link><guid isPermaLink="true">http://an.forum.genostack.com/topic/731/玉米snp</guid><dc:creator><![CDATA[anneng]]></dc:creator><pubDate>Tue, 19 Jul 2022 11:52:35 GMT</pubDate></item><item><title><![CDATA[soapdenovo2]]></title><description><![CDATA[<p dir="auto">a. *.contig<br />
contig sequences without using mate pair information.<br />
b. *.scafSeq<br />
scaffold sequences (final contig sequences can be extracted by breaking down scaffold sequences at gap regions).</p>
]]></description><link>http://an.forum.genostack.com/topic/723/soapdenovo2</link><guid isPermaLink="true">http://an.forum.genostack.com/topic/723/soapdenovo2</guid><dc:creator><![CDATA[anneng]]></dc:creator><pubDate>Mon, 11 Jul 2022 11:56:07 GMT</pubDate></item><item><title><![CDATA[植物的组装]]></title><description><![CDATA[<p dir="auto"><a href="https://gage.cbcb.umd.edu/" rel="nofollow ugc">https://gage.cbcb.umd.edu/</a><br />
GAGE is an evaluation of the very latest large-scale genome assembly algorithms.</p>
]]></description><link>http://an.forum.genostack.com/topic/722/植物的组装</link><guid isPermaLink="true">http://an.forum.genostack.com/topic/722/植物的组装</guid><dc:creator><![CDATA[anneng]]></dc:creator><pubDate>Fri, 08 Jul 2022 07:35:17 GMT</pubDate></item><item><title><![CDATA[芥菜的组装]]></title><description><![CDATA[<p dir="auto"><a href="https://onlinelibrary.wiley.com/doi/full/10.1111/pbi.13492" rel="nofollow ugc">https://onlinelibrary.wiley.com/doi/full/10.1111/pbi.13492</a><br />
A chromosome-scale assembly of allotetraploid Brassica juncea (AABB) elucidates comparative architecture of the A and B genomes high molecular weight DNA isolated from B. juncea variety Varuna was subjected to SMRT sequencing on the PacBio RSII platform. A total of 9 735 857 reads, with an N50 value of ~15.5 kb, were obtained—providing ~100× coverage of the genome (Table S1). The reads were assembled into 1253 contigs with an N50 value of ~5.7 Mb using <strong>Canu assembler</strong> (Table 1).</p>
<p dir="auto">Sequences generated from the three PE libraries of B. nigra were assembled into contigs with <strong>MaSuRcA software</strong> (Zimin et al., 2013). Illumina PE reads were mapped on the raw Nanopore reads using <strong>BWA mem</strong>; 1 442 476 error corrected Nanopore reads were generated using the <strong>Pilon program</strong> (Walker et al., 2014). Scaffolding of the MaSuRcA based contigs with the error corrected Nanopore sequence data was carried out with <strong><a href="http://SSPACE-LongRead.pl" rel="nofollow ugc">SSPACE-LongRead.pl</a></strong> script (Boetzer et al., 2011), which generated 29 808 scaffolds with an N50 value of 19 834. Further, three rounds of scaffolding were carried out using the 2 kb, 6 kb and 10 kb MP library sequence data sets using <strong><a href="http://SSPACE-STANDARD-3.0.pl" rel="nofollow ugc">SSPACE-STANDARD-3.0.pl</a> script</strong> (Boetzer et al., 2011).</p>
]]></description><link>http://an.forum.genostack.com/topic/721/芥菜的组装</link><guid isPermaLink="true">http://an.forum.genostack.com/topic/721/芥菜的组装</guid><dc:creator><![CDATA[anneng]]></dc:creator><pubDate>Fri, 08 Jul 2022 07:05:32 GMT</pubDate></item><item><title><![CDATA[烟草的SNP分析]]></title><description><![CDATA[<p dir="auto"><a href="https://agris.fao.org/agris-search/search.do?recordID=KR2009003178" rel="nofollow ugc">https://agris.fao.org/agris-search/search.do?recordID=KR2009003178</a><br />
a set of seven informative single-nucleotide polymorphisms<br />
(SNPs) and one insertion-deletion (INDEL) distributed over 24 cultivars that can be used for<br />
tobacco (Nicotiana tabacum L.) cultivar identification.<br />
用7个SNP和一个INDEL 分类了24个品种<br />
SNP frequency of tobacco, 1/8,380 bp, was very low in comparison<br />
with those of other plant species<br />
和其他植物比较 烟草的SNP频率相对较低</p>
<p dir="auto">SNPs are more frequent than<br />
SSRs in animal and plant genomes and the<br />
mutation rate is lower, 10-8 (Kondrashov, 2003;<br />
Nachman and Crowell, 2000) than in SSRs, 10-3<br />
(Brinkmann et al., 1998); therefore, SNPs are<br />
more reliable as molecular markers for organism<br />
identification<br />
SNP 比SSR有优势</p>
<p dir="auto">cultivar determination of dried leaves is very<br />
difficult because the original shape is changed<br />
during the curing process and there are more<br />
than 10,000 cultivars in existence.<br />
用形态学鉴定干的叶子显然很困难 而且市面上有1万多个品种</p>
<p dir="auto"><img src="/assets/uploads/files/1657250786050-4918587a-b50f-4976-b17c-e409be225da6-image.png" alt="4918587a-b50f-4976-b17c-e409be225da6-image.png" class=" img-responsive img-markdown" /><br />
从TGI获取的原始数据  用PCAP program做了组装<br />
From the original 163,000 sequences, we assembled 31,370 contigs and about 60,000 singlets.</p>
<p dir="auto">Primer Design and PCR Reaction<br />
设计引物 然后扩增<br />
<img src="/assets/uploads/files/1657253074619-8ae0ce68-b274-4ce8-9274-383fd1a56b26-image.png" alt="8ae0ce68-b274-4ce8-9274-383fd1a56b26-image.png" class=" img-responsive img-markdown" /></p>
<p dir="auto"><img src="/assets/uploads/files/1657253098758-bdad91a3-c18c-4387-b659-3168e743c551-image.png" alt="bdad91a3-c18c-4387-b659-3168e743c551-image.png" class=" img-responsive img-markdown" /></p>
<p dir="auto">Sequences were analyzed on<br />
an A B I3 7 3 0 x l D N A A naly z er ( A p p lied<br />
Biosystems, Foster City, CA).</p>
<p dir="auto">The sequence<br />
data from each amplicon were analyzed with<br />
sequence analyzing software: CLC Workbench<br />
(CLC Bio, Denmark), Clustal X (Larkin et al.,<br />
2007), and SequencherTM 4 . 8 ( G ene Code<br />
Corporation). The minimum and maximum PCR<br />
p roduct length was 71 6 bp and 2, 047 bp ,<br />
respectively, and the average length was 1,295<br />
bp (Table 3). We removed the first 25 bp from<br />
the sequence and compared only the first 26 bp<br />
to 525 bp region.<br />
<img src="/assets/uploads/files/1657253296604-56347183-70bc-43c2-ac1b-9f1adf7e313b-image.png" alt="56347183-70bc-43c2-ac1b-9f1adf7e313b-image.png" class=" img-responsive img-markdown" /></p>
<p dir="auto">找到的SNP<br />
<img src="/assets/uploads/files/1657258441078-13a09c66-9327-4eb8-b5cb-f1a4669e0c7a-image.png" alt="13a09c66-9327-4eb8-b5cb-f1a4669e0c7a-image.png" class=" img-responsive img-markdown" /></p>
<p dir="auto"><img src="/assets/uploads/files/1657258476078-65ac630e-74db-4b25-bfa3-743c80382fc3-image.png" alt="65ac630e-74db-4b25-bfa3-743c80382fc3-image.png" class=" img-responsive img-markdown" /></p>
<p dir="auto">烟草的SNP频率不是很多<br />
<img src="/assets/uploads/files/1657259098090-60989de7-86b9-446a-aad3-a5a46f5b1b5e-image.png" alt="60989de7-86b9-446a-aad3-a5a46f5b1b5e-image.png" class=" img-responsive img-markdown" /></p>
]]></description><link>http://an.forum.genostack.com/topic/720/烟草的snp分析</link><guid isPermaLink="true">http://an.forum.genostack.com/topic/720/烟草的snp分析</guid><dc:creator><![CDATA[anneng]]></dc:creator><pubDate>Fri, 08 Jul 2022 05:45:14 GMT</pubDate></item><item><title><![CDATA[多倍体]]></title><description><![CDATA[<p dir="auto"><img src="/assets/uploads/files/1656388573934-3822f13b-0945-4a97-a7eb-7e8f32ab066b-image.png" alt="3822f13b-0945-4a97-a7eb-7e8f32ab066b-image.png" class=" img-responsive img-markdown" /><br />
<a href="https://www.researchgate.net/figure/Possible-scenarios-for-autoploid-a-and-allopolyploid-b-c-formation-of-the-M-lignano_fig3_318562630" rel="nofollow ugc">https://www.researchgate.net/figure/Possible-scenarios-for-autoploid-a-and-allopolyploid-b-c-formation-of-the-M-lignano_fig3_318562630</a></p>
]]></description><link>http://an.forum.genostack.com/topic/707/多倍体</link><guid isPermaLink="true">http://an.forum.genostack.com/topic/707/多倍体</guid><dc:creator><![CDATA[anneng]]></dc:creator><pubDate>Tue, 28 Jun 2022 03:56:23 GMT</pubDate></item><item><title><![CDATA[多倍体的SNP]]></title><description><![CDATA[<p dir="auto"><a href="https://www.frontiersin.org/articles/10.3389/fgene.2020.00222/full?&amp;utm_source=Email_to_authors_&amp;utm_medium=Email&amp;utm_content=T1_11.5e1_author&amp;utm_campaign=Email_publication&amp;field=&amp;journalName=Frontiers_in_Genetics&amp;id=521391" rel="nofollow ugc">https://www.frontiersin.org/articles/10.3389/fgene.2020.00222/full?&amp;utm_source=Email_to_authors_&amp;utm_medium=Email&amp;utm_content=T1_11.5e1_author&amp;utm_campaign=Email_publication&amp;field=&amp;journalName=Frontiers_in_Genetics&amp;id=521391</a><br />
Comparison of SNP Calling Pipelines and NGS Platforms to Predict the Genomic Regions Harboring Candidate Genes for Nodulation in Cultivated Peanut</p>
<p dir="auto">该文献对异源多倍体的snp分析对比了5种流程 可以重点看看</p>
]]></description><link>http://an.forum.genostack.com/topic/706/多倍体的snp</link><guid isPermaLink="true">http://an.forum.genostack.com/topic/706/多倍体的snp</guid><dc:creator><![CDATA[anneng]]></dc:creator><pubDate>Tue, 28 Jun 2022 03:13:37 GMT</pubDate></item><item><title><![CDATA[烟草的基因组组装]]></title><description><![CDATA[<p dir="auto"><a href="https://www.ncbi.nlm.nih.gov/pmc/articles/PMC8104905/" rel="nofollow ugc">https://www.ncbi.nlm.nih.gov/pmc/articles/PMC8104905/</a><br />
A consensus on the Aquaporin Gene Family in the Allotetraploid Plant, Nicotiana tabacum</p>
]]></description><link>http://an.forum.genostack.com/topic/705/烟草的基因组组装</link><guid isPermaLink="true">http://an.forum.genostack.com/topic/705/烟草的基因组组装</guid><dc:creator><![CDATA[anneng]]></dc:creator><pubDate>Tue, 28 Jun 2022 03:12:41 GMT</pubDate></item><item><title><![CDATA[花生的基因组组装]]></title><description><![CDATA[<p dir="auto"><a href="/assets/uploads/files/1657537440695-plants-10-02740.pdf">plants-10-02740.pdf</a><br />
7f079412-d6cd-42b1-9f14-02175b26be85-image.png<br />
对花生做了有参组装 先denovo 然后和参考基因组做了比对 然后直接连接</p>
]]></description><link>http://an.forum.genostack.com/topic/704/花生的基因组组装</link><guid isPermaLink="true">http://an.forum.genostack.com/topic/704/花生的基因组组装</guid><dc:creator><![CDATA[anneng]]></dc:creator><pubDate>Mon, 27 Jun 2022 10:44:06 GMT</pubDate></item></channel></rss>