上一页 1 ··· 179 180 181 182 183 184 185 186 187 ··· 342 下一页
摘要: Error: samtoolssamtools: error while loading shared libraries: libbz2.so.1.0: cannot open shared object file: No such file or directory Solution: [roo 阅读全文
posted @ 2017-08-09 14:39 emanlee 阅读(3755) 评论(0) 推荐(0)
摘要: ../configure --prefix=/home/zzhy/wd/software/glibc-2.14 错误:checking LD_LIBRARY_PATH variable... contains current directoryconfigure: error: *** LD_LIB 阅读全文
posted @ 2017-07-11 23:50 emanlee 阅读(12482) 评论(0) 推荐(0)
摘要: ## String comparison is too slow in R language ## it will take 3 minutes, it is too slow date() strArray1<-rep("1234567890",10000) strArray2<-rep("1234567890",10000) tt<-0 for(xx in 1:10000) { ... 阅读全文
posted @ 2017-07-05 18:27 emanlee 阅读(292) 评论(0) 推荐(0)
摘要: 常见与正则表达式相关的函数: 这里是对参数进行一个解释说明。 参数 说明 pattern 正则表达式 x, text 字符向量或字符对象,在R 3.0.0后版本中,最大支持超过2^31个的字符元素。 ignore.case 默认FALSE,表示区分大小写,TRUE时表示不区分大小写。 perl 是否 阅读全文
posted @ 2017-07-04 19:56 emanlee 阅读(3840) 评论(0) 推荐(0)
摘要: 获取当前日期和时间 在Java中容易得到当前的日期和时间。可以使用一个简单的Date对象的toString()方法,如下所示打印当前日期和时间: import java.util.Date; public class DateDemo { public static void main(String 阅读全文
posted @ 2017-06-19 22:37 emanlee 阅读(1146) 评论(0) 推荐(0)
摘要: String sourceStr = "1,2,3,4,5"; String[] sourceStrArray = sourceStr.split(","); for (int i = 0; i < sourceStrArray.length; i++) { System.out.println(sourceStrArray[i]); } 阅读全文
posted @ 2017-06-19 21:18 emanlee 阅读(1602) 评论(0) 推荐(0)
摘要: 问题描述:新安装的myeclipse 2014,代码编辑器中汉字很小看不清解决办法:调整字体即可。通过菜单Windows——Preferences,输入font过滤选择Colors and Fonts选项,右边选择Basic——Text Font,点击Edit修改字体,将字体属性的脚本由“西欧语言” 阅读全文
posted @ 2017-06-08 18:14 emanlee 阅读(2463) 评论(0) 推荐(1)
摘要: 1. 文件系统介绍 R语言对文件系统的操作,包括文件操作和目录操作,函数API都定义在base包中。 2. 目录操作 2.1 查看目录 查看当前目录下的子目录。 查看当前目录的子目录和文件。 查看当前目录的子目录和文件,同dir()函数。 查看完整的目录信息。 2.2 创建目录 创建一个3级子目录. 阅读全文
posted @ 2017-06-07 21:35 emanlee 阅读(4352) 评论(0) 推荐(0)
摘要: 1. ;被分号(;)所分隔的命令会连续的执行下去,就算是错误的命令也会继续执行后面的命令。# lld ; echo "ok" ; lok-bash: lld: command not foundok-bash: lok: command not found2. && 命令被 && 所分隔,那么命令也 阅读全文
posted @ 2017-06-07 08:58 emanlee 阅读(641) 评论(0) 推荐(0)
摘要: aaa.R Args <- commandArgs()cat("Args[1]=",Args[1],"\n")cat("Args[2]=",Args[1],"\n")cat("Args[3]=",Args[3],"\n")cat("Args[4]=",Args[4],"\n")cat("Args[5 阅读全文
posted @ 2017-06-01 21:40 emanlee 阅读(8283) 评论(0) 推荐(0)
上一页 1 ··· 179 180 181 182 183 184 185 186 187 ··· 342 下一页