You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
How do I constrain the Y-axis for stat_coverage? Specifying ylim=(0,150) and ymax=150 doesn't work in aes() and prints "Error: subscript contains invalid names" but works without that part. Because coverage is so varied, I'd like to: (1) identify excess coverage sites, (2) constrain the coverage plot to something reasonable, say 150x, and (3) overlay excess coverage sites in red.
How do I constrain the Y-axis for stat_coverage? Specifying
ylim=(0,150)
andymax=150
doesn't work in aes() and prints "Error: subscript contains invalid names" but works without that part. Because coverage is so varied, I'd like to: (1) identify excess coverage sites, (2) constrain the coverage plot to something reasonable, say 150x, and (3) overlay excess coverage sites in red.ggplot() + stat_coverage(short.bam, geom = 'line', col = 'blue', alpha = 0.2, aes(ymax=150)) + plotExcessCovSites
The text was updated successfully, but these errors were encountered: