如何在给定序列中找到稀有密码子?

发布于 2024-10-14 13:41:24 字数 58 浏览 2 评论 0原文

编写一个程序来找出序列列表中的稀有密码子背后的概念是什么?我不会向任何人询问编码。只是想知道这个概念。

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

蓝天 2024-10-21 13:41:24

这是给你的一些Python:

codon = "TAG"

sequence = "AAAAAAAAAATAG"
if sequence.find(codon) != -1:
    #found codon in the string!

here's some python for you:

codon = "TAG"

sequence = "AAAAAAAAAATAG"
if sequence.find(codon) != -1:
    #found codon in the string!
乖乖兔^ω^ 2024-10-21 13:41:24

在字符串中寻找模式正是正则表达式存在的原因。

这些是充满代表字符串模式的符号的表达式。使用适当构建的正则表达式,您可以在文本中搜索与正则表达式“匹配”的任何子文本。这可以让您找到非常复杂的模式并执行许多操作,例如拆分、替换等。

希望这会有所帮助。

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文