最近在做组装稻瘟病的基因组。 估计的基因组大小为40M。 由于没有参考基因组,进行de
novo assembly。 用HGAP策略。需要的有用的pacbio数据量应为400M左右, 选用的seed read 最小长度为6K,
seed的覆盖度应在20倍左右。拼接流程为:1,filtering. 2...
分类:
其他好文 时间:
2014-06-16 10:59:10
阅读次数:
424
NSString *tempA = @"123";NSString *tempB =
@"456";1,字符串拼接NSString *newString = [NSString
stringWithFormat:@"%@%@",tempA,tempB];2,字符转intint intString =...
分类:
其他好文 时间:
2014-06-16 10:46:44
阅读次数:
170
示例中有详细注释,直接上代码:
#include
#include
using std::cout;
using std::endl;
using std::string;
int main(void){
string str1="hi,test,hello";
string str2="test";
//搜索子串,返回子串第一个字符的索引
cout << st...
分类:
编程语言 时间:
2014-06-15 16:19:55
阅读次数:
233
string str = "大龙喜欢zzm";
string s1 = str.Substring(0, 2);
string s2 = str.Substring(2, 2);
string s3 = str.Substring(4);
Console.WriteLine(str[0]);
...
分类:
其他好文 时间:
2014-06-15 08:14:34
阅读次数:
207
ajax的核心是通过XmlHttpRequest获取非本页内容,而jsonp的核心则是动态添加然后php方就会执行backfunc(传递参数);所以流程就会分二步:1:针对jsonp的预处理,主要是转化拼接这些参数,然后处理缓存,因为jsonp的方式也是靠加载script所以要关闭浏览器缓存insp...
分类:
Web程序 时间:
2014-06-15 06:22:44
阅读次数:
355
NSString* string;// 结果字符串02NSString* string1,
string2;//已存在的字符串,需要将string1和string2连接起来0304//方法1.05string = [NSString
initWithFormat:@"%@,%@", string1,...
分类:
其他好文 时间:
2014-06-13 19:07:36
阅读次数:
211
.Net的字符串其实还是有很多东西可以写的。但是最近在学习SQL
Server,只好先做下最近学习到的一些巧用,妙用之类的东西。
巧用String.Join拼接字串数组,字符串集合为字符串。如果在之前,一个foreach早就敲上去了。虽然效率差多,但是少了个foreach,还是美观不少的。cla.....
分类:
Web程序 时间:
2014-06-12 09:11:35
阅读次数:
244