install hisat2
install stringtie
install samtools
#make sure all program are in $PATH
This site is to serve as my note-book and to effectively communicate with my students and collaborators. Every now and then, a blog may be of interest to other researchers or teachers. Views in this blog are my own. All rights of research results and findings on this blog are reserved. See also http://youtube.com/c/hongqin @hongqin
Showing posts with label demo. Show all posts
Showing posts with label demo. Show all posts
Monday, November 14, 2016
Tuesday, July 12, 2016
changing table demo in R
changing table demo in R
tb = data.frame(matrix(, nrow=1, ncol=3)) #set up a skeleton table
names(tb) = c('x', 'y', 'z')
for( seed in c(12345, 20160711, -1881, 9999.1234)) {
set.seed(seed);
x = rnorm(1)
y = runif(1)
z = rbinom(1, 1, 0.5)
tb = rbind(tb, c(x, y, z))
}
tb= tb[!is.na(tb[,1]), ]
tb
## x y z
## 2 0.5855288 0.7609823 1
## 3 -1.0876501 0.7777066 1
## 4 -0.4376543 0.9012065 0
## 5 1.0840991 0.8004162 0
Wednesday, April 16, 2014
todo: John Snow's cholera data, other math data from UAH
http://www.math.uah.edu/stat/data/Snow.html
http://www.math.uah.edu/stat/data/index.html
Labels:
bio233,
case study,
data resources,
demo,
R,
todo
Subscribe to:
Posts (Atom)