码迷,mamicode.com
首页 >  
搜索关键字:convert standalone    ( 5511个结果
maf error
当用samtools把sam转化成bam时出错,出现以下提示,主要是因为sam文件由maf-convert转化而来,maf-convert只能处理两条序列的比对文件。因此如若想得到多条序列的bam文件,只能两两比对文件转化成bam文件,再用samtools merge 对多个bam文件进行合并。
分类:其他好文   时间:2015-07-15 12:50:36    阅读次数:112
leetcode Roman to integer
题目: Given a roman numeral, convert it to an integer.Input is guaranteed to be within the range from 1 to 3999.要把罗马数字转换为整数, 罗马数字自行百度code:class Solution { public: int romanToInt(string s) {...
分类:其他好文   时间:2015-07-14 23:58:07    阅读次数:401
ASP.NET OAuth:access token的加密解密,client secret与refresh token的生成
在ASP.NET OWIN OAuth(Microsoft.Owin.Security.OAuth)中,access token 的默认加密方法是:1) System.Security.Cryptography.DpapiDataProtector.Protect();2) Convert.ToBa...
分类:数据库   时间:2015-07-14 23:51:15    阅读次数:448
闰年、平年
//自己做的 //判断闰年还是平年 Console.WriteLine("请输入年份"); int a = Convert.ToInt32(Console.ReadLine()); if (a > 0 && a ...
分类:其他好文   时间:2015-07-14 22:29:21    阅读次数:245
三数中找最大值
static void Main11三数中找最大值(string[] args) { //1.输入三个数,找出最大的输出 Console.WriteLine("请输入第一个数"); int a = Convert.ToI...
分类:其他好文   时间:2015-07-14 22:22:12    阅读次数:210
去掉两个最高分、去掉两个最低分,求平均分
static void Main47求平均分(string[] args) { //去掉两个最高分,去掉两个最低分,求平均分 Console.WriteLine("请输入分数的个数:"); int a = Convert...
分类:其他好文   时间:2015-07-14 22:12:28    阅读次数:126
手机号抽奖
static void Main25手机号抽奖(string[] args) { //手机号抽奖,自己做的 Console.WriteLine("请输入手机号的个数"); int n =Convert.ToInt32 (...
分类:移动开发   时间:2015-07-14 22:06:51    阅读次数:150
[linux]segvcatch简单使用
https://code.google.com/p/segvcatch/This is a crossplatform C++ library designed to convert a hardware exceptions, such as segmentation fault, or floa...
分类:系统相关   时间:2015-07-14 20:19:48    阅读次数:892
Sql日期时间格式转换
sql server2000中使用convert来取得datetime数据类型样式(全)日期数据格式的处理,两个示例:CONVERT(varchar(16), 时间一, 20) 结果:2007-02-01 08:02/*时间一般为getdate()函数或数据表里的字段*/CONVERT(varcha...
分类:数据库   时间:2015-07-14 17:00:09    阅读次数:154
c#日记
//返回一个指定类型的对象,该对象的值等于指定对象的值 object obj1 = Convert.ChangeType(dw[findRowIndex][cname[i]], dw[findRowIndex][cname[i]].GetType());
分类:Windows程序   时间:2015-07-14 15:08:39    阅读次数:146
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!