Skip to content
Navigation Menu
Toggle navigation
Sign in
In this repository
All GitHub Enterprise
↵
Jump to
↵
No suggested jump to results
In this repository
All GitHub Enterprise
↵
Jump to
↵
In this user
All GitHub Enterprise
↵
Jump to
↵
In this repository
All GitHub Enterprise
↵
Jump to
↵
Sign in
Reseting focus
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
{{ message }}
ahryhorzhevska
/
mpip_cc_smk_tutorial
Public
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Issues
0
Pull requests
0
Actions
Projects
0
Security
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security
Insights
Files
3193b1d
scripts
2022_04_13_mpip_cc_smk_presentation.pdf
README.md
Snakemake
plot.R
Breadcrumbs
mpip_cc_smk_tutorial
/
plot.R
Blame
Blame
Latest commit
History
History
15 lines (10 loc) · 378 Bytes
Breadcrumbs
mpip_cc_smk_tutorial
/
plot.R
Top
File metadata and controls
Code
Blame
15 lines (10 loc) · 378 Bytes
Raw
library(ggplot2) gene <- read.csv2(snakemake@input[[1]], dec = ",") colnames(gene) <- "id" gene$id <- as.numeric(gene$id) print(paste0("I'm plotting the file ", snakemake@wildcards[["file"]])) pdf(file = snakemake@output[[1]]) ggplot(gene, aes(x = id)) + geom_density(alpha = .2, fill = "#FF6666") + ggtitle(paste0("Plot "), snakemake@wildcards[["file"]]) dev.off()
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
You can’t perform that action at this time.