由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
JobHunting版 - 请教一道 G 家 DNA edit distance的题
相关主题
edit distance面试题
征Bioinformatics Analyst1 11 21 1211 sequence的代码
问一下Repeated DNA Sequences贴点面试题
献码:Repeated DNA Sequencesplease DIscuss Two similar alg questions
two job openings for research assistant ( next generation sequencing related )问一道简单DP题
一道google 题,谁给翻译一下意思,多谢。Maximum Sum of Increasing Sequence
问道G题(4)Interview Questions for an investment bank
求解一道面试题 snake sequence谁有兴趣做道题?
相关话题的讨论汇总
话题: sequence话题: describe话题: edit话题: distance话题: billion
进入JobHunting版参与讨论
1 (共1页)
x****3
发帖数: 62
1
Assume the gene library exist for all 7 Billion people on earth. Each person
's gene sequence is 3 billion length of 4 basic construction unit. You are
given the genetic sequence of one person. Describe how you can find his
closest genetic sequence neighbor. The closeness is defined by the edit-
distance between the two sequences. Describe how you store data and conduct
search.
朋友Onsite面的, 完全没思路。谢谢
n********y
发帖数: 66
2
suffix tree
check out ukkonen's algorithm
s******n
发帖数: 240
3
Edit Distance可增可删。

【在 n********y 的大作中提到】
: suffix tree
: check out ukkonen's algorithm

s******n
发帖数: 240
4
基本方法应该就是Edit Distance的定义用Dynamic Programming来做。面试的本意大概
就是考这个点吧。
不过字符集这么小,字符串这么长,应该有能优化的地方。
s*a
发帖数: 267
5
编码,AGTC分别用00,01,10,11表示,可以编码成一个8位的int

【在 s******n 的大作中提到】
: 基本方法应该就是Edit Distance的定义用Dynamic Programming来做。面试的本意大概
: 就是考这个点吧。
: 不过字符集这么小,字符串这么长,应该有能优化的地方。

s**********g
发帖数: 14942
6
8位? 你的整个DNA sequence是什么结构?

【在 s*a 的大作中提到】
: 编码,AGTC分别用00,01,10,11表示,可以编码成一个8位的int
p******a
发帖数: 130
7
这是算法题还是system design题?
[在 xm1223 (天天想上) 的大作中提到:]
:Assume the gene library exist for all 7 Billion people on earth. Each
person's gene sequence is 3 billion length of 4 basic construction unit.
You are
:given the genetic sequence of one person. Describe how you can find his
:closest genetic sequence neighbor. The closeness is defined by the edit-
:distance between the two sequences. Describe how you store data and conduct
search.
:朋友Onsite面的, 完全没思路。谢谢
1 (共1页)
进入JobHunting版参与讨论
相关主题
谁有兴趣做道题?two job openings for research assistant ( next generation sequencing related )
one amazon interview problem一道google 题,谁给翻译一下意思,多谢。
问个AMAZON以前没讨论出结果的题问道G题(4)
请教一个DP的题求解一道面试题 snake sequence
edit distance面试题
征Bioinformatics Analyst1 11 21 1211 sequence的代码
问一下Repeated DNA Sequences贴点面试题
献码:Repeated DNA Sequencesplease DIscuss Two similar alg questions
相关话题的讨论汇总
话题: sequence话题: describe话题: edit话题: distance话题: billion