Basic Concepts of Genetic Data Analysis

简介: Basic Concepts of Genetic Data Analysis

[I]The Central Dogma of Gene Expression

1

[II]Second Generation Sequencing Principle of illumina

1.sample prep
All preparation methods add adapters to the ends of the DNA fragments.Through reduced cycle amplification,additional motifs are introduced.Such as the sequencing binding site,indices and regions complementary to the flow cell oligos.
2.cluster generation
Clustering is a process where each fragment molecule is isothermally amplified.The flow cell is a glass slide with lanes.Each lane is a channel coated with a lawn,composed of two types of oligos.Hybridization is enable by the first of the two types of oligos on the surface.This oligos is complementary to the adapter region on one of the fragment strands.A polymerase creates a complement of the hybridized fragment.The double stranded molecule is denatured and the original template is washed away.The strands are clonally amplified through bridge amplification.In this process the strand folds over and the adapter region hybridizes to the second type of oligo on the flow cell.Polymerases generate the complementary strand forming a double stranded bridge .This bridge is denatured resulting in 2 single-stranded copies of the molecule that are tethered to the flow cell.The process is then repeated over and over,and occurs simultaneously for millions of clusters resulting in clonal amplification of all the fragments.After bridge amplification the reverse strands are cleaved and washed off,leaving only the forward strands.The three prime ends are blocked to prevent unwanted priming.
3.sequencing
Sequencing begins with the extension of the first sequencing primer to produce the first read.With each cycle,fluorescently tagged nucleotides compete for addition to the growing chain.Only one is incorporated based on the sequence of the template.After the addition of each nucleotide the clusters are excited by a light source and a characteristic fluorescent signal is emitted.Sequencing-by-Synthesis.The number of cycles determines the length of the read.The emission wave length,along with the signal intensity,determines the base call.For a given cluster,all identical strands are read simultaneously.Hundreds of millions of clusters are sequenced in a massively parallel process.After the completion of the first read.,the read product is washed away.In this step the index/read primer is introduced and hybridized to the template.The read is generated,similar to the first read.After completion of the index read,the read product is washed off,and the three prime ends of the template are deprotected .
The template how folds over and binds the second oligo on the flow cell?Index 2 is read in the same manner as index1.Polymerases extend the second flow cell oligo forming a double stranded bridge.This double stranded DNAis then linearized and the three prime ends are blocked.The original forward strand is cleaved off and washed away leaving only the reverse strand.
Read 2 begins with the introduction of the read 2 sequencing primer.As with read1,the sequencing steps are repeated until the desired read length is achieved.Thet read 2 product is then washed away.This entire process generates millions of reads representing all the fragments.
4.data analysis
Sequences from pooled sample libraries are separated preparation.For each sample,reads with similar stretches of base calls are aligned back to the reference genome for variant identification.The paired and information is used to resolve ambiguous alignments.Genomic data can be securely transferred,stored,analyzed and shared in base base sequence hub.Discover the possibilities of next-generation sequencing.

[III]Software

  • comparison software
    BWA-MEN
  • reads software

htseq-count

[IV]Normalize

  • log2
  • p-value
  • q-value
  • TPM
  • FPKM
  • RPKW

[V]Differential Gene

[VI]Evaluation

TP=True Positive:actual is positive;forecast is positive;
TN=True Negative:actual is positive;forecast is negative;
FP=False Positive:actual is negative;forecast is positive;
FN=False Negative:actual is negative.forecast is negative;

$$ accuracy=\frac{TP+TN}{TP+TN+FP+FN} $$

$$ error rate=\frac{FP+FN}{TP+TN+FP+FN}=1-accuracy $$

$$ sensitive=\frac{TP}{P} $$

$$ specificity=\frac{TN}{N} $$

$$ precision=\frac{TP}{TP+FP} $$

$$ recall=\frac{TP}{TP+FN}=\frac{TP}{P}=sensitive $$

$$ f-measure=\frac{({\alpha}^2+1)*p*r}{{\alpha}^2*(p+r)}(\alpha=1) $$

END!

目录
相关文章
|
机器学习/深度学习 算法
Data Structures and Algorithms (English) - 7-28 Review of Programming Contest Rules(30 分)
Data Structures and Algorithms (English) - 7-28 Review of Programming Contest Rules(30 分)
232 0
Data Structures and Algorithms (English) - 7-28 Review of Programming Contest Rules(30 分)
|
算法 数据挖掘 开发者
basic concept| 学习笔记
快速学习 basic concept。
basic concept| 学习笔记
|
Linux Windows
6 Effective Methods to Learn New Technologies Faster
Technology is always evolving, and developers need to learn new products and languages faster to cope with these changes.
6306 0
6 Effective Methods to Learn New Technologies Faster
|
CDN
Optimizing Performance for Big-data-based Global E-Commerce Systems
Steps to optimize the cloud stack of an e-commerce site also touches on dynamic acceleration, static +ESI, element merge requests, and CDN scheduling
2224 0
|
2月前
|
算法 数据挖掘
文献解读-Prediction of axillary lymph node metastasis in triple-negative breast cancer by multi-omics analysis and an integrated model
研究旨在为三阴性乳腺癌患者提供更准确的腋窝淋巴结转移风险评估工具。研究者综合分析了临床病理信息、基因组和转录组数据,构建了一个多组学预测模型。
45 4
Predicting Malicious Behavior: Tools and Techniques for Ensuring Global Security
http://www.wiley.com/WileyCDA/WileyTitle/productCd-1118896696.
800 0
|
19天前
|
算法 Oracle 关系型数据库
文献解读-Integrative Genomic Analysis of Drug Resistance in MET Exon 14 Skipping Lung Cancer Using Patient-Derived Xenograft Models
研究通过PDX模型验证了MET抑制剂耐药机制,发现了新的MET D1228N突变和EGFR扩增,表明EGFR旁路信号通路可能在耐药过程中起作用。
36 8
|
C++ Windows
Basic knowledge
  GNU compiler: G++ ProgramTest.cc -o ProgramTest(Unix) Default no "-o" parameter compile to a.
973 0