DNA pattern: load data
# read the data: CMV palindrome locations, needs network access
cmv=read.table(file="http://www.stat.berkeley.edu/users/statlabs/data/hcmv.data", header=T)
# convert the data to a vector
posvec = cmv[,1]
# length of CMV DNA
dnalen = 229354
cmv=read.table(file="http://www.stat.berkeley.edu/users/statlabs/data/hcmv.data", header=T)
# convert the data to a vector
posvec = cmv[,1]
# length of CMV DNA
dnalen = 229354

<< Home