Skip to content

Commit

Permalink
updated labels counting plots
Browse files Browse the repository at this point in the history
  • Loading branch information
vyepez88 committed Sep 9, 2022
1 parent a9b9e1e commit 62194fd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions drop/modules/aberrant-expression-pipeline/Counting/Summary.R
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ p_depth <- ggplot(coverage_dt, aes(x = count_rank, y = read_count, col= isExtern
geom_point(size = 3,show.legend = has_external) +
theme_cowplot() +
background_grid() +
labs(title = "Mapped reads in BAM file", x="Sample Rank", y = "Total Mapped Reads") +
labs(title = "Read Counts", x="Sample Rank", y = "Reads Counted") +
ylim(c(0,NA)) +
scale_color_brewer(palette="Dark2")

Expand Down Expand Up @@ -100,8 +100,8 @@ p_sf_cov <- ggplot(coverage_dt, aes(read_count, size_factors, col = isExternal))
ylim(c(0,NA)) +
theme_cowplot() +
background_grid() +
labs(title = 'Size Factors vs. Reads Mapped',
x = 'Total Mapped Reads', y = 'Size Factors') +
labs(title = 'Size Factors vs. Read Counts',
x = 'Reads Counted', y = 'Size Factors') +
scale_color_brewer(palette="Dark2")

#+ sizeFactors, fig.height=6, fig.width=12
Expand Down

0 comments on commit 62194fd

Please sign in to comment.