3月 08

实用的SHELL脚本

  • 实际问题

假设有成百上千个GEO数据文件,每个文件中都有好多行的基因表达数据,文件的第一列是NCBI geneid。现在想从这许多GSE中提取出每个geneid的基因表达量,即根据geneid来对原始数据进行分组。如何实现呢?下面是使用shell的一种解决办法。……【阅读全文】

3月 07

LAMP兄弟连Linux视频教程

  • 讲师

李明,LAMP兄弟连技术总监、CSDN特聘讲师、HRBAR人力资源学院讲师,火龙果软件技术顾问、中农大网院特聘讲师,计算机行业十年从业经验,历任即时科研集团研究院副院长、PHPChina 技术总监、金蝶软件项目经理等职。曾获微软认证讲师、中国UNIX用户协会讲师、即时科研集团金牌讲师。主持编写出版《完美应用Ubuntu》《UNIX系统管理实用教程》《Solaris8系统管理员指南》等多本计算机图书。……【阅读全文】

3月 04

【推荐】R的IDE/GUI

RStudio™ is a new integrated development environment (IDE) for R. RStudio combines an intuitive user interface with powerful coding tools to help you get the most out of R.
RStudio brings together everything you need to be productive with R in a single, customizable environment. Its intuitive interface and powerful coding tools help you get work done faster.
RStudio is available for all major platforms including Windows, Mac OS X, and Linux.……【阅读全文】

2月 28

常用的文本处理shell命令

  • 显示属性,查看内容

file:确定文件类型
cat:连接文件并在标准输出上输出
tac:反转显示文件
dog:better than cat
nl:显示时输出行号
more:在显示器上阅读文件的过滤器
less:opposite of more,一次显示一页文本
head:输出文件的开始部分
tail:输出文件的末尾部分
Continue reading

2月 28

Bash Shell 快捷键汇总

下面列出的快捷键均经过测试,但不保证中文注释完全正确!
快捷键很多,但常用的不多。没有必要全部记住,只需要熟记自己常用的几个就可以了。
不求最多,只求够用!边学边用,运指如飞!

  • CTRL组合快捷键

Ctrl + a 跳至行首
Ctrl + e 跳至行尾
Ctrl + b 左移一个字符
Ctrl + f 右移一个字符
Ctrl + 左方向键 向左移动至单词开头
Ctrl + 右方向键 向右移动至单词结尾
Continue reading