Skip to content

Commit

Permalink
resolve Hoohm#83 Hoohm#84
Browse files Browse the repository at this point in the history
  • Loading branch information
TomKellyGenetics committed Nov 15, 2019
1 parent ceeed64 commit b559a06
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions scripts/plot_violine.R
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ gg <- ggplot(meta.data, aes(x = nUMI, y = nCounts, color = orig.ident)) +

# dev.new()
# htmlwidgets::saveWidget(ggplotly(gg), file.path(getwd(),snakemake@output$html_umivscounts))
ggsave(gg, file = file.path(getwd(), snakemake@output$pdf_umivscounts), width = 12, height = 7)
ggsave(gg, file = file.path(snakemake@output$pdf_umivscounts), width = 12, height = 7)

# how about unaligned reads/UMI?
# Note(Seb): raw.data is actually filtered data i.e. nr of genes likely to be smaller than input data!
Expand Down Expand Up @@ -184,7 +184,7 @@ gg <- ggplot(meta.data, aes(x = nUMI, y = nGene, color = orig.ident)) +

# dev.new()
# htmlwidgets::saveWidget(ggplotly(gg),
# file.path(getwd(), snakemake@output$html_umi_vs_gene))
# file.path(snakemake@output$html_umi_vs_gene))
ggsave(gg, file = snakemake@output$pdf_umi_vs_gene, width = 12, height = 7)


Expand All @@ -201,7 +201,7 @@ gg <- ggplot(meta.data, aes(x = nCounts, y = nGene, color = orig.ident)) +

# dev.new()
# htmlwidgets::saveWidget(ggplotly(gg),
# file.path(getwd(), snakemake@output$html_count_vs_gene))
# file.path(snakemake@output$html_count_vs_gene))

ggsave(gg, file = snakemake@output$pdf_count_vs_gene, width = 12, height = 7)

Expand Down

0 comments on commit b559a06

Please sign in to comment.