some transcripts quantification brief comprehensions

Some biases in the standard rnaseq analysis

有参拼接:Stringtie 、 Cufflinks and Traph

flow network algorithm : maximal and minimal methods respectively

无参组装:Trinity

clustering by K-mers

salmon: as for now the best performance software

DAG:有向无环图

bagging是减少variance,而boosting是减少bias

High variance 是model过于复杂overfit,记住太多细节noise,受outlier影响很大;high bias是underfit,model过于简单,cost function不够好。
A- bagging随机选取data的subset,outlier因为比例比较低,参与model training的几率也比较低,所以bagging降低了outliers和noise对model的影响,所以降低了variance。
B-boosting参zh Bright的答案,minimize loss function by definition minimize bias.

==========================================================

==========================================================
Streaming fragment assignment for real-time analysis of sequencing experiments

流形碎片的实时测序实验

TIPS:

在估计丰度时候很容易用错或者是正确使用与否是很关键的一步:

RPKM:Reads Per Kilobase of exon modelper Million mapped reads (每千个碱基的转录每百万映射读取的reads),主要用来对单端测序(single-end RNA-seq)进行定量的方法。
RPKM= total exon reads/ (mapped reads (Millions) * exon length(KB))

FPKM:

Fragments Per Kilobase of exon model per Million mapped fragments(每千个碱基的转录每百万映射读取的fragments),主要是针对pair-end测序表达量进行计算

TPM:

Transcripts Per Kilobase of exonmodel per Million mapped reads (每千个碱基的转录每百万映射读取的Transcripts),优化的RPKM计算方法,可以用于同一物种不同组织的比较。
TPM (推荐软件,RSEM) 的计算公式:

TPMi={( Ni/Li )*1000000 } / sum( Ni/Li+……..+ Nm/Lm )

CPM/RPM:

Reads/Counts of exon model per Million mapped reads (每百万映射读取的reads).
RPM的计算公式:
RPM=total exon reads / mapped reads (Millions)

原文地址:https://www.cnblogs.com/beckygogogo/p/9223911.html

时间: 2024-09-30 20:15:53

some transcripts quantification brief comprehensions的相关文章

hackerrank---List Comprehensions

题目链接 刷刷Python基本功...列表解析 附上代码: 1 x = int(input()) 2 y = int(input()) 3 z = int(input()) 4 n = int(input()) 5 print [[i, j, k] for i in xrange(x+1) for j in xrange(y+1) for k in xrange(z+1) if i+j+k != n] hackerrank---List Comprehensions,布布扣,bubuko.com

[Python] 字典推导 PEP 274 -- Dict Comprehensions

之前自己也遇到过一次,这段时间在群里也遇到过几次的一个问题 用python2.7写的一段程序.里面用到了字典推导式,可是server版本号是python2.6,无法执行. 今天查了下关于Dict Comprehensions,在pep274中有明白的说明. http://legacy.python.org/dev/peps/pep-0274/ Implementation All implementation details were resolved in the Python 2.7 and

hausaufgabe--python 12-List comprehensions

000-- List comprehensions Above one is equal to : for the first one, it's equal to : 001-- list functions: list.sort() list.reverse() == list.sort(reverse=true) list.copy() list.clear() __ the list still exist, but it's a empty list after clear.

kallisto:Near-optimal RNA-Seq quantification

Near-optimal RNA-Seq quantification https://pachterlab.github.io/kallisto kallisto kallisto是一个用高通量测序片段从RNA序列或更为普遍的目标序列中量化转录丰富度的一个程序.它是基于伪对齐的新的数据,用于快速确定reads目标,而无需alignment.在标准的RNA序列数据中,kallisto能够在mac系统上用不到十分钟的时间构建索引,用不到三分钟的时间量化(也就是分类)3千w人类的reads.read

每天学点Python之comprehensions

每天学点Python之comprehensions 推导式能够简化对数据的处理,让代码简洁的同一时候还具有非常高的可读性.这在Python中非经常见. 列表推导式 通过列表推导式能够对列表中的全部元素都进行统一的操作来获得一个全新的列表(原列表不发生变化),形式如[处理方式 for 元素 in 列表],当中的处理方式能够是不论什么操作: >>> a=[1,2,3,4] >>> [i*2 for i in a] [2, 4, 6, 8] >>> a [1

Python笔记2#Python高级特性(Slice,Iteration, List Comprehensions,Generator)

▲切片Slice 在很多编程语言中,针对字符串提供了很多截取函数,其实目的就是对字符串进行切片.Python没有针对字符串的截取函数,只需要切片一个操作就能完成.Python切片非常灵活,一行代码就可以实现很多行循环才能完成的操作.示例代码如下: >>> L='ABCDEFG' >>> L[2:5] 'CDE' >>> L[:5] 'ABCDE' >>> L[-5:] 'CDEFG' >>> L[::2] 'ACEG

python 推导式(Comprehensions)

一.介绍 列表推导(list comprehensions) 这是一种将for循环.if表达式以及赋值语句放到单一语句中的一种方法.换句话说,你能够通过一个表达式对一个列表做映射或过滤操作. 一个列表推导式包含以下几个部分: 1.一个输入序列 2.一个表示输入序列成员的变量 3.一个可选的断言表达式 4.一个将输入序列中满足断言表达式的成员变换成输出列表成员的输出表达式 二.举例 假如需要从列表中将所有大于0的整数平方生成一个新的列表,你也许会这么写: num_list = [11,2,-33,

[Python's] Python's list comprehensions a

# Python's list comprehensions are awesome. vals = [expression for value in collection if condition] # This is equivalent to: vals = [] for value in collection: if condition: vals.append(expression) # Example: >>> even_squares = [x * x for x in r

Python中的Comprehensions和Generations

Python中的Comprehensions和Generations语法都是用来迭代的.Comprehensions语法可用于list,set,dictionary上,而Generations语法分为Generator函数和Generator表达式. Comprehensions 以list的Comprehensions语法为例: # 常规语法 [expression for target in iterable] [x ** 2 for x in range(10)] # 加入if语句 [ex