-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathEpinano_Plot.R
More file actions
157 lines (143 loc) · 7.27 KB
/
Copy pathEpinano_Plot.R
File metadata and controls
157 lines (143 loc) · 7.27 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
#!/usr/bin/env Rscript
args <- commandArgs (trailingOnly=TRUE)
if (length(args) == 0 ) {
stop ("\n\nUSAGE:\n------------------------------------------------------------------------------------------------------
Rscript Epinano_Plot.R <modification prediction results from Epinano_DiffErr.R and Epinano_Predict.py> \n\n")
}
type <<- "pdf"
if (length (args) == 2 & args[2] == "png") {
type <<- 'png'
}
suppressMessages (library(reshape2))
suppressMessages (library(ggplot2))
suppressMessages (library(ggrepel))
suppressMessages (library(tidyverse))
suppressMessages (library(stringr))
diff_err_scatter_plot <- function (df, feature, out_fig) {
if (type == "png") {
png (filename = out_fig, height=5,width=20)
} else {
pdf(file = out_fig, height=5,width=20,onefile=FALSE)
}
ko_feature <- colnames(df)[2]
wt_feature <- colnames(df)[3]
mod = df[df$lm_residuals_z_scores_prediction=="mod",]
title = paste ('ko_',feature,' ~ ','wt_',feature,sep="")
print(ggplot(df, aes_string(x=ko_feature, y=wt_feature)) +
geom_point(size=2, color="grey")+
geom_abline(slope=1, intercept=0, linetype="dashed")+
geom_point(data=mod, size=2, color="red")+
geom_text_repel (data=mod, aes(label=Position), color='red',
box.padding = 1,
point.padding = 1,
segment.color = 'green') +
ggtitle(title) +
xlab(ko_feature) +
ylab(wt_feature) +
theme_bw() +
xlim (0,1) + ylim (0,1) +
theme(axis.text.x = element_text(face="bold", color="black",size=11),
axis.text.y = element_text(face="bold", color="black", size=11),
plot.title = element_text(color="black", size=15, face="bold.italic",hjust = 0.5),
axis.title.x = element_text(color="black", size=15, face="bold"),
axis.title.y = element_text(color="black", size=15, face="bold"),
panel.background = element_blank(),
axis.line = element_line(colour = "black", size=0.5),
legend.title = element_text(color = "black", size = 15,face="bold"),
legend.text = element_text(color = "black", size=15),
panel.grid.major = element_blank(), panel.grid.minor = element_blank()
) + coord_fixed()
)
#ggsave (out_fig)
}
diff_err_bar_plot <- function (df, feature, out_fig) {
if (type == "png") {
png (filename = out_fig, height=5,width=20)
} else {
pdf(file = out_fig, height=5,width=20,onefile=FALSE)
}
df$tmp_feature <- df[,4] # in order to pass name to ggplot
df$Position <- as.integer (as.character (separate(data=df, col=chr_pos, into =c("chr", "pos"),sep=" ")$pos))
mod = df[df$z_score_prediction=="mod",]
#write.table(df, file = paste(out_pdf, '.csv',sep=""),sep=",", quote=FALSE, row.names=FALSE )
print(ggplot(df, aes_string(x="Position", y="tmp_feature")) +
geom_bar(stat = "identity", width=0.1, fill="#2a7886") +
geom_text_repel(data=mod, aes_string("Position", "tmp_feature", label="Position"), color="red", segment.size = 1, segment.color = "black")+
ggtitle(paste(chr, feature, sep="_"))+
xlab("Positions")+
ylab(feature) +
theme_bw()+
theme(axis.text.x = element_text(face="bold", color="black",size=11),
axis.text.y = element_text(face="bold", color="black", size=11),
plot.title = element_text(color="black", size=24, face="bold.italic",hjust = 0.5),
axis.title.x = element_text(color="black", size=15, face="bold"),
axis.title.y = element_text(color="black", size=15, face="bold"),
panel.background = element_blank(),
legend.position = "none",
axis.line = element_line(colour = "black", size=0.5))
)
dev.off()
#ggsave (out_fig)
}
svm_probm_plot <- function (inputfile, out_prefix) {
df <- read.csv (inputfile, header=T)[,c("Window","Ref","Strand","ProbM","prediction")]
split <- data.frame (str_split_fixed (df$Window, '-', 2))
split$middle <- as.integer (as.character(split$X1)) + 2
df$Position <- split$middle
df<- df[,c("Ref", "Position","Strand", "ProbM","prediction")]
barplot <- function (df, out_fig) {
if (type %in% "png") {
png (file = out_fig, height=5,width=20)
} else {
pdf(file = out_fig, height=5,width=20,onefile=FALSE)
}
mod = df[df$prediction=="mod",]
print ( ggplot (df, aes_string(x="Position", y="ProbM")) +
ggtitle ("Probability of modification") +
geom_bar (stat = "identity", width=0.1, fill="#2a7886") +
xlab ("Positions")+
ylab ("ProbM") +
theme_bw ()+
theme (axis.text.x = element_text(face="bold", color="black",size=11),
axis.text.y = element_text(face="bold", color="black", size=11),
plot.title = element_text(color="black", size=24, face="bold.italic",hjust = 0.5),
axis.title.x = element_text(color="black", size=15, face="bold"),
axis.title.y = element_text(color="black", size=15, face="bold"),
panel.background = element_blank(),
legend.position = "none",
axis.line = element_line(colour = "black", size=0.5)) +
geom_text_repel (data=mod, aes(x=Position, y=ProbM, label=Position), color="red", box.padding=3, point.padding=3, segment.size = 0.6, segment.color = "green")
)
dev.off()
}
for (chr in unique(df$Ref)) {
sub <- df [df$Ref == chr,]
out_fig = paste (chr, out_prefix, ".ProbM.", type, sep="")
barplot (sub, out_fig)
}
}
## main
df <- read.csv (args[1], header = TRUE)
if ("z_score_prediction" %in% colnames (df)) {
feature <- gsub ('delta_','',colnames (df)[4])
Chrs <- unique (separate(data=df, col=chr_pos, into =c("chr", "pos"),sep=" ")$chr)
for (chr in Chrs) {
sub <- df[grepl(chr, df$chr_pos, fixed=TRUE), ]
out_fig = paste (chr,".delta_",feature,".",type, sep="")
diff_err_bar_plot (sub, feature, out_fig)
}
} else if ("lm_residuals_z_scores_prediction" %in% colnames(df)) {
feature <- gsub ('ko_','',colnames(df)[2])
Chrs <- unique (separate(data=df, col=chr_pos, into =c("chr", "pos"),sep=" ")$chr)
df$Position <- as.integer (as.character (separate(data=df, col=chr_pos, into =c("chr", "pos"),sep=" ")$pos))
for (chr in Chrs) {
sub <- df[grepl(chr, df$chr_pos, fixed=TRUE), ]
out_fig = paste (chr,".",feature,".lm_regression.",type, sep="")
diff_err_scatter_plot (sub, feature, out_fig)
}
} else if ('dist' %in% colnames(df) & 'ProbM' %in% colnames (df)) {
prefix <- str_split (args[1], "MODEL", 2)[[1]][2]
svm_probm_plot (args[1], prefix)
}
#add current intensity values analysis
#("SVM_Predict_delta_features.mis3.del3.q3.MODEL.rrach.deltaQ3.deltaMis3.deltaDel3.linear.dump.csv","MODEL",2)[[1]][2]