chaos

chaos game for DNA sequences

一曲冷凌霜 提交于 2019-12-04 09:34:59
问题 I have tried the mathematica code for making the chaos game for DNA sequences posted in this address: http://facstaff.unca.edu/mcmcclur/blog/GeneCGR.html which is like this: genome = Import["c:\data\sequence.fasta", "Sequence"]; genome = StringReplace[ToString[genome], {"{" -> "", "}" -> ""}]; chars = StringCases[genome, "G" | "C" | "T" | "A"]; f[x_, "A"] := x/2; f[x_, "T"] := x/2 + {1/2, 0}; f[x_, "G"] := x/2 + {1/2, 1/2}; f[x_, "C"] := x/2 + {0, 1/2}; pts = FoldList[f, {0.5, 0.5}, chars];

chaos game for DNA sequences

只愿长相守 提交于 2019-12-03 03:25:01
I have tried the mathematica code for making the chaos game for DNA sequences posted in this address: http://facstaff.unca.edu/mcmcclur/blog/GeneCGR.html which is like this: genome = Import["c:\data\sequence.fasta", "Sequence"]; genome = StringReplace[ToString[genome], {"{" -> "", "}" -> ""}]; chars = StringCases[genome, "G" | "C" | "T" | "A"]; f[x_, "A"] := x/2; f[x_, "T"] := x/2 + {1/2, 0}; f[x_, "G"] := x/2 + {1/2, 1/2}; f[x_, "C"] := x/2 + {0, 1/2}; pts = FoldList[f, {0.5, 0.5}, chars]; Graphics[{PointSize[Tiny], Point[pts]}] the fasta sequence that I have is just a sequence of letters

chaos

匿名 (未验证) 提交于 2019-12-02 23:34:01
http://www.chaos-math.org 文章来源: https://blog.csdn.net/moonlightpeng/article/details/90338958

在Scala中构建Web API的4大框架

会有一股神秘感。 提交于 2019-11-27 19:56:17
Scala是一种强大的语言,很快就成为许多开发人员的最爱。然而,语言只是一个起点-并非每个函数都将由语言核心覆盖。Scala还创建了一些厉害的框架。接下来看看Scala的4个强大框架以及其优点和缺点。请记住,框架的最佳选择总是应符合您特定项目的要求——因此,请酌情考虑我们的推荐,根据您自己的项目要求决定最适合您的项目。   Play Framework   —— Java和Scala的高速Web框架请添加链接描述   Play Framework是一个开源的Scala框架,于2007年首次发布。它目前由Lightbend,Zengularity及其用户开发人员社区开发。该框架的核心功能基于利用JVM及其相关库来构建RESTful应用程序。它目前被一些相当大的名称网站使用,包括LinkedIn,三星的IoT Artik平台和教育网站Coursera。在撰写本文时,Play 2.6是Play的当前版本,已在开发中取代了Play 1。     优点   1.与JVM密切相关,因此,Java开发人员会发现它很熟悉且易于使用。   2.广泛支持各种工具集和IDE系统。   3.它完全基于函数式编程概念,并促进了API优先的RESTful设计实践。   4.Play 2是被动的,允许并行远程呼叫。这意味着它适用于WebSockets和其他相关的以服务器为中心的方法。   5.它为资产汇编

NOIP模拟测试20

余生颓废 提交于 2019-11-27 16:19:59
Liu_runda聚聚的馈赠( Problem A: 周 防自闭题? 这道题让我整个考试都很愉悦( 搜就完事了 1 #include <bits/stdc++.h> 2 3 int n; 4 int a[20], b[20], c[20], d[20]; 5 long long ans; 6 7 void dfs(int day, long long oi, long long whk) { 8 if (day == n + 1) { 9 ans = std::max(ans, oi * whk); 10 return; 11 } 12 long long x, y; 13 x = oi - b[day] < 0 ? 0 : oi - b[day], y = whk + a[day]; 14 dfs(day + 1, x, y); 15 x = oi + c[day], y = whk - d[day] < 0 ? 0 : whk - d[day]; 16 dfs(day + 1, x, y); 17 } 18 19 signed main() { 20 scanf("%d", &n); 21 for (int i = 1; i <= n; i++) 22 scanf("%d%d%d%d", &a[i], &b[i], &c[i], &d[i]); 23 dfs(1, 0, 0);