Hi Everyone,
I am trying to plot a histogram in R using this command which is serving my purpose
x <- read.table(file="cov.txt",header =FALSE)
When you look at the graph(see attached) then from 715 to 777 is my CODING REGION. I want to make a rectangular bar from position 715-777 and place it on the top of the graph. How can I do it
I wrote this and try to add lines or points but was not able to do it
firstCodonCdr1 = 239
lastCodonCdr1 = 259
cdr1NTs = ((firstCodonCdr1-1)*3+1)
3*lastCodonCdr1)
cdrPositions = cdr1NTs
Any help !!
Thanks
I am trying to plot a histogram in R using this command which is serving my purpose
x <- read.table(file="cov.txt",header =FALSE)
When you look at the graph(see attached) then from 715 to 777 is my CODING REGION. I want to make a rectangular bar from position 715-777 and place it on the top of the graph. How can I do it
I wrote this and try to add lines or points but was not able to do it
firstCodonCdr1 = 239
lastCodonCdr1 = 259
cdr1NTs = ((firstCodonCdr1-1)*3+1)

cdrPositions = cdr1NTs
Any help !!
Thanks
Comment