摘要: # 函数必须在使用前定义 # 如果不写return,将以最后一条命令运行结果,作为返回值。 return后跟数值n(0-255) myFistFunc(){ read a read b return $(($a+$b))} # 调用时直接写函数名字,不要加括号myFistFunc # $?获得函数的 阅读全文
posted @ 2017-02-20 15:47 陆离可 阅读(160) 评论(0) 推荐(0) 编辑
摘要: ××××××××××××××××××××IF-ELSE××××××××××××××××××××××××××××× 阅读全文
posted @ 2017-02-20 12:57 陆离可 阅读(139) 评论(0) 推荐(0) 编辑
摘要: #1. shell 基本运算符有:算数、关系、布尔、字符串、文件测试运算符#2. 原生bash不支持简单的数学运算,可使用awk和expr(最常用)echo `expr 1 + 2`# 反引号;表达式和运算符之间要有空格,例如 2+2 是不对的a=1b=2# + - * / % = == !=ech 阅读全文
posted @ 2017-02-20 09:58 陆离可 阅读(125) 评论(0) 推荐(0) 编辑
摘要: ××××××××××××××××××××××××××××××下面是echo××××××××××××××××××× 阅读全文
posted @ 2017-02-19 22:11 陆离可 阅读(219) 评论(0) 推荐(0) 编辑
摘要: #在执行shell脚本时,带参数,如./test.sh 1 2 3,则在脚本test.sh内,参数表示为$n的形式,$1为第一个参数,以此类推。 echo "第一个参数为:$1"; echo "参数个数为:$#"; echo "传递的参数作为一个字符串显示:$*"; 阅读全文
posted @ 2017-02-19 22:01 陆离可 阅读(144) 评论(0) 推荐(0) 编辑
摘要: #!/bin/bash # online test tool: http://www.shucunwang.com/RunCode/shell/ name="pxy"#Attention for variables' names:#1. No space between "name" and "=" 阅读全文
posted @ 2017-02-19 21:45 陆离可 阅读(162) 评论(0) 推荐(0) 编辑
摘要: 1. Shell is a program written in C. It provides an interface for users to access to the service of os kernal. Windows Explorer is a typical graphic in 阅读全文
posted @ 2017-02-19 21:43 陆离可 阅读(231) 评论(0) 推荐(0) 编辑
摘要: import numpy from biom.table import Table # 10*4 matrix, [0, 39] data = numpy.arange(40).reshape(10, 4) sample_ids = ['S%d' % i for i in range(4)] obs 阅读全文
posted @ 2017-02-10 16:21 陆离可 阅读(305) 评论(0) 推荐(0) 编辑
摘要: Part 1 基本概念 因变量:待检验理论重点关注的,受多个变量影响的变量。(实际考察的,结果) 自变量:影响因变量变化的变量。 因子:重点关注的自变量。 控制变量(control variables):其他变量都应尽可能控制以突出因子的作用 confounding variables:对其他自变量 阅读全文
posted @ 2017-02-10 15:16 陆离可 阅读(189) 评论(0) 推荐(0) 编辑
摘要: The Biological Observation Matrix (BIOM) format http://biom-format.org/ biom-format有两种方式安装: 1. python pkg: pip install numpy 由于最新版的biom-format还不支持pyth 阅读全文
posted @ 2017-02-09 16:35 陆离可 阅读(1493) 评论(0) 推荐(0) 编辑