Skip to content

Commit

Permalink
Make plot always run to 100%
Browse files Browse the repository at this point in the history
  • Loading branch information
s-andrews committed Oct 21, 2021
1 parent db526b4 commit 840234f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion R/create_sleuth_graph.R
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@ sleuth_data %>%
geom_jitter(height=0, width=0.3) +
ggtitle(input_file) +
ylab("ALT percentage") +
scale_color_brewer(palette = "Set1") -> sleuth_plot
scale_color_brewer(palette = "Set1") +
coord_cartesian(ylim=c(0,100)) -> sleuth_plot

ggsave(output_file,device = format, plot=sleuth_plot,width = width, height = height, units = "in", dpi = 200)

2 changes: 1 addition & 1 deletion sleuth.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
import subprocess
import sys

VERSION = 1.1
VERSION = 1.2

def process_file(options):
if not options.quiet:
Expand Down

0 comments on commit 840234f

Please sign in to comment.