如何在给定序列中找到稀有密码子?
编写一个程序来找出序列列表中的稀有密码子背后的概念是什么?我不会向任何人询问编码。只是想知道这个概念。
What is the concept behind writing a program to find out rare codons in a list of sequences? I'm not asking the codings from anyone. Just want to know the concept.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是给你的一些Python:
here's some python for you:
在字符串中寻找模式正是正则表达式存在的原因。
这些是充满代表字符串模式的符号的表达式。使用适当构建的正则表达式,您可以在文本中搜索与正则表达式“匹配”的任何子文本。这可以让您找到非常复杂的模式并执行许多操作,例如拆分、替换等。
希望这会有所帮助。
Looking for patterns inside strings is the very reason-of-existence of loved loved and feared Regular Expressions.
These are expressions full of symbols which represent string patterns. With an appropriately built regular expression, you can search a text for any sub-text that "matches" the regular expression. This can allow you to find very complex patterns and perform a lot of operations like splitting, replacing, etc.
Hope this helps.