从得知国际基因计划启动后,华大基因董事长(www.dna-china.org)兼总裁汪建就在想象并推近自己与基因测序之间的关系。不过那时候,他可能还想象不到他将拥有一个帝国。华大基因有这样说话的底气。在2003年抗SARS研究中,华大基因在仅4天的时间内完成了有针对性的SARS病毒全基因组测序分析、...
分类:
其他好文 时间:
2014-07-24 00:46:47
阅读次数:
327
最近用JPA遇到这样一个问题:Repeated column in mapping for entity: com.ketayao.security.entity.main.User column: org_id (should be mapped with insert="false" update="false")
这个错误是由实体类引起的,我一开始是这样写的:
@Column
priv...
分类:
移动开发 时间:
2014-07-22 23:47:28
阅读次数:
378
题目大意:
求出这些DNA序列中的最长且字典序最小的公共子串。
思路分析:
二分长度的答案,去height中扫描这个长度是否满足,一旦满足就马上输出,这样就可以保证字典序最小了。
#include
#include
#include
#include
#define maxn 1005
using namespace std;
char str[maxn]...
分类:
其他好文 时间:
2014-07-22 22:39:12
阅读次数:
258
1007:DNA排序描述现在有一些长度相等的DNA串(只由ACGT四个字母组成),请将它们按照逆序对的数量多少排序。逆序对指的是字符串A中的两个字符A[i]、A[j],具有i A[j] 的性质。如字符串”ATCG“中,T和C是一个逆序对,T和G是另一个逆序对,这个字符串的逆序对数为2。输入第1行:....
分类:
其他好文 时间:
2014-07-22 00:26:35
阅读次数:
280
题目上给的样例input格式存在一定问题,行末多空格。
在这上面纠结了几次……
#include
#include
#include
const int maxn = 1100;
int A[maxn];
int C[maxn];
int G[maxn];
int T[maxn];
char ans[maxn];
int ans_;
int m,n;
void judge(int pos)
...
分类:
其他好文 时间:
2014-07-19 23:26:29
阅读次数:
347
Run Length Encoding(RLE) is a simple form of compression. RLE consists of the process for searching for a repeated runs of a single character in a str...
分类:
其他好文 时间:
2014-07-17 14:02:18
阅读次数:
252
1989年,在苏格兰举行的国际足联17岁以下世界青年锦标赛上,当时DNA亲子鉴定网(www.dna-china.org)年仅15岁的兰普提一鸣惊人,大他两岁的球员只有用粗野的犯规来抑制他犀利的进攻。被兰普提球技所征服的苏格兰人坐不住了,格拉斯流浪者等欧洲职业球队纷纷向他抛出橄榄枝,不过兰普提最终.....
分类:
其他好文 时间:
2014-07-17 13:36:47
阅读次数:
229
Description
The Genographic Project is a research partnership between IBM and The National Geographic Society that is analyzing DNA from hundreds of thousands of contributors to map how the Earth...
分类:
其他好文 时间:
2014-07-16 17:29:25
阅读次数:
190
1.用命令导入导出表C:\Users\xiang>imp bjlims/bjlims@orcl file="c:\tjlims.dmp" full=yC:\Users\xiang>exp GDNA2/DNA file=D:\TEMP.DMP owner=GDNA2 buffer=1024
分类:
其他好文 时间:
2014-07-11 13:04:17
阅读次数:
188
Description
Magic Numbers
Write a program that finds and displays all pairs ofintegers and
such that:
neither nor
have any digits repeated; and , where
N is a given i...
分类:
其他好文 时间:
2014-07-10 20:10:06
阅读次数:
238