Redian新闻
>
一道药厂computational biology的面试题
avatar
m*c
2
最近电面了一个大药厂的职位。这道题不知怎么答好。
有两组病人,用同一种药治疗,其中一组病人的效果好,而另外一组的疗效不好。现有
每个病人的RNAseq数据,也就是两万多个基因的表达值数据(normalized),这个值得范
围可能是0-100,非随机,非线性分布,但总体的均值为1. 问用什么样的机器
学习的方法或统计方法来找出一组基因,也就是两万多个基因中的一小部分,其表达值
可以用于病人对于该治疗的预测?
Two patient cohorts, all treated with the same drug. One cohort are the
responders, who has response to the treatment and the other one are non-
responders who does not respond to the treatment. RNAseq was performed and
we have the normalized gene expression values of the 20,000 genes for each
of the patients. The expression value ranges from 0-100 with total average
of 1.
The question is how to find out a gene set (a small portion of the 20,000
gene) and use their combined (maybe weighted) gene expression value to
predict if a patient is either a responder or non-responder to the drug
treatment. It's a binary prediction.
Hope this clear.
多谢指教。
avatar
j*z
3
我在NSC,但是也希望TSC的兄弟姐妹早绿!
avatar
z*e
4
先问每组多少人;
然后PLS-DA,OPLS-DA或者Random forest应该都可以。
avatar
f*e
5
同绿,多绿,肉烂烂锅里,不要给了烙印。
avatar
v*e
6
中值为1还差不,均值为1,一个1000的需要2000个0.5的来平衡?你看他题目是不是写
错了。
avatar
p*j
7
爆发个头。比NSC差了几条街。
avatar
m*c
8
大牛,能不能稍微详细指点一下?假设每组都有100个病人。

【在 z*****e 的大作中提到】
: 先问每组多少人;
: 然后PLS-DA,OPLS-DA或者Random forest应该都可以。

avatar
F*u
9
人家说的是将来时

【在 p****j 的大作中提到】
: 爆发个头。比NSC差了几条街。
avatar
m*c
10
可能。表达值太高也没有太大意义。那就把最大值限制在100吧。

【在 v*******e 的大作中提到】
: 中值为1还差不,均值为1,一个1000的需要2000个0.5的来平衡?你看他题目是不是写
: 错了。

avatar
a*8
11
现在只是小放水,等爆
avatar
d*m
12
你能不能贴下英文?看得我不太明白
avatar
H*i
13
TSC双飞是王道!
avatar
d*m
14
统计上来讲,一切都是density estimation,你自己想想有哪几个variables,弄几个
assumptions,构建joint density,然后再想想哪些方法可以estimate
conditional density,哪些就能做预测了。这个看起来就是个classification的问题
,方法取决于你对于表达量density function assumption。
avatar
F*u
15
完了,老赫成复读机了

【在 H******i 的大作中提到】
: TSC双飞是王道!
avatar
m*c
16
just updated with English description. please check out again.

【在 d********m 的大作中提到】
: 你能不能贴下英文?看得我不太明白
avatar
x*0
17
你表情怎么那么re-re 逗死了 我也想去搞一个

【在 H******i 的大作中提到】
: TSC双飞是王道!
avatar
s*s
18
不太明白这个均值为1有啥用途,可能是让你提到有些algorithm
要把predictor normalize吧
没做过biomarker, 不过这题目不是让你建模,而是让你找subset.
找subset要么自动找,要么手动stepwise找。前者可以用用lasso
啥的,后者就是把p-value大的,或者information gain多的predictor
一个一个加回去,直到predictor power(比如AUC)不增加为止。当
然最后要一个binary classifier, 那就在外面wrap一个logistic regression
就行了,比如logistic lasso.
机器学习玩的不多,有了feature selection,后面搞点naive bayes
或者decision tree就好了。random forest, neuron networks啥的不说
不管feature selection, 另外这些花样的结果比较难解释,药厂一般
不会搞这些吧。一般偏clinical side的都要容易解释.

现有
得范
达值

【在 m******c 的大作中提到】
: 最近电面了一个大药厂的职位。这道题不知怎么答好。
: 有两组病人,用同一种药治疗,其中一组病人的效果好,而另外一组的疗效不好。现有
: 每个病人的RNAseq数据,也就是两万多个基因的表达值数据(normalized),这个值得范
: 围可能是0-100,非随机,非线性分布,但总体的均值为1. 问用什么样的机器
: 学习的方法或统计方法来找出一组基因,也就是两万多个基因中的一小部分,其表达值
: 可以用于病人对于该治疗的预测?
: Two patient cohorts, all treated with the same drug. One cohort are the
: responders, who has response to the treatment and the other one are non-
: responders who does not respond to the treatment. RNAseq was performed and
: we have the normalized gene expression values of the 20,000 genes for each

avatar
C*n
19
TSC可能之前在干别的事情吧
USCIS announced today that data entry of all FY15 H-1B cap petitions has
been completed. USCIS will now begin returning all H-1B cap petitions that
were not selected in the lottery. U.S. businesses use the H-1B program to
employ foreign workers in occupations that require highly specialized
knowledge in fields such as science, engineering, and computer programming.
avatar
d*m
20
赞经验。我昨天下午看到这么大个feature space,一直在想怎么做regularization,
想到似乎有个啥方法可以用,就是
一直想不起来。对,就是这个Lasso。

【在 s******s 的大作中提到】
: 不太明白这个均值为1有啥用途,可能是让你提到有些algorithm
: 要把predictor normalize吧
: 没做过biomarker, 不过这题目不是让你建模,而是让你找subset.
: 找subset要么自动找,要么手动stepwise找。前者可以用用lasso
: 啥的,后者就是把p-value大的,或者information gain多的predictor
: 一个一个加回去,直到predictor power(比如AUC)不增加为止。当
: 然最后要一个binary classifier, 那就在外面wrap一个logistic regression
: 就行了,比如logistic lasso.
: 机器学习玩的不多,有了feature selection,后面搞点naive bayes
: 或者decision tree就好了。random forest, neuron networks啥的不说

avatar
V*t
21
re!

【在 Q**F 的大作中提到】
: 快爆发吧
avatar
z*t
22
只是个简单的两组分比对。数值0-100是nb 分布,log转换后平均值1就变成0了。一般
这种分布用glm求p值,然后p值rank,设定显著化水平为0.05后,用dh法求差异化表达
基因的个数。
avatar
k*1
23
快爆发吧
avatar
c*i
24
怎么还不爆发啊
avatar
m*9
25
等等等等阿等,求快绿
avatar
l*m
26
add oil, both
avatar
H*C
27
Re
avatar
m*a
28
求爆发
avatar
a*8
29
今天还得继续等不还是礼拜五再回来等?
相关阅读
logo
联系我们隐私协议©2024 redian.news
Redian新闻
Redian.news刊载任何文章,不代表同意其说法或描述,仅为提供更多信息,也不构成任何建议。文章信息的合法性及真实性由其作者负责,与Redian.news及其运营公司无关。欢迎投稿,如发现稿件侵权,或作者不愿在本网发表文章,请版权拥有者通知本网处理。