计算 R 中两个基因序列之间的百分比差异
我还没能在问题或 R 包中找到这个,希望很简单。
假设有两个基因序列:
Sequence A: ATG CGC AAC GTG GAG CAT
Sequence B: ATG GGC TAC GTG GAT CAA
我想要用 R 代码来生成两个序列之间单核苷酸的百分比差异(例如 15%)。
有什么想法吗?提前致谢。
I haven't been able to find this in the questions or an R package, hopefully straightforward.
Take two hypothetical genetic sequences:
Sequence A: ATG CGC AAC GTG GAG CAT
Sequence B: ATG GGC TAC GTG GAT CAA
I want to have R code to generate the percentage difference in single nucleotides between the two sequences (e.g. 15%).
Any thoughts? Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果我正确理解你的问题,那么你只需要做一个简单的字符串比较。例如,
要获取上述格式的数据,请查看
strsplit
函数。If I understand your question correctly, then you just need to do a simple string comparsion. For example,
To get your data in the above format, have a look at the
strsplit
function.