上一页 1 ··· 166 167 168 169 170 171 172 173 174 ··· 324 下一页
摘要: shell中可能经常能看到:>/dev/null 2>&1 eg:sudo kill -9 `ps -elf |grep -v grep|grep $1|awk '{print $4}'` 1>/dev/null 2>/dev/null 命令的结果可以通过%>的形式来定义输出 /dev/null 代 阅读全文
posted @ 2016-04-20 21:18 emanlee 阅读(30739) 评论(0) 推荐(0) 编辑
摘要: #mysqldump --help 1.mysqldump的几种常用方法:(1)导出整个数据库(包括数据库中的数据) mysqldump -u username -p dbname > dbname.sql (2)导出数据库结构(不含数据) mysqldump -u username -p -d d 阅读全文
posted @ 2016-04-19 21:25 emanlee 阅读(22064) 评论(0) 推荐(0) 编辑
摘要: ## 思路:以HWI开头,并且:相邻两行的第一个字段完全相同;awk 'BEGIN{ last_col_1="xxxxxx"; last_row="bbbbbbbbbbb";} $1 ~ /HWI/{ if($1 == last_col_1) {print last_row; print $0;} 阅读全文
posted @ 2016-04-14 14:49 emanlee 阅读(1100) 评论(0) 推荐(0) 编辑
摘要: The figure 1a does not draw any lines, while the figure 1b works well.The key concept is “group” in aes.The rule is simple: So, by specifying group=g 阅读全文
posted @ 2016-04-10 18:48 emanlee 阅读(5585) 评论(0) 推荐(0) 编辑
摘要: x<-data.frame(apple=c(1,4,2,3),pear=c(4,8,5,2)) x # apple pear # 1 1 4 # 2 4 8 # 3 2 5 # 4 3 2 x$banana<-c(9,5,6,2) x # apple pear banana # 1 1 4 9 # 2 ... 阅读全文
posted @ 2016-04-10 18:46 emanlee 阅读(17285) 评论(3) 推荐(1) 编辑
摘要: ggplot2中的legend包括四个部分: legend.tittle, legend.text, legend.key, legend.backgroud。针对每一部分有四种处理方式:element_text()绘制标签和标题,可控制字体的family, face, colour, size, 阅读全文
posted @ 2016-04-10 18:44 emanlee 阅读(35892) 评论(0) 推荐(1) 编辑
摘要: library(ggplot2) REF: http://www.cookbook-r.com/Graphs/Plotting_means_and_error_bars_%28ggplot2%29/ http://www.rdocumentation.org/packages/bear/functi 阅读全文
posted @ 2016-04-10 09:50 emanlee 阅读(1550) 评论(0) 推荐(0) 编辑
摘要: 数学上,线性变换的特征向量(本征向量)是一个非退化的向量,其方向在该变换下不变。该向量在此变换下缩放的比例称为其特征值(本征值)。 一个线性变换通常可以由其特征值和特征向量完全描述。特征空间是相同特征值的特征向量的集合。“特征”一词来自德语的eigen。1904年希尔伯特首先 在这个意义下使用了这个 阅读全文
posted @ 2016-04-09 18:58 emanlee 阅读(6270) 评论(0) 推荐(0) 编辑
摘要: 在SAM输出的结果中每一行都包括十二项通过Tab分隔(\t),从左到右分别是: 1 QNAME,序列的名字(Read的名字) 2 FLAG, 概括出一个合适的标记,各个数字分别代表 1 序列是一对序列中的一个 2 比对结果是一个pair-end比对的末端 4 没有找到位点 8 这个序列是pair中的 阅读全文
posted @ 2016-04-08 09:24 emanlee 阅读(8514) 评论(0) 推荐(1) 编辑
摘要: windows tomcat 优化 1. tomcat conf server.xml 在server.xml中修改以一部分,增加节点数目,可以很好的提高性能: <Connector port="8080" maxHttpHeaderSize="8192" maxThreads="150" minS 阅读全文
posted @ 2016-04-07 21:28 emanlee 阅读(2185) 评论(0) 推荐(0) 编辑
上一页 1 ··· 166 167 168 169 170 171 172 173 174 ··· 324 下一页