Skip to content

Commit

Permalink
Update QC_nf-core.Rmd
Browse files Browse the repository at this point in the history
made summary graph x-axis labels vertical and removed legend.
  • Loading branch information
eberdan authored Jun 3, 2024
1 parent ef6c6d7 commit b25e7e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion inst/rmarkdown/templates/rnaseq/skeleton/QC/QC_nf-core.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ meta_df <- data.frame(meta_df[,!(colnames(meta_df) %in% c("fastq_1", "fastq_2",
ggplot(meta_df, aes(.data[[factor_of_interest]],
fill = .data[[factor_of_interest]])) +
geom_bar() + ylab("") + xlab("") + ylab("# of samples") +
scale_fill_cb_friendly()
scale_fill_cb_friendly() + theme(axis.text.x=element_text(angle = 90, vjust = 0.5), legend.position = "none")
```


Expand Down

0 comments on commit b25e7e9

Please sign in to comment.