5
|
1 # ---------------------- load/install packages ----------------------
|
|
2
|
|
3 if (!("gridExtra" %in% rownames(installed.packages()))) {
|
|
4 install.packages("gridExtra", repos="http://cran.xl-mirror.nl/")
|
|
5 }
|
|
6 library(gridExtra)
|
|
7 if (!("ggplot2" %in% rownames(installed.packages()))) {
|
|
8 install.packages("ggplot2", repos="http://cran.xl-mirror.nl/")
|
|
9 }
|
|
10 library(ggplot2)
|
|
11 if (!("plyr" %in% rownames(installed.packages()))) {
|
|
12 install.packages("plyr", repos="http://cran.xl-mirror.nl/")
|
|
13 }
|
|
14 library(plyr)
|
|
15
|
|
16 if (!("data.table" %in% rownames(installed.packages()))) {
|
|
17 install.packages("data.table", repos="http://cran.xl-mirror.nl/")
|
|
18 }
|
|
19 library(data.table)
|
|
20
|
|
21 if (!("reshape2" %in% rownames(installed.packages()))) {
|
|
22 install.packages("reshape2", repos="http://cran.xl-mirror.nl/")
|
|
23 }
|
|
24 library(reshape2)
|
|
25
|
|
26 if (!("lymphclon" %in% rownames(installed.packages()))) {
|
|
27 install.packages("lymphclon", repos="http://cran.xl-mirror.nl/")
|
|
28 }
|
|
29 library(lymphclon)
|
|
30
|
|
31 # ---------------------- parameters ----------------------
|
|
32
|
|
33 args <- commandArgs(trailingOnly = TRUE)
|
|
34
|
|
35 infile = args[1] #path to input file
|
|
36 outfile = args[2] #path to output file
|
|
37 outdir = args[3] #path to output folder (html/images/data)
|
|
38 clonaltype = args[4] #clonaltype definition, or 'none' for no unique filtering
|
|
39 ct = unlist(strsplit(clonaltype, ","))
|
|
40 species = args[5] #human or mouse
|
|
41 locus = args[6] # IGH, IGK, IGL, TRB, TRA, TRG or TRD
|
|
42 filterproductive = ifelse(args[7] == "yes", T, F) #should unproductive sequences be filtered out? (yes/no)
|
|
43 clonality_method = args[8]
|
|
44
|
|
45
|
|
46 # ---------------------- Data preperation ----------------------
|
|
47
|
|
48 print("Report Clonality - Data preperation")
|
|
49
|
13
|
50 inputdata = read.table(infile, sep="\t", header=TRUE, fill=T, comment.char="", stringsAsFactors=F)
|
5
|
51
|
24
|
52
|
5
|
53 print(paste("nrows: ", nrow(inputdata)))
|
|
54
|
|
55 setwd(outdir)
|
|
56
|
|
57 # remove weird rows
|
|
58 inputdata = inputdata[inputdata$Sample != "",]
|
|
59
|
|
60 print(paste("nrows: ", nrow(inputdata)))
|
|
61
|
|
62 #remove the allele from the V,D and J genes
|
|
63 inputdata$Top.V.Gene = gsub("[*]([0-9]+)", "", inputdata$Top.V.Gene)
|
|
64 inputdata$Top.D.Gene = gsub("[*]([0-9]+)", "", inputdata$Top.D.Gene)
|
|
65 inputdata$Top.J.Gene = gsub("[*]([0-9]+)", "", inputdata$Top.J.Gene)
|
|
66
|
|
67 print(paste("nrows: ", nrow(inputdata)))
|
|
68
|
|
69 #filter uniques
|
|
70 inputdata.removed = inputdata[NULL,]
|
|
71
|
|
72 print(paste("nrows: ", nrow(inputdata)))
|
|
73
|
|
74 inputdata$clonaltype = 1:nrow(inputdata)
|
|
75
|
|
76 #keep track of the count of sequences in samples or samples/replicates for the front page overview
|
|
77 input.sample.count = data.frame(data.table(inputdata)[, list(All=.N), by=c("Sample")])
|
|
78 input.rep.count = data.frame(data.table(inputdata)[, list(All=.N), by=c("Sample", "Replicate")])
|
|
79
|
|
80 PRODF = inputdata
|
|
81 UNPROD = inputdata
|
|
82 if(filterproductive){
|
|
83 if("Functionality" %in% colnames(inputdata)) { # "Functionality" is an IMGT column
|
|
84 #PRODF = inputdata[inputdata$Functionality == "productive" | inputdata$Functionality == "productive (see comment)", ]
|
|
85 PRODF = inputdata[inputdata$Functionality %in% c("productive (see comment)","productive"),]
|
|
86
|
|
87 PRODF.count = data.frame(data.table(PRODF)[, list(count=.N), by=c("Sample")])
|
|
88
|
|
89 UNPROD = inputdata[inputdata$Functionality %in% c("unproductive (see comment)","unproductive"), ]
|
|
90 } else {
|
|
91 PRODF = inputdata[inputdata$VDJ.Frame != "In-frame with stop codon" & inputdata$VDJ.Frame != "Out-of-frame" & inputdata$CDR3.Found.How != "NOT_FOUND" , ]
|
|
92 UNPROD = inputdata[!(inputdata$VDJ.Frame != "In-frame with stop codon" & inputdata$VDJ.Frame != "Out-of-frame" & inputdata$CDR3.Found.How != "NOT_FOUND" ), ]
|
|
93 }
|
|
94 }
|
|
95
|
13
|
96 for(i in 1:nrow(UNPROD)){
|
|
97 if(!is.numeric(UNPROD[i,"CDR3.Length"])){
|
|
98 UNPROD[i,"CDR3.Length"] = 0
|
|
99 }
|
|
100 }
|
|
101
|
5
|
102 prod.sample.count = data.frame(data.table(PRODF)[, list(Productive=.N), by=c("Sample")])
|
|
103 prod.rep.count = data.frame(data.table(PRODF)[, list(Productive=.N), by=c("Sample", "Replicate")])
|
|
104
|
|
105 unprod.sample.count = data.frame(data.table(UNPROD)[, list(Unproductive=.N), by=c("Sample")])
|
|
106 unprod.rep.count = data.frame(data.table(UNPROD)[, list(Unproductive=.N), by=c("Sample", "Replicate")])
|
|
107
|
|
108 clonalityFrame = PRODF
|
|
109
|
|
110 #remove duplicates based on the clonaltype
|
|
111 if(clonaltype != "none"){
|
|
112 clonaltype = paste(clonaltype, ",Sample", sep="") #add sample column to clonaltype, unique within samples
|
|
113 PRODF$clonaltype = do.call(paste, c(PRODF[unlist(strsplit(clonaltype, ","))], sep = ":"))
|
|
114 PRODF = PRODF[!duplicated(PRODF$clonaltype), ]
|
|
115
|
|
116 UNPROD$clonaltype = do.call(paste, c(UNPROD[unlist(strsplit(clonaltype, ","))], sep = ":"))
|
|
117 UNPROD = UNPROD[!duplicated(UNPROD$clonaltype), ]
|
|
118
|
|
119 #again for clonalityFrame but with sample+replicate
|
|
120 clonalityFrame$clonaltype = do.call(paste, c(clonalityFrame[unlist(strsplit(clonaltype, ","))], sep = ":"))
|
|
121 clonalityFrame$clonality_clonaltype = do.call(paste, c(clonalityFrame[unlist(strsplit(paste(clonaltype, ",Replicate", sep=""), ","))], sep = ":"))
|
|
122 clonalityFrame = clonalityFrame[!duplicated(clonalityFrame$clonality_clonaltype), ]
|
|
123 }
|
|
124
|
|
125 prod.unique.sample.count = data.frame(data.table(PRODF)[, list(Productive_unique=.N), by=c("Sample")])
|
|
126 prod.unique.rep.count = data.frame(data.table(PRODF)[, list(Productive_unique=.N), by=c("Sample", "Replicate")])
|
|
127
|
|
128 unprod.unique.sample.count = data.frame(data.table(UNPROD)[, list(Unproductive_unique=.N), by=c("Sample")])
|
|
129 unprod.unique.rep.count = data.frame(data.table(UNPROD)[, list(Unproductive_unique=.N), by=c("Sample", "Replicate")])
|
|
130
|
|
131 PRODF$freq = 1
|
|
132
|
|
133 if(any(grepl(pattern="_", x=PRODF$ID))){ #the frequency can be stored in the ID with the pattern ".*_freq_.*"
|
|
134 PRODF$freq = gsub("^[0-9]+_", "", PRODF$ID)
|
|
135 PRODF$freq = gsub("_.*", "", PRODF$freq)
|
|
136 PRODF$freq = as.numeric(PRODF$freq)
|
|
137 if(any(is.na(PRODF$freq))){ #if there was an "_" in the ID, but not the frequency, go back to frequency of 1 for every sequence
|
|
138 PRODF$freq = 1
|
|
139 }
|
|
140 }
|
|
141
|
8
|
142 #make a names list with sample -> color
|
|
143 naive.colors = c('blue4', 'darkred', 'olivedrab3', 'red', 'gray74', 'darkviolet', 'lightblue1', 'gold', 'chartreuse2', 'pink', 'Paleturquoise3', 'Chocolate1', 'Yellow', 'Deeppink3', 'Mediumorchid1', 'Darkgreen', 'Blue', 'Gray36', 'Hotpink', 'Yellow4')
|
|
144 unique.samples = unique(PRODF$Sample)
|
|
145
|
|
146 if(length(unique.samples) <= length(naive.colors)){
|
|
147 sample.colors = naive.colors[1:length(unique.samples)]
|
|
148 } else {
|
|
149 sample.colors = rainbow(length(unique.samples))
|
|
150 }
|
|
151
|
|
152 names(sample.colors) = unique.samples
|
|
153
|
|
154 print("Sample.colors")
|
|
155 print(sample.colors)
|
5
|
156
|
|
157
|
|
158 #write the complete dataset that is left over, will be the input if 'none' for clonaltype and 'no' for filterproductive
|
|
159 write.table(PRODF, "allUnique.txt", sep="\t",quote=F,row.names=F,col.names=T)
|
18
|
160 #write.table(PRODF, "allUnique.csv", sep=",",quote=F,row.names=F,col.names=T)
|
25
|
161 write.table(UNPROD, "allUnproductive.txt", sep="\t",quote=F,row.names=F,col.names=T)
|
5
|
162
|
24
|
163 print("SAMPLE TABLE:")
|
|
164 print(table(PRODF$Sample))
|
|
165
|
5
|
166 #write the samples to a file
|
|
167 sampleFile <- file("samples.txt")
|
|
168 un = unique(inputdata$Sample)
|
|
169 un = paste(un, sep="\n")
|
|
170 writeLines(un, sampleFile)
|
|
171 close(sampleFile)
|
|
172
|
|
173 # ---------------------- Counting the productive/unproductive and unique sequences ----------------------
|
|
174
|
|
175 print("Report Clonality - counting productive/unproductive/unique")
|
|
176
|
|
177 #create the table on the overview page with the productive/unique counts per sample/replicate
|
|
178 #first for sample
|
|
179 sample.count = merge(input.sample.count, prod.sample.count, by="Sample", all.x=T)
|
|
180 sample.count$perc_prod = round(sample.count$Productive / sample.count$All * 100)
|
|
181 sample.count = merge(sample.count, prod.unique.sample.count, by="Sample", all.x=T)
|
|
182 sample.count$perc_prod_un = round(sample.count$Productive_unique / sample.count$All * 100)
|
|
183
|
|
184 sample.count = merge(sample.count , unprod.sample.count, by="Sample", all.x=T)
|
|
185 sample.count$perc_unprod = round(sample.count$Unproductive / sample.count$All * 100)
|
|
186 sample.count = merge(sample.count, unprod.unique.sample.count, by="Sample", all.x=T)
|
|
187 sample.count$perc_unprod_un = round(sample.count$Unproductive_unique / sample.count$All * 100)
|
|
188
|
|
189 #then sample/replicate
|
|
190 rep.count = merge(input.rep.count, prod.rep.count, by=c("Sample", "Replicate"), all.x=T)
|
|
191 rep.count$perc_prod = round(rep.count$Productive / rep.count$All * 100)
|
|
192 rep.count = merge(rep.count, prod.unique.rep.count, by=c("Sample", "Replicate"), all.x=T)
|
|
193 rep.count$perc_prod_un = round(rep.count$Productive_unique / rep.count$All * 100)
|
|
194
|
|
195 rep.count = merge(rep.count, unprod.rep.count, by=c("Sample", "Replicate"), all.x=T)
|
|
196 rep.count$perc_unprod = round(rep.count$Unproductive / rep.count$All * 100)
|
|
197 rep.count = merge(rep.count, unprod.unique.rep.count, by=c("Sample", "Replicate"), all.x=T)
|
|
198 rep.count$perc_unprod_un = round(rep.count$Unproductive_unique / rep.count$All * 100)
|
|
199
|
|
200 rep.count$Sample = paste(rep.count$Sample, rep.count$Replicate, sep="_")
|
|
201 rep.count = rep.count[,names(rep.count) != "Replicate"]
|
|
202
|
|
203 count = rbind(sample.count, rep.count)
|
|
204
|
|
205
|
|
206
|
|
207 write.table(x=count, file="productive_counting.txt", sep=",",quote=F,row.names=F,col.names=F)
|
|
208
|
|
209 # ---------------------- V+J+CDR3 sequence count ----------------------
|
|
210
|
|
211 VJCDR3.count = data.frame(table(clonalityFrame$Top.V.Gene, clonalityFrame$Top.J.Gene, clonalityFrame$CDR3.Seq.DNA))
|
|
212 names(VJCDR3.count) = c("Top.V.Gene", "Top.J.Gene", "CDR3.Seq.DNA", "Count")
|
|
213
|
|
214 VJCDR3.count = VJCDR3.count[VJCDR3.count$Count > 0,]
|
|
215 VJCDR3.count = VJCDR3.count[order(-VJCDR3.count$Count),]
|
|
216
|
|
217 write.table(x=VJCDR3.count, file="VJCDR3_count.txt", sep="\t",quote=F,row.names=F,col.names=T)
|
|
218
|
|
219 # ---------------------- Frequency calculation for V, D and J ----------------------
|
|
220
|
|
221 print("Report Clonality - frequency calculation V, D and J")
|
|
222
|
|
223 PRODFV = data.frame(data.table(PRODF)[, list(Length=sum(freq)), by=c("Sample", "Top.V.Gene")])
|
|
224 Total = ddply(PRODFV, .(Sample), function(x) data.frame(Total = sum(x$Length)))
|
|
225 PRODFV = merge(PRODFV, Total, by.x='Sample', by.y='Sample', all.x=TRUE)
|
|
226 PRODFV = ddply(PRODFV, c("Sample", "Top.V.Gene"), summarise, relFreq= (Length*100 / Total))
|
|
227
|
|
228 PRODFD = data.frame(data.table(PRODF)[, list(Length=sum(freq)), by=c("Sample", "Top.D.Gene")])
|
|
229 Total = ddply(PRODFD, .(Sample), function(x) data.frame(Total = sum(x$Length)))
|
|
230 PRODFD = merge(PRODFD, Total, by.x='Sample', by.y='Sample', all.x=TRUE)
|
|
231 PRODFD = ddply(PRODFD, c("Sample", "Top.D.Gene"), summarise, relFreq= (Length*100 / Total))
|
|
232
|
|
233 PRODFJ = data.frame(data.table(PRODF)[, list(Length=sum(freq)), by=c("Sample", "Top.J.Gene")])
|
|
234 Total = ddply(PRODFJ, .(Sample), function(x) data.frame(Total = sum(x$Length)))
|
|
235 PRODFJ = merge(PRODFJ, Total, by.x='Sample', by.y='Sample', all.x=TRUE)
|
|
236 PRODFJ = ddply(PRODFJ, c("Sample", "Top.J.Gene"), summarise, relFreq= (Length*100 / Total))
|
|
237
|
|
238 # ---------------------- Setting up the gene names for the different species/loci ----------------------
|
|
239
|
|
240 print("Report Clonality - getting genes for species/loci")
|
|
241
|
|
242 Vchain = ""
|
|
243 Dchain = ""
|
|
244 Jchain = ""
|
|
245
|
|
246 if(species == "custom"){
|
|
247 print("Custom genes: ")
|
|
248 splt = unlist(strsplit(locus, ";"))
|
|
249 print(paste("V:", splt[1]))
|
|
250 print(paste("D:", splt[2]))
|
|
251 print(paste("J:", splt[3]))
|
|
252
|
|
253 Vchain = unlist(strsplit(splt[1], ","))
|
|
254 Vchain = data.frame(v.name = Vchain, chr.orderV = 1:length(Vchain))
|
|
255
|
|
256 Dchain = unlist(strsplit(splt[2], ","))
|
|
257 if(length(Dchain) > 0){
|
|
258 Dchain = data.frame(v.name = Dchain, chr.orderD = 1:length(Dchain))
|
|
259 } else {
|
|
260 Dchain = data.frame(v.name = character(0), chr.orderD = numeric(0))
|
|
261 }
|
|
262
|
|
263 Jchain = unlist(strsplit(splt[3], ","))
|
|
264 Jchain = data.frame(v.name = Jchain, chr.orderJ = 1:length(Jchain))
|
|
265
|
|
266 } else {
|
|
267 genes = read.table("genes.txt", sep="\t", header=TRUE, fill=T, comment.char="")
|
|
268
|
|
269 Vchain = genes[grepl(species, genes$Species) & genes$locus == locus & genes$region == "V",c("IMGT.GENE.DB", "chr.order")]
|
|
270 colnames(Vchain) = c("v.name", "chr.orderV")
|
|
271 Dchain = genes[grepl(species, genes$Species) & genes$locus == locus & genes$region == "D",c("IMGT.GENE.DB", "chr.order")]
|
|
272 colnames(Dchain) = c("v.name", "chr.orderD")
|
|
273 Jchain = genes[grepl(species, genes$Species) & genes$locus == locus & genes$region == "J",c("IMGT.GENE.DB", "chr.order")]
|
|
274 colnames(Jchain) = c("v.name", "chr.orderJ")
|
|
275 }
|
|
276 useD = TRUE
|
|
277 if(nrow(Dchain) == 0){
|
|
278 useD = FALSE
|
|
279 cat("No D Genes in this species/locus")
|
|
280 }
|
|
281 print(paste(nrow(Vchain), "genes in V"))
|
|
282 print(paste(nrow(Dchain), "genes in D"))
|
|
283 print(paste(nrow(Jchain), "genes in J"))
|
|
284
|
|
285 # ---------------------- merge with the frequency count ----------------------
|
|
286
|
|
287 PRODFV = merge(PRODFV, Vchain, by.x='Top.V.Gene', by.y='v.name', all.x=TRUE)
|
|
288
|
|
289 PRODFD = merge(PRODFD, Dchain, by.x='Top.D.Gene', by.y='v.name', all.x=TRUE)
|
|
290
|
|
291 PRODFJ = merge(PRODFJ, Jchain, by.x='Top.J.Gene', by.y='v.name', all.x=TRUE)
|
|
292
|
|
293 # ---------------------- Create the V, D and J frequency plots and write the data.frame for every plot to a file ----------------------
|
|
294
|
|
295 print("Report Clonality - V, D and J frequency plots")
|
|
296
|
|
297 pV = ggplot(PRODFV)
|
|
298 pV = pV + geom_bar( aes( x=factor(reorder(Top.V.Gene, chr.orderV)), y=relFreq, fill=Sample), stat='identity', position="dodge") + theme(axis.text.x = element_text(angle = 90, hjust = 1))
|
8
|
299 pV = pV + xlab("Summary of V gene") + ylab("Frequency") + ggtitle("Relative frequency of V gene usage") + scale_fill_manual(values=sample.colors)
|
|
300 pV = pV + theme(panel.background = element_rect(fill = "white", colour="black"),text = element_text(size=15, colour="black"), axis.text.x = element_text(angle = 45, hjust = 1), panel.grid.major.y = element_line(colour = "black"), panel.grid.major.x = element_blank())
|
18
|
301 write.table(x=PRODFV, file="VFrequency.txt", sep="\t",quote=F,row.names=F,col.names=T)
|
5
|
302
|
|
303 png("VPlot.png",width = 1280, height = 720)
|
|
304 pV
|
|
305 dev.off();
|
|
306
|
|
307 if(useD){
|
|
308 pD = ggplot(PRODFD)
|
|
309 pD = pD + geom_bar( aes( x=factor(reorder(Top.D.Gene, chr.orderD)), y=relFreq, fill=Sample), stat='identity', position="dodge") + theme(axis.text.x = element_text(angle = 90, hjust = 1))
|
8
|
310 pD = pD + xlab("Summary of D gene") + ylab("Frequency") + ggtitle("Relative frequency of D gene usage") + scale_fill_manual(values=sample.colors)
|
|
311 pD = pD + theme(panel.background = element_rect(fill = "white", colour="black"),text = element_text(size=15, colour="black"), axis.text.x = element_text(angle = 45, hjust = 1), panel.grid.major.y = element_line(colour = "black"), panel.grid.major.x = element_blank())
|
18
|
312 write.table(x=PRODFD, file="DFrequency.txt", sep="\t",quote=F,row.names=F,col.names=T)
|
5
|
313
|
|
314 png("DPlot.png",width = 800, height = 600)
|
|
315 print(pD)
|
|
316 dev.off();
|
|
317 }
|
|
318
|
|
319 pJ = ggplot(PRODFJ)
|
|
320 pJ = pJ + geom_bar( aes( x=factor(reorder(Top.J.Gene, chr.orderJ)), y=relFreq, fill=Sample), stat='identity', position="dodge") + theme(axis.text.x = element_text(angle = 90, hjust = 1))
|
8
|
321 pJ = pJ + xlab("Summary of J gene") + ylab("Frequency") + ggtitle("Relative frequency of J gene usage") + scale_fill_manual(values=sample.colors)
|
|
322 pJ = pJ + theme(panel.background = element_rect(fill = "white", colour="black"),text = element_text(size=15, colour="black"), axis.text.x = element_text(angle = 45, hjust = 1), panel.grid.major.y = element_line(colour = "black"), panel.grid.major.x = element_blank())
|
18
|
323 write.table(x=PRODFJ, file="JFrequency.txt", sep="\t",quote=F,row.names=F,col.names=T)
|
5
|
324
|
|
325 png("JPlot.png",width = 800, height = 600)
|
|
326 pJ
|
|
327 dev.off();
|
|
328
|
|
329 # ---------------------- Now the frequency plots of the V, D and J families ----------------------
|
|
330
|
|
331 print("Report Clonality - V, D and J family plots")
|
|
332
|
|
333 VGenes = PRODF[,c("Sample", "Top.V.Gene")]
|
|
334 VGenes$Top.V.Gene = gsub("-.*", "", VGenes$Top.V.Gene)
|
|
335 VGenes = data.frame(data.table(VGenes)[, list(Count=.N), by=c("Sample", "Top.V.Gene")])
|
|
336 TotalPerSample = data.frame(data.table(VGenes)[, list(total=sum(.SD$Count)), by=Sample])
|
|
337 VGenes = merge(VGenes, TotalPerSample, by="Sample")
|
|
338 VGenes$Frequency = VGenes$Count * 100 / VGenes$total
|
|
339 VPlot = ggplot(VGenes)
|
|
340 VPlot = VPlot + geom_bar(aes( x = Top.V.Gene, y = Frequency, fill = Sample), stat='identity', position='dodge' ) + theme(axis.text.x = element_text(angle = 90, hjust = 1)) +
|
|
341 ggtitle("Distribution of V gene families") +
|
8
|
342 ylab("Percentage of sequences") +
|
|
343 scale_fill_manual(values=sample.colors) +
|
|
344 theme(panel.background = element_rect(fill = "white", colour="black"),text = element_text(size=15, colour="black"), axis.text.x = element_text(angle = 45, hjust = 1), panel.grid.major.y = element_line(colour = "black"), panel.grid.major.x = element_blank())
|
5
|
345 png("VFPlot.png")
|
|
346 VPlot
|
|
347 dev.off();
|
18
|
348 write.table(x=VGenes, file="VFFrequency.txt", sep="\t",quote=F,row.names=F,col.names=T)
|
5
|
349
|
|
350 if(useD){
|
|
351 DGenes = PRODF[,c("Sample", "Top.D.Gene")]
|
|
352 DGenes$Top.D.Gene = gsub("-.*", "", DGenes$Top.D.Gene)
|
|
353 DGenes = data.frame(data.table(DGenes)[, list(Count=.N), by=c("Sample", "Top.D.Gene")])
|
|
354 TotalPerSample = data.frame(data.table(DGenes)[, list(total=sum(.SD$Count)), by=Sample])
|
|
355 DGenes = merge(DGenes, TotalPerSample, by="Sample")
|
|
356 DGenes$Frequency = DGenes$Count * 100 / DGenes$total
|
|
357 DPlot = ggplot(DGenes)
|
|
358 DPlot = DPlot + geom_bar(aes( x = Top.D.Gene, y = Frequency, fill = Sample), stat='identity', position='dodge' ) + theme(axis.text.x = element_text(angle = 90, hjust = 1)) +
|
|
359 ggtitle("Distribution of D gene families") +
|
8
|
360 ylab("Percentage of sequences") +
|
|
361 scale_fill_manual(values=sample.colors) +
|
|
362 theme(panel.background = element_rect(fill = "white", colour="black"),text = element_text(size=15, colour="black"), axis.text.x = element_text(angle = 45, hjust = 1), panel.grid.major.y = element_line(colour = "black"), panel.grid.major.x = element_blank())
|
5
|
363 png("DFPlot.png")
|
|
364 print(DPlot)
|
|
365 dev.off();
|
18
|
366 write.table(x=DGenes, file="DFFrequency.txt", sep="\t",quote=F,row.names=F,col.names=T)
|
5
|
367 }
|
|
368
|
|
369 # ---------------------- Plotting the cdr3 length ----------------------
|
|
370
|
|
371 print("Report Clonality - CDR3 length plot")
|
|
372
|
9
|
373 CDR3Length = data.frame(data.table(PRODF)[, list(Count=.N), by=c("Sample", "CDR3.Length")])
|
5
|
374 TotalPerSample = data.frame(data.table(CDR3Length)[, list(total=sum(.SD$Count)), by=Sample])
|
|
375 CDR3Length = merge(CDR3Length, TotalPerSample, by="Sample")
|
|
376 CDR3Length$Frequency = CDR3Length$Count * 100 / CDR3Length$total
|
|
377 CDR3LengthPlot = ggplot(CDR3Length)
|
15
|
378 CDR3LengthPlot = CDR3LengthPlot + geom_bar(aes( x = factor(reorder(CDR3.Length, as.numeric(CDR3.Length))), y = Frequency, fill = Sample), stat='identity', position='dodge' ) + theme(axis.text.x = element_text(angle = 90, hjust = 1)) +
|
5
|
379 ggtitle("Length distribution of CDR3") +
|
|
380 xlab("CDR3 Length") +
|
8
|
381 ylab("Percentage of sequences") +
|
|
382 scale_fill_manual(values=sample.colors) +
|
|
383 theme(panel.background = element_rect(fill = "white", colour="black"),text = element_text(size=15, colour="black"), axis.text.x = element_text(angle = 45, hjust = 1), panel.grid.major.y = element_line(colour = "black"), panel.grid.major.x = element_blank())
|
5
|
384 png("CDR3LengthPlot.png",width = 1280, height = 720)
|
|
385 CDR3LengthPlot
|
|
386 dev.off()
|
24
|
387 write.table(x=CDR3Length, file="CDR3LengthPlot.txt", sep="\t",quote=F,row.names=F,col.names=T)
|
5
|
388
|
|
389 # ---------------------- Plot the heatmaps ----------------------
|
|
390
|
|
391 #get the reverse order for the V and D genes
|
|
392 revVchain = Vchain
|
|
393 revDchain = Dchain
|
|
394 revVchain$chr.orderV = rev(revVchain$chr.orderV)
|
|
395 revDchain$chr.orderD = rev(revDchain$chr.orderD)
|
|
396
|
|
397 if(useD){
|
|
398 print("Report Clonality - Heatmaps VD")
|
|
399 plotVD <- function(dat){
|
|
400 if(length(dat[,1]) == 0){
|
|
401 return()
|
|
402 }
|
|
403
|
|
404 img = ggplot() +
|
|
405 geom_tile(data=dat, aes(x=factor(reorder(Top.D.Gene, chr.orderD)), y=factor(reorder(Top.V.Gene, chr.orderV)), fill=relLength)) +
|
|
406 theme(axis.text.x = element_text(angle = 90, hjust = 1)) +
|
|
407 scale_fill_gradient(low="gold", high="blue", na.value="white") +
|
|
408 ggtitle(paste(unique(dat$Sample), " (N=" , sum(dat$Length, na.rm=T) ,")", sep="")) +
|
|
409 xlab("D genes") +
|
9
|
410 ylab("V Genes") +
|
14
|
411 theme(panel.background = element_rect(fill = "white", colour="black"),text = element_text(size=15, colour="black"), panel.grid.major = element_line(colour = "gainsboro"))
|
5
|
412
|
|
413 png(paste("HeatmapVD_", unique(dat[3])[1,1] , ".png", sep=""), width=150+(15*length(Dchain$v.name)), height=100+(15*length(Vchain$v.name)))
|
|
414 print(img)
|
|
415 dev.off()
|
24
|
416 write.table(x=acast(dat, Top.V.Gene~Top.D.Gene, value.var="Length"), file=paste("HeatmapVD_", unique(dat[3])[1,1], ".txt", sep=""), sep="\t",quote=F,row.names=T,col.names=NA)
|
5
|
417 }
|
|
418
|
|
419 VandDCount = data.frame(data.table(PRODF)[, list(Length=.N), by=c("Top.V.Gene", "Top.D.Gene", "Sample")])
|
|
420
|
|
421 VandDCount$l = log(VandDCount$Length)
|
|
422 maxVD = data.frame(data.table(VandDCount)[, list(max=max(l)), by=c("Sample")])
|
|
423 VandDCount = merge(VandDCount, maxVD, by.x="Sample", by.y="Sample", all.x=T)
|
|
424 VandDCount$relLength = VandDCount$l / VandDCount$max
|
6
|
425 check = is.nan(VandDCount$relLength)
|
|
426 if(any(check)){
|
|
427 VandDCount[check,"relLength"] = 0
|
|
428 }
|
5
|
429
|
|
430 cartegianProductVD = expand.grid(Top.V.Gene = Vchain$v.name, Top.D.Gene = Dchain$v.name)
|
|
431
|
|
432 completeVD = merge(VandDCount, cartegianProductVD, by.x=c("Top.V.Gene", "Top.D.Gene"), by.y=c("Top.V.Gene", "Top.D.Gene"), all=TRUE)
|
|
433
|
|
434 completeVD = merge(completeVD, revVchain, by.x="Top.V.Gene", by.y="v.name", all.x=TRUE)
|
|
435
|
|
436 completeVD = merge(completeVD, Dchain, by.x="Top.D.Gene", by.y="v.name", all.x=TRUE)
|
|
437
|
|
438 fltr = is.nan(completeVD$relLength)
|
|
439 if(all(fltr)){
|
|
440 completeVD[fltr,"relLength"] = 0
|
|
441 }
|
|
442
|
|
443 VDList = split(completeVD, f=completeVD[,"Sample"])
|
|
444 lapply(VDList, FUN=plotVD)
|
|
445 }
|
|
446
|
|
447 print("Report Clonality - Heatmaps VJ")
|
|
448
|
|
449 plotVJ <- function(dat){
|
|
450 if(length(dat[,1]) == 0){
|
|
451 return()
|
|
452 }
|
|
453 cat(paste(unique(dat[3])[1,1]))
|
|
454 img = ggplot() +
|
|
455 geom_tile(data=dat, aes(x=factor(reorder(Top.J.Gene, chr.orderJ)), y=factor(reorder(Top.V.Gene, chr.orderV)), fill=relLength)) +
|
|
456 theme(axis.text.x = element_text(angle = 90, hjust = 1)) +
|
|
457 scale_fill_gradient(low="gold", high="blue", na.value="white") +
|
|
458 ggtitle(paste(unique(dat$Sample), " (N=" , sum(dat$Length, na.rm=T) ,")", sep="")) +
|
|
459 xlab("J genes") +
|
9
|
460 ylab("V Genes") +
|
14
|
461 theme(panel.background = element_rect(fill = "white", colour="black"),text = element_text(size=15, colour="black"), panel.grid.major = element_line(colour = "gainsboro"))
|
5
|
462
|
|
463 png(paste("HeatmapVJ_", unique(dat[3])[1,1] , ".png", sep=""), width=150+(15*length(Jchain$v.name)), height=100+(15*length(Vchain$v.name)))
|
|
464 print(img)
|
|
465 dev.off()
|
24
|
466 write.table(x=acast(dat, Top.V.Gene~Top.J.Gene, value.var="Length"), file=paste("HeatmapVJ_", unique(dat[3])[1,1], ".txt", sep=""), sep="\t",quote=F,row.names=T,col.names=NA)
|
5
|
467 }
|
|
468
|
|
469 VandJCount = data.frame(data.table(PRODF)[, list(Length=.N), by=c("Top.V.Gene", "Top.J.Gene", "Sample")])
|
|
470
|
|
471 VandJCount$l = log(VandJCount$Length)
|
|
472 maxVJ = data.frame(data.table(VandJCount)[, list(max=max(l)), by=c("Sample")])
|
|
473 VandJCount = merge(VandJCount, maxVJ, by.x="Sample", by.y="Sample", all.x=T)
|
|
474 VandJCount$relLength = VandJCount$l / VandJCount$max
|
|
475
|
6
|
476 check = is.nan(VandJCount$relLength)
|
|
477 if(any(check)){
|
|
478 VandJCount[check,"relLength"] = 0
|
|
479 }
|
|
480
|
5
|
481 cartegianProductVJ = expand.grid(Top.V.Gene = Vchain$v.name, Top.J.Gene = Jchain$v.name)
|
|
482
|
|
483 completeVJ = merge(VandJCount, cartegianProductVJ, all.y=TRUE)
|
|
484 completeVJ = merge(completeVJ, revVchain, by.x="Top.V.Gene", by.y="v.name", all.x=TRUE)
|
|
485 completeVJ = merge(completeVJ, Jchain, by.x="Top.J.Gene", by.y="v.name", all.x=TRUE)
|
|
486
|
|
487 fltr = is.nan(completeVJ$relLength)
|
|
488 if(any(fltr)){
|
|
489 completeVJ[fltr,"relLength"] = 1
|
|
490 }
|
|
491
|
|
492 VJList = split(completeVJ, f=completeVJ[,"Sample"])
|
|
493 lapply(VJList, FUN=plotVJ)
|
|
494
|
|
495
|
|
496
|
|
497 if(useD){
|
|
498 print("Report Clonality - Heatmaps DJ")
|
|
499 plotDJ <- function(dat){
|
|
500 if(length(dat[,1]) == 0){
|
|
501 return()
|
|
502 }
|
|
503 img = ggplot() +
|
|
504 geom_tile(data=dat, aes(x=factor(reorder(Top.J.Gene, chr.orderJ)), y=factor(reorder(Top.D.Gene, chr.orderD)), fill=relLength)) +
|
|
505 theme(axis.text.x = element_text(angle = 90, hjust = 1)) +
|
|
506 scale_fill_gradient(low="gold", high="blue", na.value="white") +
|
|
507 ggtitle(paste(unique(dat$Sample), " (N=" , sum(dat$Length, na.rm=T) ,")", sep="")) +
|
|
508 xlab("J genes") +
|
9
|
509 ylab("D Genes") +
|
14
|
510 theme(panel.background = element_rect(fill = "white", colour="black"),text = element_text(size=15, colour="black"), panel.grid.major = element_line(colour = "gainsboro"))
|
5
|
511
|
|
512 png(paste("HeatmapDJ_", unique(dat[3])[1,1] , ".png", sep=""), width=150+(15*length(Jchain$v.name)), height=100+(15*length(Dchain$v.name)))
|
|
513 print(img)
|
|
514 dev.off()
|
24
|
515 write.table(x=acast(dat, Top.D.Gene~Top.J.Gene, value.var="Length"), file=paste("HeatmapDJ_", unique(dat[3])[1,1], ".txt", sep=""), sep="\t",quote=F,row.names=T,col.names=NA)
|
5
|
516 }
|
|
517
|
|
518
|
|
519 DandJCount = data.frame(data.table(PRODF)[, list(Length=.N), by=c("Top.D.Gene", "Top.J.Gene", "Sample")])
|
|
520
|
|
521 DandJCount$l = log(DandJCount$Length)
|
|
522 maxDJ = data.frame(data.table(DandJCount)[, list(max=max(l)), by=c("Sample")])
|
|
523 DandJCount = merge(DandJCount, maxDJ, by.x="Sample", by.y="Sample", all.x=T)
|
|
524 DandJCount$relLength = DandJCount$l / DandJCount$max
|
|
525
|
6
|
526 check = is.nan(DandJCount$relLength)
|
|
527 if(any(check)){
|
|
528 DandJCount[check,"relLength"] = 0
|
|
529 }
|
|
530
|
5
|
531 cartegianProductDJ = expand.grid(Top.D.Gene = Dchain$v.name, Top.J.Gene = Jchain$v.name)
|
|
532
|
|
533 completeDJ = merge(DandJCount, cartegianProductDJ, all.y=TRUE)
|
|
534 completeDJ = merge(completeDJ, revDchain, by.x="Top.D.Gene", by.y="v.name", all.x=TRUE)
|
|
535 completeDJ = merge(completeDJ, Jchain, by.x="Top.J.Gene", by.y="v.name", all.x=TRUE)
|
|
536
|
|
537 fltr = is.nan(completeDJ$relLength)
|
|
538 if(any(fltr)){
|
|
539 completeDJ[fltr, "relLength"] = 1
|
|
540 }
|
|
541
|
|
542 DJList = split(completeDJ, f=completeDJ[,"Sample"])
|
|
543 lapply(DJList, FUN=plotDJ)
|
|
544 }
|
|
545
|
|
546
|
|
547 # ---------------------- output tables for the circos plots ----------------------
|
|
548
|
|
549 print("Report Clonality - Circos data")
|
|
550
|
|
551 for(smpl in unique(PRODF$Sample)){
|
|
552 PRODF.sample = PRODF[PRODF$Sample == smpl,]
|
|
553
|
|
554 fltr = PRODF.sample$Top.V.Gene == ""
|
|
555 if(any(fltr, na.rm=T)){
|
|
556 PRODF.sample[fltr, "Top.V.Gene"] = "NA"
|
|
557 }
|
|
558
|
|
559 fltr = PRODF.sample$Top.D.Gene == ""
|
|
560 if(any(fltr, na.rm=T)){
|
|
561 PRODF.sample[fltr, "Top.D.Gene"] = "NA"
|
|
562 }
|
|
563
|
|
564 fltr = PRODF.sample$Top.J.Gene == ""
|
|
565 if(any(fltr, na.rm=T)){
|
|
566 PRODF.sample[fltr, "Top.J.Gene"] = "NA"
|
|
567 }
|
|
568
|
|
569 v.d = table(PRODF.sample$Top.V.Gene, PRODF.sample$Top.D.Gene)
|
|
570 v.j = table(PRODF.sample$Top.V.Gene, PRODF.sample$Top.J.Gene)
|
|
571 d.j = table(PRODF.sample$Top.D.Gene, PRODF.sample$Top.J.Gene)
|
|
572
|
|
573 write.table(v.d, file=paste(smpl, "_VD_circos.txt", sep=""), sep="\t", quote=F, row.names=T, col.names=NA)
|
|
574 write.table(v.j, file=paste(smpl, "_VJ_circos.txt", sep=""), sep="\t", quote=F, row.names=T, col.names=NA)
|
|
575 write.table(d.j, file=paste(smpl, "_DJ_circos.txt", sep=""), sep="\t", quote=F, row.names=T, col.names=NA)
|
|
576 }
|
|
577
|
|
578 # ---------------------- calculating the clonality score ----------------------
|
|
579
|
|
580 if("Replicate" %in% colnames(inputdata)) #can only calculate clonality score when replicate information is available
|
|
581 {
|
|
582 print("Report Clonality - Clonality")
|
18
|
583 write.table(clonalityFrame, "clonalityComplete.txt", sep="\t",quote=F,row.names=F,col.names=T)
|
5
|
584 if(clonality_method == "boyd"){
|
|
585 samples = split(clonalityFrame, clonalityFrame$Sample, drop=T)
|
|
586
|
|
587 for (sample in samples){
|
|
588 res = data.frame(paste=character(0))
|
|
589 sample_id = unique(sample$Sample)[[1]]
|
|
590 for(replicate in unique(sample$Replicate)){
|
|
591 tmp = sample[sample$Replicate == replicate,]
|
|
592 clone_table = data.frame(table(tmp$clonaltype))
|
|
593 clone_col_name = paste("V", replicate, sep="")
|
|
594 colnames(clone_table) = c("paste", clone_col_name)
|
|
595 res = merge(res, clone_table, by="paste", all=T)
|
|
596 }
|
|
597
|
17
|
598 res[is.na(res)] = 0
|
|
599
|
20
|
600 write.table(res, file=paste("raw_clonality_", sample_id, ".txt", sep=""), sep="\t",quote=F,row.names=F,col.names=F)
|
|
601 write.table(as.matrix(res[,2:ncol(res)]), file=paste("raw_clonality2_", sample_id, ".txt", sep=""), sep="\t",quote=F,row.names=F,col.names=F)
|
|
602
|
|
603 res = read.table(paste("raw_clonality_", sample_id, ".txt", sep=""), header=F, sep="\t", quote="", stringsAsFactors=F, fill=T, comment.char="")
|
17
|
604
|
5
|
605 infer.result = infer.clonality(as.matrix(res[,2:ncol(res)]))
|
|
606
|
13
|
607 #print(infer.result)
|
5
|
608
|
20
|
609 write.table(data.table(infer.result[[12]]), file=paste("lymphclon_clonality_", sample_id, ".txt", sep=""), sep="\t",quote=F,row.names=F,col.names=F)
|
5
|
610
|
|
611 res$type = rowSums(res[,2:ncol(res)])
|
|
612
|
|
613 coincidence.table = data.frame(table(res$type))
|
|
614 colnames(coincidence.table) = c("Coincidence Type", "Raw Coincidence Freq")
|
20
|
615 write.table(coincidence.table, file=paste("lymphclon_coincidences_", sample_id, ".txt", sep=""), sep="\t",quote=F,row.names=F,col.names=T)
|
5
|
616 }
|
26
|
617 }
|
|
618 clonalFreq = data.frame(data.table(clonalityFrame)[, list(Type=.N), by=c("Sample", "clonaltype")])
|
|
619
|
|
620 #write files for every coincidence group of >1
|
|
621 samples = unique(clonalFreq$Sample)
|
|
622 for(sample in samples){
|
|
623 clonalFreqSample = clonalFreq[clonalFreq$Sample == sample,]
|
|
624 if(max(clonalFreqSample$Type) > 1){
|
|
625 for(i in 2:max(clonalFreqSample$Type)){
|
|
626 clonalFreqSampleType = clonalFreqSample[clonalFreqSample$Type == i,]
|
|
627 clonalityFrame.sub = clonalityFrame[clonalityFrame$clonaltype %in% clonalFreqSampleType$clonaltype,]
|
|
628 clonalityFrame.sub = clonalityFrame.sub[order(clonalityFrame.sub$clonaltype),]
|
|
629 write.table(clonalityFrame.sub, file=paste("coincidences_", sample, "_", i, ".txt", sep=""), sep="\t",quote=F,row.names=F,col.names=T)
|
|
630 }
|
|
631 }
|
|
632 }
|
|
633
|
|
634 clonalFreqCount = data.frame(data.table(clonalFreq)[, list(Count=.N), by=c("Sample", "Type")])
|
|
635 clonalFreqCount$realCount = clonalFreqCount$Type * clonalFreqCount$Count
|
|
636 clonalSum = data.frame(data.table(clonalFreqCount)[, list(Reads=sum(realCount)), by=c("Sample")])
|
|
637 clonalFreqCount = merge(clonalFreqCount, clonalSum, by.x="Sample", by.y="Sample")
|
|
638
|
|
639 ct = c('Type\tWeight\n2\t1\n3\t3\n4\t6\n5\t10\n6\t15')
|
|
640 tcct = textConnection(ct)
|
|
641 CT = read.table(tcct, sep="\t", header=TRUE)
|
|
642 close(tcct)
|
|
643 clonalFreqCount = merge(clonalFreqCount, CT, by.x="Type", by.y="Type", all.x=T)
|
|
644 clonalFreqCount$WeightedCount = clonalFreqCount$Count * clonalFreqCount$Weight
|
|
645
|
|
646 ReplicateReads = data.frame(data.table(clonalityFrame)[, list(Type=.N), by=c("Sample", "Replicate", "clonaltype")])
|
|
647 ReplicateReads = data.frame(data.table(ReplicateReads)[, list(Reads=.N), by=c("Sample", "Replicate")])
|
|
648 clonalFreqCount$Reads = as.numeric(clonalFreqCount$Reads)
|
|
649 ReplicateReads$Reads = as.numeric(ReplicateReads$Reads)
|
|
650 ReplicateReads$squared = as.numeric(ReplicateReads$Reads * ReplicateReads$Reads)
|
|
651
|
|
652 ReplicatePrint <- function(dat){
|
|
653 write.table(dat[-1], paste("ReplicateReads_", unique(dat[1])[1,1] , ".txt", sep=""), sep="\t",quote=F,na="-",row.names=F,col.names=F)
|
5
|
654 }
|
26
|
655
|
|
656 ReplicateSplit = split(ReplicateReads, f=ReplicateReads[,"Sample"])
|
|
657 lapply(ReplicateSplit, FUN=ReplicatePrint)
|
|
658
|
|
659 ReplicateReads = data.frame(data.table(ReplicateReads)[, list(ReadsSum=sum(as.numeric(Reads)), ReadsSquaredSum=sum(as.numeric(squared))), by=c("Sample")])
|
|
660 clonalFreqCount = merge(clonalFreqCount, ReplicateReads, by.x="Sample", by.y="Sample", all.x=T)
|
|
661
|
|
662 ReplicateSumPrint <- function(dat){
|
|
663 write.table(dat[-1], paste("ReplicateSumReads_", unique(dat[1])[1,1] , ".txt", sep=""), sep="\t",quote=F,na="-",row.names=F,col.names=F)
|
|
664 }
|
|
665
|
|
666 ReplicateSumSplit = split(ReplicateReads, f=ReplicateReads[,"Sample"])
|
|
667 lapply(ReplicateSumSplit, FUN=ReplicateSumPrint)
|
|
668
|
|
669 clonalFreqCountSum = data.frame(data.table(clonalFreqCount)[, list(Numerator=sum(WeightedCount, na.rm=T)), by=c("Sample")])
|
|
670 clonalFreqCount = merge(clonalFreqCount, clonalFreqCountSum, by.x="Sample", by.y="Sample", all.x=T)
|
|
671 clonalFreqCount$ReadsSum = as.numeric(clonalFreqCount$ReadsSum) #prevent integer overflow
|
|
672 clonalFreqCount$Denominator = (((clonalFreqCount$ReadsSum * clonalFreqCount$ReadsSum) - clonalFreqCount$ReadsSquaredSum) / 2)
|
|
673 clonalFreqCount$Result = (clonalFreqCount$Numerator + 1) / (clonalFreqCount$Denominator + 1)
|
|
674
|
|
675 ClonalityScorePrint <- function(dat){
|
|
676 write.table(dat$Result, paste("ClonalityScore_", unique(dat[1])[1,1] , ".txt", sep=""), sep="\t",quote=F,na="-",row.names=F,col.names=F)
|
|
677 }
|
|
678
|
|
679 clonalityScore = clonalFreqCount[c("Sample", "Result")]
|
|
680 clonalityScore = unique(clonalityScore)
|
|
681
|
|
682 clonalityScoreSplit = split(clonalityScore, f=clonalityScore[,"Sample"])
|
|
683 lapply(clonalityScoreSplit, FUN=ClonalityScorePrint)
|
|
684
|
|
685 clonalityOverview = clonalFreqCount[c("Sample", "Type", "Count", "Weight", "WeightedCount")]
|
|
686
|
|
687
|
|
688
|
|
689 ClonalityOverviewPrint <- function(dat){
|
|
690 dat = dat[order(dat[,2]),]
|
|
691 write.table(dat[-1], paste("ClonalityOverView_", unique(dat[1])[1,1] , ".txt", sep=""), sep="\t",quote=F,na="-",row.names=F,col.names=F)
|
|
692 }
|
|
693
|
|
694 clonalityOverviewSplit = split(clonalityOverview, f=clonalityOverview$Sample)
|
|
695 lapply(clonalityOverviewSplit, FUN=ClonalityOverviewPrint)
|
|
696
|
5
|
697 }
|
|
698
|
|
699 bak = PRODF
|
25
|
700 bakun = UNPROD
|
5
|
701
|
|
702 imgtcolumns = c("X3V.REGION.trimmed.nt.nb","P3V.nt.nb", "N1.REGION.nt.nb", "P5D.nt.nb", "X5D.REGION.trimmed.nt.nb", "X3D.REGION.trimmed.nt.nb", "P3D.nt.nb", "N2.REGION.nt.nb", "P5J.nt.nb", "X5J.REGION.trimmed.nt.nb", "X3V.REGION.trimmed.nt.nb", "X5D.REGION.trimmed.nt.nb", "X3D.REGION.trimmed.nt.nb", "X5J.REGION.trimmed.nt.nb", "N1.REGION.nt.nb", "N2.REGION.nt.nb", "P3V.nt.nb", "P5D.nt.nb", "P3D.nt.nb", "P5J.nt.nb")
|
|
703 if(all(imgtcolumns %in% colnames(inputdata)))
|
|
704 {
|
|
705 print("found IMGT columns, running junction analysis")
|
24
|
706
|
5
|
707 #ensure certain columns are in the data (files generated with older versions of IMGT Loader)
|
|
708 col.checks = c("N.REGION.nt.nb", "N1.REGION.nt.nb", "N2.REGION.nt.nb", "N3.REGION.nt.nb", "N4.REGION.nt.nb")
|
|
709 for(col.check in col.checks){
|
|
710 if(!(col.check %in% names(PRODF))){
|
|
711 print(paste(col.check, "not found adding new column"))
|
|
712 if(nrow(PRODF) > 0){ #because R is anoying...
|
|
713 PRODF[,col.check] = 0
|
|
714 } else {
|
|
715 PRODF = cbind(PRODF, data.frame(N3.REGION.nt.nb=numeric(0), N4.REGION.nt.nb=numeric(0)))
|
|
716 }
|
|
717 if(nrow(UNPROD) > 0){
|
|
718 UNPROD[,col.check] = 0
|
|
719 } else {
|
|
720 UNPROD = cbind(UNPROD, data.frame(N3.REGION.nt.nb=numeric(0), N4.REGION.nt.nb=numeric(0)))
|
|
721 }
|
|
722 }
|
|
723 }
|
|
724
|
24
|
725 PRODF.with.D = PRODF[nchar(PRODF$Top.D.Gene, keepNA=F) > 2,]
|
|
726 PRODF.no.D = PRODF[nchar(PRODF$Top.D.Gene, keepNA=F) < 4,]
|
26
|
727 write.table(PRODF.no.D, "productive_no_D.txt" , sep="\t",quote=F,na="-",row.names=F,col.names=T)
|
24
|
728
|
25
|
729 UNPROD.with.D = UNPROD[nchar(UNPROD$Top.D.Gene, keepNA=F) > 2,]
|
|
730 UNPROD.no.D = UNPROD[nchar(UNPROD$Top.D.Gene, keepNA=F) < 4,]
|
26
|
731 write.table(UNPROD.no.D, "unproductive_no_D.txt" , sep="\t",quote=F,na="-",row.names=F,col.names=T)
|
25
|
732
|
5
|
733 num_median = function(x, na.rm=T) { as.numeric(median(x, na.rm=na.rm)) }
|
25
|
734
|
24
|
735 newData = data.frame(data.table(PRODF.with.D)[,list(unique=.N,
|
5
|
736 VH.DEL=mean(.SD$X3V.REGION.trimmed.nt.nb, na.rm=T),
|
|
737 P1=mean(.SD$P3V.nt.nb, na.rm=T),
|
|
738 N1=mean(rowSums(.SD[,c("N.REGION.nt.nb", "N1.REGION.nt.nb"), with=F], na.rm=T)),
|
|
739 P2=mean(.SD$P5D.nt.nb, na.rm=T),
|
|
740 DEL.DH=mean(.SD$X5D.REGION.trimmed.nt.nb, na.rm=T),
|
|
741 DH.DEL=mean(.SD$X3D.REGION.trimmed.nt.nb, na.rm=T),
|
|
742 P3=mean(.SD$P3D.nt.nb, na.rm=T),
|
|
743 N2=mean(rowSums(.SD[,c("N2.REGION.nt.nb", "N3.REGION.nt.nb", "N4.REGION.nt.nb"), with=F], na.rm=T)),
|
|
744 P4=mean(.SD$P5J.nt.nb, na.rm=T),
|
|
745 DEL.JH=mean(.SD$X5J.REGION.trimmed.nt.nb, na.rm=T),
|
|
746 Total.Del=mean(rowSums(.SD[,c("X3V.REGION.trimmed.nt.nb", "X5D.REGION.trimmed.nt.nb", "X3D.REGION.trimmed.nt.nb", "X5J.REGION.trimmed.nt.nb"), with=F], na.rm=T)),
|
|
747 Total.N=mean(rowSums(.SD[,c("N.REGION.nt.nb", "N1.REGION.nt.nb", "N2.REGION.nt.nb", "N3.REGION.nt.nb", "N4.REGION.nt.nb"), with=F], na.rm=T)),
|
|
748 Total.P=mean(rowSums(.SD[,c("P3V.nt.nb", "P5D.nt.nb", "P3D.nt.nb", "P5J.nt.nb"), with=F], na.rm=T)),
|
25
|
749 Median.CDR3.l=as.double(median(as.numeric(.SD$CDR3.Length, na.rm=T)))),
|
5
|
750 by=c("Sample")])
|
|
751 newData[,sapply(newData, is.numeric)] = round(newData[,sapply(newData, is.numeric)],1)
|
24
|
752 write.table(newData, "junctionAnalysisProd_mean_wD.txt" , sep="\t",quote=F,na="-",row.names=F,col.names=F)
|
5
|
753
|
24
|
754 newData = data.frame(data.table(PRODF.with.D)[,list(unique=.N,
|
5
|
755 VH.DEL=num_median(.SD$X3V.REGION.trimmed.nt.nb, na.rm=T),
|
|
756 P1=num_median(.SD$P3V.nt.nb, na.rm=T),
|
|
757 N1=num_median(rowSums(.SD[,c("N.REGION.nt.nb", "N1.REGION.nt.nb"), with=F], na.rm=T)),
|
|
758 P2=num_median(.SD$P5D.nt.nb, na.rm=T),
|
|
759 DEL.DH=num_median(.SD$X5D.REGION.trimmed.nt.nb, na.rm=T),
|
|
760 DH.DEL=num_median(.SD$X3D.REGION.trimmed.nt.nb, na.rm=T),
|
|
761 P3=num_median(.SD$P3D.nt.nb, na.rm=T),
|
|
762 N2=num_median(rowSums(.SD[,c("N2.REGION.nt.nb", "N3.REGION.nt.nb", "N4.REGION.nt.nb"), with=F], na.rm=T)),
|
|
763 P4=num_median(.SD$P5J.nt.nb, na.rm=T),
|
|
764 DEL.JH=num_median(.SD$X5J.REGION.trimmed.nt.nb, na.rm=T),
|
|
765 Total.Del=num_median(rowSums(.SD[,c("X3V.REGION.trimmed.nt.nb", "X5D.REGION.trimmed.nt.nb", "X3D.REGION.trimmed.nt.nb", "X5J.REGION.trimmed.nt.nb"), with=F], na.rm=T)),
|
|
766 Total.N=num_median(rowSums(.SD[,c("N.REGION.nt.nb", "N1.REGION.nt.nb", "N2.REGION.nt.nb", "N3.REGION.nt.nb", "N4.REGION.nt.nb"), with=F], na.rm=T)),
|
|
767 Total.P=num_median(rowSums(.SD[,c("P3V.nt.nb", "P5D.nt.nb", "P3D.nt.nb", "P5J.nt.nb"), with=F], na.rm=T)),
|
25
|
768 Median.CDR3.l=as.double(median(as.numeric(.SD$CDR3.Length, na.rm=T)))),
|
5
|
769 by=c("Sample")])
|
|
770 newData[,sapply(newData, is.numeric)] = round(newData[,sapply(newData, is.numeric)],1)
|
24
|
771 write.table(newData, "junctionAnalysisProd_median_wD.txt" , sep="\t",quote=F,na="-",row.names=F,col.names=F)
|
5
|
772
|
25
|
773 newData = data.frame(data.table(UNPROD.with.D)[,list(unique=.N,
|
5
|
774 VH.DEL=mean(.SD$X3V.REGION.trimmed.nt.nb, na.rm=T),
|
|
775 P1=mean(.SD$P3V.nt.nb, na.rm=T),
|
|
776 N1=mean(rowSums(.SD[,c("N.REGION.nt.nb", "N1.REGION.nt.nb"), with=F], na.rm=T)),
|
|
777 P2=mean(.SD$P5D.nt.nb, na.rm=T),
|
|
778 DEL.DH=mean(.SD$X5D.REGION.trimmed.nt.nb, na.rm=T),
|
|
779 DH.DEL=mean(.SD$X3D.REGION.trimmed.nt.nb, na.rm=T),
|
|
780 P3=mean(.SD$P3D.nt.nb, na.rm=T),
|
|
781 N2=mean(rowSums(.SD[,c("N2.REGION.nt.nb", "N3.REGION.nt.nb", "N4.REGION.nt.nb"), with=F], na.rm=T)),
|
|
782 P4=mean(.SD$P5J.nt.nb, na.rm=T),
|
|
783 DEL.JH=mean(.SD$X5J.REGION.trimmed.nt.nb, na.rm=T),
|
|
784 Total.Del=mean(rowSums(.SD[,c("X3V.REGION.trimmed.nt.nb", "X5D.REGION.trimmed.nt.nb", "X3D.REGION.trimmed.nt.nb", "X5J.REGION.trimmed.nt.nb"), with=F], na.rm=T)),
|
|
785 Total.N=mean(rowSums(.SD[,c("N.REGION.nt.nb", "N1.REGION.nt.nb", "N2.REGION.nt.nb", "N3.REGION.nt.nb", "N4.REGION.nt.nb"), with=F], na.rm=T)),
|
|
786 Total.P=mean(rowSums(.SD[,c("P3V.nt.nb", "P5D.nt.nb", "P3D.nt.nb", "P5J.nt.nb"), with=F], na.rm=T)),
|
25
|
787 Median.CDR3.l=as.double(as.numeric(median(.SD$CDR3.Length, na.rm=T)))),
|
5
|
788 by=c("Sample")])
|
|
789 newData[,sapply(newData, is.numeric)] = round(newData[,sapply(newData, is.numeric)],1)
|
24
|
790 write.table(newData, "junctionAnalysisUnProd_mean_wD.txt" , sep="\t",quote=F,na="-",row.names=F,col.names=F)
|
5
|
791
|
25
|
792 newData = data.frame(data.table(UNPROD.with.D)[,list(unique=.N,
|
5
|
793 VH.DEL=num_median(.SD$X3V.REGION.trimmed.nt.nb, na.rm=T),
|
|
794 P1=num_median(.SD$P3V.nt.nb, na.rm=T),
|
|
795 N1=num_median(rowSums(.SD[,c("N.REGION.nt.nb", "N1.REGION.nt.nb"), with=F], na.rm=T)),
|
|
796 P2=num_median(.SD$P5D.nt.nb, na.rm=T),
|
|
797 DEL.DH=num_median(.SD$X5D.REGION.trimmed.nt.nb, na.rm=T),
|
|
798 DH.DEL=num_median(.SD$X3D.REGION.trimmed.nt.nb, na.rm=T),
|
|
799 P3=num_median(.SD$P3D.nt.nb, na.rm=T),
|
|
800 N2=num_median(rowSums(.SD[,c("N2.REGION.nt.nb", "N3.REGION.nt.nb", "N4.REGION.nt.nb"), with=F], na.rm=T)),
|
|
801 P4=num_median(.SD$P5J.nt.nb, na.rm=T),
|
|
802 DEL.JH=num_median(.SD$X5J.REGION.trimmed.nt.nb, na.rm=T),
|
|
803 Total.Del=num_median(rowSums(.SD[,c("X3V.REGION.trimmed.nt.nb", "X5D.REGION.trimmed.nt.nb", "X3D.REGION.trimmed.nt.nb", "X5J.REGION.trimmed.nt.nb"), with=F], na.rm=T)),
|
|
804 Total.N=num_median(rowSums(.SD[,c("N.REGION.nt.nb", "N1.REGION.nt.nb", "N2.REGION.nt.nb", "N3.REGION.nt.nb", "N4.REGION.nt.nb"), with=F], na.rm=T)),
|
|
805 Total.P=num_median(rowSums(.SD[,c("P3V.nt.nb", "P5D.nt.nb", "P3D.nt.nb", "P5J.nt.nb"), with=F], na.rm=T)),
|
25
|
806 Median.CDR3.l=as.double(as.numeric(median(.SD$CDR3.Length, na.rm=T)))),
|
5
|
807 by=c("Sample")])
|
24
|
808 newData[,sapply(newData, is.numeric)] = round(newData[,sapply(newData, is.numeric)],1)
|
|
809 write.table(newData, "junctionAnalysisUnProd_median_wD.txt" , sep="\t",quote=F,na="-",row.names=F,col.names=F)
|
|
810
|
|
811 #---------------- again for no-D
|
|
812
|
|
813 newData = data.frame(data.table(PRODF.no.D)[,list(unique=.N,
|
|
814 VH.DEL=mean(.SD$X3V.REGION.trimmed.nt.nb, na.rm=T),
|
|
815 P1=mean(.SD$P3V.nt.nb, na.rm=T),
|
26
|
816 N1=mean(.SD$N.REGION.nt.nb, na.rm=T),
|
24
|
817 P2=mean(.SD$P5J.nt.nb, na.rm=T),
|
|
818 DEL.JH=mean(.SD$X5J.REGION.trimmed.nt.nb, na.rm=T),
|
|
819 Total.Del=mean(rowSums(.SD[,c("X3V.REGION.trimmed.nt.nb", "X5J.REGION.trimmed.nt.nb"), with=F], na.rm=T)),
|
26
|
820 Total.N=mean(.SD$N.REGION.nt.nb, na.rm=T),
|
24
|
821 Total.P=mean(rowSums(.SD[,c("P3V.nt.nb", "P5J.nt.nb"), with=F], na.rm=T)),
|
25
|
822 Median.CDR3.l=as.double(as.numeric(median(.SD$CDR3.Length, na.rm=T)))),
|
24
|
823 by=c("Sample")])
|
5
|
824 newData[,sapply(newData, is.numeric)] = round(newData[,sapply(newData, is.numeric)],1)
|
24
|
825 write.table(newData, "junctionAnalysisProd_mean_nD.txt" , sep="\t",quote=F,na="-",row.names=F,col.names=F)
|
|
826
|
|
827 newData = data.frame(data.table(PRODF.no.D)[,list(unique=.N,
|
|
828 VH.DEL=num_median(.SD$X3V.REGION.trimmed.nt.nb, na.rm=T),
|
|
829 P1=num_median(.SD$P3V.nt.nb, na.rm=T),
|
26
|
830 N1=median(.SD$N.REGION.nt.nb, na.rm=T),
|
24
|
831 P2=num_median(.SD$P5J.nt.nb, na.rm=T),
|
|
832 DEL.JH=num_median(.SD$X5J.REGION.trimmed.nt.nb, na.rm=T),
|
|
833 Total.Del=num_median(rowSums(.SD[,c("X3V.REGION.trimmed.nt.nb", "X5J.REGION.trimmed.nt.nb"), with=F], na.rm=T)),
|
26
|
834 Total.N=median(.SD$N.REGION.nt.nb, na.rm=T),
|
24
|
835 Total.P=num_median(rowSums(.SD[,c("P3V.nt.nb", "P5J.nt.nb"), with=F], na.rm=T)),
|
25
|
836 Median.CDR3.l=as.double(as.numeric(median(.SD$CDR3.Length, na.rm=T)))),
|
24
|
837 by=c("Sample")])
|
|
838 newData[,sapply(newData, is.numeric)] = round(newData[,sapply(newData, is.numeric)],1)
|
|
839 write.table(newData, "junctionAnalysisProd_median_nD.txt" , sep="\t",quote=F,na="-",row.names=F,col.names=F)
|
|
840
|
26
|
841 print(paste("mean N:", mean(UNPROD.no.D$N.REGION.nt.nb, na.rm=T)))
|
|
842
|
25
|
843 newData = data.frame(data.table(UNPROD.no.D)[,list(unique=.N,
|
24
|
844 VH.DEL=mean(.SD$X3V.REGION.trimmed.nt.nb, na.rm=T),
|
|
845 P1=mean(.SD$P3V.nt.nb, na.rm=T),
|
26
|
846 N1=mean(.SD$N.REGION.nt.nb, na.rm=T),
|
24
|
847 P2=mean(.SD$P5J.nt.nb, na.rm=T),
|
|
848 DEL.JH=mean(.SD$X5J.REGION.trimmed.nt.nb, na.rm=T),
|
|
849 Total.Del=mean(rowSums(.SD[,c("X3V.REGION.trimmed.nt.nb", "X5J.REGION.trimmed.nt.nb"), with=F], na.rm=T)),
|
26
|
850 Total.N=mean(.SD$N.REGION.nt.nb, na.rm=T),
|
24
|
851 Total.P=mean(rowSums(.SD[,c("P3V.nt.nb", "P5J.nt.nb"), with=F], na.rm=T)),
|
25
|
852 Median.CDR3.l=as.double(as.numeric(median(.SD$CDR3.Length, na.rm=T)))),
|
24
|
853 by=c("Sample")])
|
|
854 newData[,sapply(newData, is.numeric)] = round(newData[,sapply(newData, is.numeric)],1)
|
|
855 write.table(newData, "junctionAnalysisUnProd_mean_nD.txt" , sep="\t",quote=F,na="-",row.names=F,col.names=F)
|
|
856
|
26
|
857 print(paste("median N:", num_median(UNPROD.no.D$N.REGION.nt.nb, na.rm=T)))
|
|
858
|
25
|
859 newData = data.frame(data.table(UNPROD.no.D)[,list(unique=.N,
|
24
|
860 VH.DEL=num_median(.SD$X3V.REGION.trimmed.nt.nb, na.rm=T),
|
|
861 P1=num_median(.SD$P3V.nt.nb, na.rm=T),
|
26
|
862 N1=median(.SD$N.REGION.nt.nb, na.rm=T),
|
24
|
863 P2=num_median(.SD$P5J.nt.nb, na.rm=T),
|
|
864 DEL.JH=num_median(.SD$X5J.REGION.trimmed.nt.nb, na.rm=T),
|
|
865 Total.Del=num_median(rowSums(.SD[,c("X3V.REGION.trimmed.nt.nb", "X5J.REGION.trimmed.nt.nb"), with=F], na.rm=T)),
|
26
|
866 Total.N=median(.SD$N.REGION.nt.nb, na.rm=T),
|
24
|
867 Total.P=num_median(rowSums(.SD[,c("P3V.nt.nb", "P5J.nt.nb"), with=F], na.rm=T)),
|
25
|
868 Median.CDR3.l=as.double(as.numeric(median(.SD$CDR3.Length, na.rm=T)))),
|
24
|
869 by=c("Sample")])
|
|
870 newData[,sapply(newData, is.numeric)] = round(newData[,sapply(newData, is.numeric)],1)
|
|
871 write.table(newData, "junctionAnalysisUnProd_median_nD.txt" , sep="\t",quote=F,na="-",row.names=F,col.names=F)
|
5
|
872 }
|
|
873
|
|
874 PRODF = bak
|
25
|
875 UNPROD = bakun
|
5
|
876
|
|
877
|
|
878 # ---------------------- D reading frame ----------------------
|
|
879
|
8
|
880 D.REGION.reading.frame = PRODF[,c("Sample", "D.REGION.reading.frame")]
|
5
|
881
|
8
|
882 chck = is.na(D.REGION.reading.frame$D.REGION.reading.frame)
|
|
883 if(any(chck)){
|
|
884 D.REGION.reading.frame[chck,"D.REGION.reading.frame"] = "No D"
|
|
885 }
|
5
|
886
|
24
|
887 D.REGION.reading.frame.1 = data.frame(data.table(D.REGION.reading.frame)[, list(Freq=.N), by=c("Sample", "D.REGION.reading.frame")])
|
|
888
|
|
889 D.REGION.reading.frame.2 = data.frame(data.table(D.REGION.reading.frame)[, list(sample.sum=sum(as.numeric(.SD$D.REGION.reading.frame), na.rm=T)), by=c("Sample")])
|
5
|
890
|
24
|
891 D.REGION.reading.frame = merge(D.REGION.reading.frame.1, D.REGION.reading.frame.2, by="Sample")
|
|
892
|
|
893 D.REGION.reading.frame$percentage = round(D.REGION.reading.frame$Freq / D.REGION.reading.frame$sample.sum * 100, 1)
|
|
894
|
|
895 write.table(D.REGION.reading.frame, "DReadingFrame.txt" , sep="\t",quote=F,row.names=F,col.names=T)
|
5
|
896
|
|
897 D.REGION.reading.frame = ggplot(D.REGION.reading.frame)
|
24
|
898 D.REGION.reading.frame = D.REGION.reading.frame + geom_bar(aes( x = D.REGION.reading.frame, y = percentage, fill=Sample), stat='identity', position='dodge' ) + ggtitle("D reading frame") + xlab("Frequency") + ylab("Frame")
|
8
|
899 D.REGION.reading.frame = D.REGION.reading.frame + scale_fill_manual(values=sample.colors)
|
|
900 D.REGION.reading.frame = D.REGION.reading.frame + theme(panel.background = element_rect(fill = "white", colour="black"),text = element_text(size=15, colour="black"), axis.text.x = element_text(angle = 45, hjust = 1), panel.grid.major.y = element_line(colour = "black"), panel.grid.major.x = element_blank())
|
5
|
901
|
|
902 png("DReadingFrame.png")
|
|
903 D.REGION.reading.frame
|
|
904 dev.off()
|
|
905
|
|
906
|
|
907
|
|
908
|
|
909 # ---------------------- AA composition in CDR3 ----------------------
|
|
910
|
|
911 AACDR3 = PRODF[,c("Sample", "CDR3.Seq")]
|
|
912
|
|
913 TotalPerSample = data.frame(data.table(AACDR3)[, list(total=sum(nchar(as.character(.SD$CDR3.Seq)))), by=Sample])
|
|
914
|
|
915 AAfreq = list()
|
|
916
|
|
917 for(i in 1:nrow(TotalPerSample)){
|
|
918 sample = TotalPerSample$Sample[i]
|
|
919 AAfreq[[i]] = data.frame(table(unlist(strsplit(as.character(AACDR3[AACDR3$Sample == sample,c("CDR3.Seq")]), ""))))
|
|
920 AAfreq[[i]]$Sample = sample
|
|
921 }
|
|
922
|
|
923 AAfreq = ldply(AAfreq, data.frame)
|
|
924 AAfreq = merge(AAfreq, TotalPerSample, by="Sample", all.x = T)
|
|
925 AAfreq$freq_perc = as.numeric(AAfreq$Freq / AAfreq$total * 100)
|
|
926
|
|
927
|
|
928 AAorder = read.table(sep="\t", header=TRUE, text="order.aa\tAA\n1\tR\n2\tK\n3\tN\n4\tD\n5\tQ\n6\tE\n7\tH\n8\tP\n9\tY\n10\tW\n11\tS\n12\tT\n13\tG\n14\tA\n15\tM\n16\tC\n17\tF\n18\tL\n19\tV\n20\tI")
|
|
929 AAfreq = merge(AAfreq, AAorder, by.x='Var1', by.y='AA', all.x=TRUE)
|
|
930
|
|
931 AAfreq = AAfreq[!is.na(AAfreq$order.aa),]
|
|
932
|
|
933 AAfreqplot = ggplot(AAfreq)
|
|
934 AAfreqplot = AAfreqplot + geom_bar(aes( x=factor(reorder(Var1, order.aa)), y = freq_perc, fill = Sample), stat='identity', position='dodge' )
|
|
935 AAfreqplot = AAfreqplot + annotate("rect", xmin = 0.5, xmax = 2.5, ymin = 0, ymax = Inf, fill = "red", alpha = 0.2)
|
|
936 AAfreqplot = AAfreqplot + annotate("rect", xmin = 3.5, xmax = 4.5, ymin = 0, ymax = Inf, fill = "blue", alpha = 0.2)
|
|
937 AAfreqplot = AAfreqplot + annotate("rect", xmin = 5.5, xmax = 6.5, ymin = 0, ymax = Inf, fill = "blue", alpha = 0.2)
|
|
938 AAfreqplot = AAfreqplot + annotate("rect", xmin = 6.5, xmax = 7.5, ymin = 0, ymax = Inf, fill = "red", alpha = 0.2)
|
8
|
939 AAfreqplot = AAfreqplot + ggtitle("Amino Acid Composition in the CDR3") + xlab("Amino Acid, from Hydrophilic (left) to Hydrophobic (right)") + ylab("Percentage") + scale_fill_manual(values=sample.colors)
|
|
940 AAfreqplot = AAfreqplot + theme(panel.background = element_rect(fill = "white", colour="black"),text = element_text(size=15, colour="black"), axis.text.x = element_text(angle = 45, hjust = 1), panel.grid.major.y = element_line(colour = "black"), panel.grid.major.x = element_blank())
|
5
|
941
|
|
942 png("AAComposition.png",width = 1280, height = 720)
|
|
943 AAfreqplot
|
|
944 dev.off()
|
18
|
945 write.table(AAfreq, "AAComposition.txt" , sep="\t",quote=F,na="-",row.names=F,col.names=T)
|
5
|
946
|
8
|
947 # ---------------------- AA median CDR3 length ----------------------
|
5
|
948
|
24
|
949 median.aa.l = data.frame(data.table(PRODF)[, list(median=as.double(median(as.numeric(.SD$CDR3.Length, na.rm=T), na.rm=T))), by=c("Sample")])
|
|
950 write.table(median.aa.l, "AAMedianBySample.txt" , sep="\t",quote=F,na="-",row.names=F,col.names=F)
|
8
|
951
|
25
|
952
|
|
953 #generate the "Sequences that are present in more than one replicate" dataset
|
|
954 clonaltype.in.replicates = inputdata
|
|
955 clonaltype = unlist(strsplit(clonaltype, ","))
|
|
956 clonaltype = clonaltype[-which(clonaltype == "Sample")]
|
|
957
|
|
958 clonaltype.in.replicates$clonaltype = do.call(paste, c(clonaltype.in.replicates[clonaltype], sep = ":"))
|
|
959 clonaltype.in.replicates = clonaltype.in.replicates[,c("clonaltype","Replicate", "ID", "Sequence", "Sample")]
|
|
960
|
|
961 clonaltype.counts = data.frame(table(clonaltype.in.replicates$clonaltype))
|
|
962 names(clonaltype.counts) = c("clonaltype", "coincidence")
|
|
963
|
|
964 clonaltype.counts = clonaltype.counts[clonaltype.counts$coincidence > 1,]
|
|
965
|
|
966 clonaltype.in.replicates = clonaltype.in.replicates[clonaltype.in.replicates$clonaltype %in% clonaltype.counts$clonaltype,]
|
|
967 clonaltype.in.replicates = merge(clonaltype.in.replicates, clonaltype.counts, by="clonaltype")
|
|
968 clonaltype.in.replicates = clonaltype.in.replicates[order(clonaltype.in.replicates$clonaltype),c("coincidence","clonaltype", "Sample", "Replicate", "ID", "Sequence")]
|
|
969
|
|
970 write.table(clonaltype.in.replicates, "clonaltypes_replicates.txt" , sep="\t",quote=F,na="-",row.names=F,col.names=T)
|
|
971
|
|
972
|
|
973
|
|
974
|
|
975
|
|
976
|
|
977
|
|
978
|
|
979
|
|
980
|
|
981
|
|
982
|
|
983
|
|
984
|
|
985
|
|
986
|
|
987
|
|
988
|
|
989
|
|
990
|
|
991
|
|
992
|
|
993
|
|
994
|
|
995
|