Entering edit mode
Hello everyone,
I would like to create coverage plots like IGV
(like we obtain after autoscale
)
How I am trying to do?
- Read the bam files with
windowCounts
fromcsaw
package`. - Normalized the read counts.
- code to make data track:
track <- DataTrack(range = data,
genome = gen,
type = "histogram",
name = "normalized track",
window = -1,
chromosome = chr,
color = col,
fill=col, col.histogram=col,
background.title = rcol,
trackType = "DataTrack")
Plots I a getting are not same as they are displayed on IGV
How can I improve my coverage plot?