11
|
1 # ---------------------- load/install packages ----------------------
|
0
|
2
|
|
3 if (!("gridExtra" %in% rownames(installed.packages()))) {
|
11
|
4 install.packages("gridExtra", repos="http://cran.xl-mirror.nl/")
|
0
|
5 }
|
|
6 library(gridExtra)
|
|
7 if (!("ggplot2" %in% rownames(installed.packages()))) {
|
11
|
8 install.packages("ggplot2", repos="http://cran.xl-mirror.nl/")
|
0
|
9 }
|
11
|
10 library(ggplot2)
|
0
|
11 if (!("plyr" %in% rownames(installed.packages()))) {
|
11
|
12 install.packages("plyr", repos="http://cran.xl-mirror.nl/")
|
0
|
13 }
|
11
|
14 library(plyr)
|
0
|
15
|
|
16 if (!("data.table" %in% rownames(installed.packages()))) {
|
11
|
17 install.packages("data.table", repos="http://cran.xl-mirror.nl/")
|
0
|
18 }
|
|
19 library(data.table)
|
|
20
|
6
|
21 if (!("reshape2" %in% rownames(installed.packages()))) {
|
11
|
22 install.packages("reshape2", repos="http://cran.xl-mirror.nl/")
|
6
|
23 }
|
|
24 library(reshape2)
|
|
25
|
11
|
26 # ---------------------- parameters ----------------------
|
0
|
27
|
11
|
28 args <- commandArgs(trailingOnly = TRUE)
|
0
|
29
|
11
|
30 infile = args[1] #path to input file
|
|
31 outfile = args[2] #path to output file
|
|
32 outdir = args[3] #path to output folder (html/images/data)
|
|
33 clonaltype = args[4] #clonaltype definition, or 'none' for no unique filtering
|
|
34 species = args[5] #human or mouse
|
|
35 locus = args[6] # IGH, IGK, IGL, TRB, TRA, TRG or TRD
|
|
36 filterproductive = ifelse(args[7] == "yes", T, F) #should unproductive sequences be filtered out? (yes/no)
|
|
37
|
|
38 # ---------------------- Data preperation ----------------------
|
|
39
|
|
40 inputdata = read.table(infile, sep="\t", header=TRUE, fill=T, comment.char="")
|
0
|
41
|
11
|
42 setwd(outdir)
|
|
43
|
|
44 # remove weird rows
|
|
45 inputdata = inputdata[inputdata$Sample != "",]
|
0
|
46
|
11
|
47 #remove the allele from the V,D and J genes
|
|
48 inputdata$Top.V.Gene = gsub("[*]([0-9]+)", "", inputdata$Top.V.Gene)
|
|
49 inputdata$Top.D.Gene = gsub("[*]([0-9]+)", "", inputdata$Top.D.Gene)
|
|
50 inputdata$Top.J.Gene = gsub("[*]([0-9]+)", "", inputdata$Top.J.Gene)
|
|
51 inputdata$clonaltype = 1:nrow(inputdata)
|
|
52 PRODF = inputdata
|
|
53 if(filterproductive){
|
|
54 if("Functionality" %in% colnames(inputdata)) { # "Functionality" is an IMGT column
|
|
55 PRODF = inputdata[inputdata$Functionality == "productive" | inputdata$Functionality == "productive (see comment)", ]
|
|
56 } else {
|
|
57 PRODF = inputdata[inputdata$VDJ.Frame != "In-frame with stop codon" & inputdata$VDJ.Frame != "Out-of-frame" & inputdata$CDR3.Found.How != "NOT_FOUND" , ]
|
|
58 }
|
0
|
59 }
|
|
60
|
11
|
61 #remove duplicates based on the clonaltype
|
|
62 if(clonaltype != "none"){
|
14
|
63 PRODF$clonaltype = do.call(paste, c(test[unlist(strsplit(clonaltype, ","))], sep = ":"))
|
11
|
64 PRODF = PRODF[!duplicated(PRODF$clonaltype), ]
|
|
65 }
|
0
|
66
|
11
|
67 PRODF$freq = 1
|
0
|
68
|
11
|
69 if(any(grepl(pattern="_", x=PRODF$ID))){ #the frequency can be stored in the ID with the pattern ".*_freq_.*"
|
|
70 PRODF$freq = gsub("^[0-9]+_", "", PRODF$ID)
|
|
71 PRODF$freq = gsub("_.*", "", PRODF$freq)
|
|
72 PRODF$freq = as.numeric(PRODF$freq)
|
|
73 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
|
|
74 PRODF$freq = 1
|
|
75 }
|
|
76 }
|
10
|
77
|
|
78
|
|
79
|
11
|
80 #write the complete dataset that is left over, will be the input if 'none' for clonaltype and 'no' for filterproductive
|
|
81 write.table(PRODF, "allUnique.csv", sep=",",quote=F,row.names=F,col.names=T)
|
0
|
82
|
11
|
83 #write the samples to a file
|
|
84 sampleFile <- file("samples.txt")
|
|
85 un = unique(inputdata$Sample)
|
|
86 un = paste(un, sep="\n")
|
|
87 writeLines(un, sampleFile)
|
|
88 close(sampleFile)
|
|
89
|
|
90 # ---------------------- Frequency calculation for V, D and J ----------------------
|
|
91
|
|
92 PRODFV = data.frame(data.table(PRODF)[, list(Length=sum(freq)), by=c("Sample", "Top.V.Gene")])
|
0
|
93 Total = ddply(PRODFV, .(Sample), function(x) data.frame(Total = sum(x$Length)))
|
|
94 PRODFV = merge(PRODFV, Total, by.x='Sample', by.y='Sample', all.x=TRUE)
|
|
95 PRODFV = ddply(PRODFV, c("Sample", "Top.V.Gene"), summarise, relFreq= (Length*100 / Total))
|
|
96
|
11
|
97 PRODFD = data.frame(data.table(PRODF)[, list(Length=sum(freq)), by=c("Sample", "Top.D.Gene")])
|
0
|
98 Total = ddply(PRODFD, .(Sample), function(x) data.frame(Total = sum(x$Length)))
|
|
99 PRODFD = merge(PRODFD, Total, by.x='Sample', by.y='Sample', all.x=TRUE)
|
|
100 PRODFD = ddply(PRODFD, c("Sample", "Top.D.Gene"), summarise, relFreq= (Length*100 / Total))
|
|
101
|
11
|
102 PRODFJ = data.frame(data.table(PRODF)[, list(Length=sum(freq)), by=c("Sample", "Top.J.Gene")])
|
0
|
103 Total = ddply(PRODFJ, .(Sample), function(x) data.frame(Total = sum(x$Length)))
|
|
104 PRODFJ = merge(PRODFJ, Total, by.x='Sample', by.y='Sample', all.x=TRUE)
|
|
105 PRODFJ = ddply(PRODFJ, c("Sample", "Top.J.Gene"), summarise, relFreq= (Length*100 / Total))
|
|
106
|
11
|
107 # ---------------------- Setting up the gene names for the different T/B, human/mouse and locus ----------------------
|
|
108
|
|
109 V = c("v.name\tchr.orderV\n")
|
|
110 D = c("v.name\tchr.orderD\n")
|
|
111 J = c("v.name\tchr.orderJ\n")
|
10
|
112
|
|
113 if(species == "human"){
|
11
|
114 if(locus == "trb"){
|
|
115 V = c("v.name\tchr.orderV\nTRBV2\t1\nTRBV3-1\t2\nTRBV4-1\t3\nTRBV5-1\t4\nTRBV6-1\t5\nTRBV4-2\t6\nTRBV6-2\t7\nTRBV4-3\t8\nTRBV6-3\t9\nTRBV7-2\t10\nTRBV6-4\t11\nTRBV7-3\t12\nTRBV9\t13\nTRBV10-1\t14\nTRBV11-1\t15\nTRBV10-2\t16\nTRBV11-2\t17\nTRBV6-5\t18\nTRBV7-4\t19\nTRBV5-4\t20\nTRBV6-6\t21\nTRBV5-5\t22\nTRBV7-6\t23\nTRBV5-6\t24\nTRBV6-8\t25\nTRBV7-7\t26\nTRBV6-9\t27\nTRBV7-8\t28\nTRBV5-8\t29\nTRBV7-9\t30\nTRBV13\t31\nTRBV10-3\t32\nTRBV11-3\t33\nTRBV12-3\t34\nTRBV12-4\t35\nTRBV12-5\t36\nTRBV14\t37\nTRBV15\t38\nTRBV16\t39\nTRBV18\t40\nTRBV19\t41\nTRBV20-1\t42\nTRBV24-1\t43\nTRBV25-1\t44\nTRBV27\t45\nTRBV28\t46\nTRBV29-1\t47\nTRBV30\t48")
|
|
116 D = c("v.name\tchr.orderD\nTRBD1\t1\nTRBD2\t2\n")
|
|
117 J = c("v.name\tchr.orderJ\nTRBJ1-1\t1\nTRBJ1-2\t2\nTRBJ1-3\t3\nTRBJ1-4\t4\nTRBJ1-5\t5\nTRBJ1-6\t6\nTRBJ2-1\t7\nTRBJ2-2\t8\nTRBJ2-3\t9\nTRBJ2-4\t10\nTRBJ2-5\t11\nTRBJ2-6\t12\nTRBJ2-7\t13")
|
|
118 } else if (locus == "tra"){
|
|
119 V = c("v.name\tchr.orderVTRAV1-1\t1\nTRAV1-2\t2\nTRAV2\t3\nTRAV3\t4\nTRAV4\t5\nTRAV5\t6\nTRAV6\t7\nTRAV7\t8\nTRAV8-1\t9\nTRAV9-1\t10\nTRAV10\t11\nTRAV12-1\t12\nTRAV8-2\t13\nTRAV8-3\t14\nTRAV13-1\t15\nTRAV12-2\t16\nTRAV8-4\t17\nTRAV13-2\t18\nTRAV14/DV4\t19\nTRAV9-2\t20\nTRAV12-3\t21\nTRAV8-6\t22\nTRAV16\t23\nTRAV17\t24\nTRAV18\t25\nTRAV19\t26\nTRAV20\t27\nTRAV21\t28\nTRAV22\t29\nTRAV23/DV6\t30\nTRAV24\t31\nTRAV25\t32\nTRAV26-1\t33\nTRAV27\t34\nTRAV29/DV5\t35\nTRAV30\t36\nTRAV26-2\t37\nTRAV34\t38\nTRAV35\t39\nTRAV36/DV7\t40\nTRAV38-1\t41\nTRAV38-2/DV8\t42\nTRAV39\t43\nTRAV40\t44\nTRAV41\t45\n")
|
|
120 D = c("v.name\tchr.orderD\n")
|
|
121 J = c("v.name\tchr.orderJ\nTRAJ57\t1\nTRAJ56\t2\nTRAJ54\t3\nTRAJ53\t4\nTRAJ52\t5\nTRAJ50\t6\nTRAJ49\t7\nTRAJ48\t8\nTRAJ47\t9\nTRAJ46\t10\nTRAJ45\t11\nTRAJ44\t12\nTRAJ43\t13\nTRAJ42\t14\nTRAJ41\t15\nTRAJ40\t16\nTRAJ39\t17\nTRAJ38\t18\nTRAJ37\t19\nTRAJ36\t20\nTRAJ34\t21\nTRAJ33\t22\nTRAJ32\t23\nTRAJ31\t24\nTRAJ30\t25\nTRAJ29\t26\nTRAJ28\t27\nTRAJ27\t28\nTRAJ26\t29\nTRAJ24\t30\nTRAJ23\t31\nTRAJ22\t32\nTRAJ21\t33\nTRAJ20\t34\nTRAJ18\t35\nTRAJ17\t36\nTRAJ16\t37\nTRAJ15\t38\nTRAJ14\t39\nTRAJ13\t40\nTRAJ12\t41\nTRAJ11\t42\nTRAJ10\t43\nTRAJ9\t44\nTRAJ8\t45\nTRAJ7\t46\nTRAJ6\t47\nTRAJ5\t48\nTRAJ4\t49\nTRAJ3\t50")
|
|
122 } else if (locus == "trg"){
|
|
123 V = c("v.name\tchr.orderV\nTRGV9\t1\nTRGV8\t2\nTRGV5\t3\nTRGV4\t4\nTRGV3\t5\nTRGV2\t6")
|
|
124 D = c("v.name\tchr.orderD\n")
|
|
125 J = c("v.name\tchr.orderJ\nTRGJ2\t1\nTRGJP2\t2\nTRGJ1\t3\nTRGJP1\t4")
|
|
126 } else if (locus == "trd"){
|
|
127 V = c("v.name\tchr.orderV\nTRDV1\t1\nTRDV2\t2\nTRDV3\t3")
|
|
128 D = c("v.name\tchr.orderD\nTRDD1\t1\nTRDD2\t2\nTRDD3\t3")
|
|
129 J = c("v.name\tchr.orderJ\nTRDJ1\t1\nTRDJ4\t2\nTRDJ2\t3\nTRDJ3\t4")
|
|
130 } else if(locus == "igh"){
|
|
131 V = c("v.name\tchr.orderV\nIGHV3-74\t1\nIGHV3-73\t2\nIGHV3-72\t3\nIGHV2-70\t4\nIGHV1-69D\t5\nIGHV1-69-2\t6\nIGHV2-70D\t7\nIGHV1-69\t8\nIGHV3-66\t9\nIGHV3-64\t10\nIGHV4-61\t11\nIGHV4-59\t12\nIGHV1-58\t13\nIGHV3-53\t14\nIGHV5-51\t15\nIGHV3-49\t16\nIGHV3-48\t17\nIGHV1-46\t18\nIGHV1-45\t19\nIGHV3-43\t20\nIGHV4-39\t21\nIGHV3-43D\t22\nIGHV4-38-2\t23\nIGHV4-34\t24\nIGHV3-33\t25\nIGHV4-31\t26\nIGHV3-30-5\t27\nIGHV4-30-4\t28\nIGHV3-30-3\t29\nIGHV4-30-2\t30\nIGHV4-30-1\t31\nIGHV3-30\t32\nIGHV4-28\t33\nIGHV2-26\t34\nIGHV1-24\t35\nIGHV3-23D\t36\nIGHV3-23\t37\nIGHV3-21\t38\nIGHV3-20\t39\nIGHV1-18\t40\nIGHV3-15\t41\nIGHV3-13\t42\nIGHV3-11\t43\nIGHV5-10-1\t44\nIGHV3-9\t45\nIGHV1-8\t46\nIGHV3-64D\t47\nIGHV3-7\t48\nIGHV2-5\t49\nIGHV7-4-1\t50\nIGHV4-4\t51\nIGHV1-3\t52\nIGHV1-2\t53\nIGHV6-1\t54")
|
|
132 D = c("v.name\tchr.orderD\nIGHD1-7\t1\nIGHD2-8\t2\nIGHD3-9\t3\nIGHD3-10\t4\nIGHD5-12\t5\nIGHD6-13\t6\nIGHD2-15\t7\nIGHD3-16\t8\nIGHD4-17\t9\nIGHD5-18\t10\nIGHD6-19\t11\nIGHD1-20\t12\nIGHD2-21\t13\nIGHD3-22\t14\nIGHD5-24\t15\nIGHD6-25\t16\nIGHD1-26\t17\nIGHD7-27\t18")
|
|
133 J = c("v.name\tchr.orderJ\nIGHJ1\t1\nIGHJ2\t2\nIGHJ3\t3\nIGHJ4\t4\nIGHJ5\t5\nIGHJ6\t6")
|
|
134 } else if (locus == "igk"){
|
|
135 V = c("v.name\tchr.orderV\nIGKV3D-7\t1\nIGKV1D-8\t2\nIGKV1D-43\t3\nIGKV3D-11\t4\nIGKV1D-12\t5\nIGKV1D-13\t6\nIGKV3D-15\t7\nIGKV1D-16\t8\nIGKV1D-17\t9\nIGKV3D-20\t10\nIGKV2D-26\t11\nIGKV2D-28\t12\nIGKV2D-29\t13\nIGKV2D-30\t14\nIGKV1D-33\t15\nIGKV1D-39\t16\nIGKV2D-40\t17\nIGKV2-40\t18\nIGKV1-39\t19\nIGKV1-33\t20\nIGKV2-30\t21\nIGKV2-29\t22\nIGKV2-28\t23\nIGKV1-27\t24\nIGKV2-24\t25\nIGKV3-20\t26\nIGKV1-17\t27\nIGKV1-16\t28\nIGKV3-15\t29\nIGKV1-13\t30\nIGKV1-12\t31\nIGKV3-11\t32\nIGKV1-9\t33\nIGKV1-8\t34\nIGKV1-6\t35\nIGKV1-5\t36\nIGKV5-2\t37\nIGKV4-1\t38")
|
|
136 D = c("v.name\tchr.orderD\n")
|
|
137 J = c("v.name\tchr.orderJ\nIGKJ1\t1\nIGKJ2\t2\nIGKJ3\t3\nIGKJ4\t4\nIGKJ5\t5")
|
|
138 } else if (locus == "igl"){
|
|
139 V = c("v.name\tchr.orderV\nIGLV4-69\t1\nIGLV8-61\t2\nIGLV4-60\t3\nIGLV6-57\t4\nIGLV5-52\t5\nIGLV1-51\t6\nIGLV9-49\t7\nIGLV1-47\t8\nIGLV7-46\t9\nIGLV5-45\t10\nIGLV1-44\t11\nIGLV7-43\t12\nIGLV1-41\t13\nIGLV1-40\t14\nIGLV5-39\t15\nIGLV5-37\t16\nIGLV1-36\t17\nIGLV3-27\t18\nIGLV3-25\t19\nIGLV2-23\t20\nIGLV3-22\t21\nIGLV3-21\t22\nIGLV3-19\t23\nIGLV2-18\t24\nIGLV3-16\t25\nIGLV2-14\t26\nIGLV3-12\t27\nIGLV2-11\t28\nIGLV3-10\t29\nIGLV3-9\t30\nIGLV2-8\t31\nIGLV4-3\t32\nIGLV3-1\t33")
|
|
140 D = c("v.name\tchr.orderD\n")
|
|
141 J = c("v.name\tchr.orderJ\nIGLJ1\t1\nIGLJ2\t2\nIGLJ3\t3\nIGLJ6\t4\nIGLJ7\t5")
|
|
142 }
|
10
|
143 } else if (species == "mouse"){
|
11
|
144 if(locus == "trb"){
|
|
145 V = c("v.name\tchr.orderV\nTRBV1\t1\nTRBV2\t2\nTRBV3\t3\nTRBV4\t4\nTRBV5\t5\nTRBV12-1\t6\nTRBV13-1\t7\nTRBV12-2\t8\nTRBV13-2\t9\nTRBV13-3\t10\nTRBV14\t11\nTRBV15\t12\nTRBV16\t13\nTRBV17\t14\nTRBV19\t15\nTRBV20\t16\nTRBV23\t17\nTRBV24\t18\nTRBV26\t19\nTRBV29\t20\nTRBV30\t21\nTRBV31\t22")
|
|
146 D = c("v.name\tchr.orderD\nTRBD1\t1\nTRBD2\t2")
|
|
147 J = c("v.name\tchr.orderJ\nTRBJ1-1\t1\nTRBJ1-2\t2\nTRBJ1-3\t3\nTRBJ1-4\t4\nTRBJ1-5\t5\nTRBJ2-1\t6\nTRBJ2-2\t7\nTRBJ2-3\t8\nTRBJ2-4\t9\nTRBJ2-5\t10\nTRBJ2-6\t11\nTRBJ2-7\t12")
|
|
148 } else if (locus == "tra"){
|
|
149 cat("mouse tra not yet implemented")
|
|
150 } else if (locus == "trg"){
|
|
151 cat("mouse trg not yet implemented")
|
|
152 } else if (locus == "trd"){
|
|
153 cat("mouse trd not yet implemented")
|
|
154 } else if(locus == "igh"){
|
|
155 cat("mouse igh not yet implemented")
|
|
156 } else if (locus == "igk"){
|
|
157 cat("mouse igk not yet implemented")
|
|
158 } else if (locus == "igl"){
|
|
159 cat("mouse igl not yet implemented")
|
|
160 }
|
10
|
161 }
|
|
162
|
|
163 useD = TRUE
|
11
|
164 if(species == "human" && locus == "tra"){
|
|
165 useD = FALSE
|
|
166 cat("No D Genes in this species/locus")
|
10
|
167 }
|
|
168
|
11
|
169 # ---------------------- load the gene names into a data.frame and merge with the frequency count ----------------------
|
|
170
|
0
|
171 tcV = textConnection(V)
|
|
172 Vchain = read.table(tcV, sep="\t", header=TRUE)
|
|
173 PRODFV = merge(PRODFV, Vchain, by.x='Top.V.Gene', by.y='v.name', all.x=TRUE)
|
|
174 close(tcV)
|
|
175
|
|
176 tcD = textConnection(D)
|
|
177 Dchain = read.table(tcD, sep="\t", header=TRUE)
|
|
178 PRODFD = merge(PRODFD, Dchain, by.x='Top.D.Gene', by.y='v.name', all.x=TRUE)
|
|
179 close(tcD)
|
|
180
|
|
181 tcJ = textConnection(J)
|
|
182 Jchain = read.table(tcJ, sep="\t", header=TRUE)
|
|
183 PRODFJ = merge(PRODFJ, Jchain, by.x='Top.J.Gene', by.y='v.name', all.x=TRUE)
|
|
184 close(tcJ)
|
|
185
|
11
|
186 # ---------------------- Create the V, D and J frequency plots and write the data.frame for every plot to a file ----------------------
|
0
|
187
|
|
188 pV = ggplot(PRODFV)
|
|
189 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))
|
|
190 pV = pV + xlab("Summary of V gene") + ylab("Frequency") + ggtitle("Relative frequency of V gene usage")
|
6
|
191 write.table(x=PRODFV, file="VFrequency.csv", sep=",",quote=F,row.names=F,col.names=T)
|
0
|
192
|
|
193 png("VPlot.png",width = 1280, height = 720)
|
|
194 pV
|
|
195 dev.off();
|
|
196
|
11
|
197 if(useD){
|
|
198 pD = ggplot(PRODFD)
|
|
199 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))
|
|
200 pD = pD + xlab("Summary of D gene") + ylab("Frequency") + ggtitle("Relative frequency of D gene usage")
|
|
201 write.table(x=PRODFD, file="DFrequency.csv", sep=",",quote=F,row.names=F,col.names=T)
|
|
202
|
|
203 png("DPlot.png",width = 800, height = 600)
|
|
204 print(pD)
|
|
205 dev.off();
|
|
206 }
|
0
|
207
|
11
|
208 pJ = ggplot(PRODFJ)
|
|
209 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))
|
|
210 pJ = pJ + xlab("Summary of J gene") + ylab("Frequency") + ggtitle("Relative frequency of J gene usage")
|
|
211 write.table(x=PRODFJ, file="JFrequency.csv", sep=",",quote=F,row.names=F,col.names=T)
|
|
212
|
|
213 png("JPlot.png",width = 800, height = 600)
|
|
214 pJ
|
0
|
215 dev.off();
|
|
216
|
|
217 pJ = ggplot(PRODFJ)
|
|
218 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))
|
|
219 pJ = pJ + xlab("Summary of J gene") + ylab("Frequency") + ggtitle("Relative frequency of J gene usage")
|
6
|
220 write.table(x=PRODFJ, file="JFrequency.csv", sep=",",quote=F,row.names=F,col.names=T)
|
0
|
221
|
|
222 png("JPlot.png",width = 800, height = 600)
|
|
223 pJ
|
|
224 dev.off();
|
|
225
|
11
|
226 # ---------------------- Now the frequency plots of the V, D and J families ----------------------
|
|
227
|
6
|
228 VGenes = PRODF[,c("Sample", "Top.V.Gene")]
|
|
229 VGenes$Top.V.Gene = gsub("-.*", "", VGenes$Top.V.Gene)
|
|
230 VGenes = data.frame(data.table(VGenes)[, list(Count=.N), by=c("Sample", "Top.V.Gene")])
|
|
231 TotalPerSample = data.frame(data.table(VGenes)[, list(total=sum(.SD$Count)), by=Sample])
|
|
232 VGenes = merge(VGenes, TotalPerSample, by="Sample")
|
|
233 VGenes$Frequency = VGenes$Count * 100 / VGenes$total
|
|
234 VPlot = ggplot(VGenes)
|
8
|
235 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)) +
|
11
|
236 ggtitle("Distribution of V gene families") +
|
|
237 ylab("Percentage of sequences")
|
6
|
238 png("VFPlot.png")
|
|
239 VPlot
|
|
240 dev.off();
|
|
241 write.table(x=VGenes, file="VFFrequency.csv", sep=",",quote=F,row.names=F,col.names=T)
|
|
242
|
11
|
243 if(useD){
|
|
244 DGenes = PRODF[,c("Sample", "Top.D.Gene")]
|
|
245 DGenes$Top.D.Gene = gsub("-.*", "", DGenes$Top.D.Gene)
|
|
246 DGenes = data.frame(data.table(DGenes)[, list(Count=.N), by=c("Sample", "Top.D.Gene")])
|
|
247 TotalPerSample = data.frame(data.table(DGenes)[, list(total=sum(.SD$Count)), by=Sample])
|
|
248 DGenes = merge(DGenes, TotalPerSample, by="Sample")
|
|
249 DGenes$Frequency = DGenes$Count * 100 / DGenes$total
|
|
250 DPlot = ggplot(DGenes)
|
|
251 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)) +
|
|
252 ggtitle("Distribution of D gene families") +
|
|
253 ylab("Percentage of sequences")
|
|
254 png("DFPlot.png")
|
|
255 print(DPlot)
|
|
256 dev.off();
|
|
257 write.table(x=DGenes, file="DFFrequency.csv", sep=",",quote=F,row.names=F,col.names=T)
|
|
258 }
|
6
|
259
|
|
260 JGenes = PRODF[,c("Sample", "Top.J.Gene")]
|
|
261 JGenes$Top.J.Gene = gsub("-.*", "", JGenes$Top.J.Gene)
|
|
262 JGenes = data.frame(data.table(JGenes)[, list(Count=.N), by=c("Sample", "Top.J.Gene")])
|
|
263 TotalPerSample = data.frame(data.table(JGenes)[, list(total=sum(.SD$Count)), by=Sample])
|
|
264 JGenes = merge(JGenes, TotalPerSample, by="Sample")
|
|
265 JGenes$Frequency = JGenes$Count * 100 / JGenes$total
|
|
266 JPlot = ggplot(JGenes)
|
8
|
267 JPlot = JPlot + geom_bar(aes( x = Top.J.Gene, y = Frequency, fill = Sample), stat='identity', position='dodge' ) + theme(axis.text.x = element_text(angle = 90, hjust = 1)) +
|
11
|
268 ggtitle("Distribution of J gene families") +
|
|
269 ylab("Percentage of sequences")
|
6
|
270 png("JFPlot.png")
|
|
271 JPlot
|
|
272 dev.off();
|
|
273 write.table(x=JGenes, file="JFFrequency.csv", sep=",",quote=F,row.names=F,col.names=T)
|
|
274
|
11
|
275 # ---------------------- Plotting the cdr3 length ----------------------
|
|
276
|
8
|
277 CDR3Length = data.frame(data.table(PRODF)[, list(Count=.N), by=c("Sample", "CDR3.Length.DNA")])
|
|
278 TotalPerSample = data.frame(data.table(CDR3Length)[, list(total=sum(.SD$Count)), by=Sample])
|
|
279 CDR3Length = merge(CDR3Length, TotalPerSample, by="Sample")
|
|
280 CDR3Length$Frequency = CDR3Length$Count * 100 / CDR3Length$total
|
|
281 CDR3LengthPlot = ggplot(CDR3Length)
|
|
282 CDR3LengthPlot = CDR3LengthPlot + geom_bar(aes( x = CDR3.Length.DNA, y = Frequency, fill = Sample), stat='identity', position='dodge' ) + theme(axis.text.x = element_text(angle = 90, hjust = 1)) +
|
11
|
283 ggtitle("Length distribution of CDR3") +
|
|
284 xlab("CDR3 Length") +
|
|
285 ylab("Percentage of sequences")
|
8
|
286 png("CDR3LengthPlot.png",width = 1280, height = 720)
|
|
287 CDR3LengthPlot
|
|
288 dev.off()
|
|
289 write.table(x=CDR3Length, file="CDR3LengthPlot.csv", sep=",",quote=F,row.names=F,col.names=T)
|
|
290
|
11
|
291 # ---------------------- Plot the heatmaps ----------------------
|
|
292
|
|
293
|
|
294 #get the reverse order for the V and D genes
|
0
|
295 revVchain = Vchain
|
|
296 revDchain = Dchain
|
|
297 revVchain$chr.orderV = rev(revVchain$chr.orderV)
|
|
298 revDchain$chr.orderD = rev(revDchain$chr.orderD)
|
|
299
|
11
|
300 if(useD){
|
|
301 plotVD <- function(dat){
|
|
302 if(length(dat[,1]) == 0){
|
|
303 return()
|
|
304 }
|
|
305 img = ggplot() +
|
|
306 geom_tile(data=dat, aes(x=factor(reorder(Top.D.Gene, chr.orderD)), y=factor(reorder(Top.V.Gene, chr.orderV)), fill=relLength)) +
|
|
307 theme(axis.text.x = element_text(angle = 90, hjust = 1)) +
|
|
308 scale_fill_gradient(low="gold", high="blue", na.value="white") +
|
|
309 ggtitle(paste(unique(dat$Sample), " (N=" , sum(dat$Length, na.rm=T) ,")", sep="")) +
|
|
310 xlab("D genes") +
|
|
311 ylab("V Genes")
|
|
312
|
|
313 png(paste("HeatmapVD_", unique(dat[3])[1,1] , ".png", sep=""), width=150+(15*length(Dchain$v.name)), height=100+(15*length(Vchain$v.name)))
|
|
314 print(img)
|
|
315 dev.off()
|
|
316 write.table(x=acast(dat, Top.V.Gene~Top.D.Gene, value.var="Length"), file=paste("HeatmapVD_", unique(dat[3])[1,1], ".csv", sep=""), sep=",",quote=F,row.names=T,col.names=NA)
|
|
317 }
|
|
318
|
|
319 VandDCount = data.frame(data.table(PRODF)[, list(Length=.N), by=c("Top.V.Gene", "Top.D.Gene", "Sample")])
|
|
320
|
|
321 VandDCount$l = log(VandDCount$Length)
|
|
322 maxVD = data.frame(data.table(VandDCount)[, list(max=max(l)), by=c("Sample")])
|
|
323 VandDCount = merge(VandDCount, maxVD, by.x="Sample", by.y="Sample", all.x=T)
|
|
324 VandDCount$relLength = VandDCount$l / VandDCount$max
|
|
325
|
|
326 cartegianProductVD = expand.grid(Top.V.Gene = Vchain$v.name, Top.D.Gene = Dchain$v.name, Sample = unique(inputdata$Sample))
|
|
327
|
|
328 completeVD = merge(VandDCount, cartegianProductVD, all.y=TRUE)
|
|
329 completeVD = merge(completeVD, revVchain, by.x="Top.V.Gene", by.y="v.name", all.x=TRUE)
|
|
330 completeVD = merge(completeVD, Dchain, by.x="Top.D.Gene", by.y="v.name", all.x=TRUE)
|
|
331 VDList = split(completeVD, f=completeVD[,"Sample"])
|
|
332
|
|
333 lapply(VDList, FUN=plotVD)
|
0
|
334 }
|
|
335
|
|
336 plotVJ <- function(dat){
|
11
|
337 if(length(dat[,1]) == 0){
|
|
338 return()
|
|
339 }
|
|
340 cat(paste(unique(dat[3])[1,1]))
|
|
341 img = ggplot() +
|
|
342 geom_tile(data=dat, aes(x=factor(reorder(Top.J.Gene, chr.orderJ)), y=factor(reorder(Top.V.Gene, chr.orderV)), fill=relLength)) +
|
|
343 theme(axis.text.x = element_text(angle = 90, hjust = 1)) +
|
|
344 scale_fill_gradient(low="gold", high="blue", na.value="white") +
|
|
345 ggtitle(paste(unique(dat$Sample), " (N=" , sum(dat$Length, na.rm=T) ,")", sep="")) +
|
|
346 xlab("J genes") +
|
|
347 ylab("V Genes")
|
|
348
|
|
349 png(paste("HeatmapVJ_", unique(dat[3])[1,1] , ".png", sep=""), width=150+(15*length(Jchain$v.name)), height=100+(15*length(Vchain$v.name)))
|
|
350 print(img)
|
|
351 dev.off()
|
|
352 write.table(x=acast(dat, Top.V.Gene~Top.J.Gene, value.var="Length"), file=paste("HeatmapVJ_", unique(dat[3])[1,1], ".csv", sep=""), sep=",",quote=F,row.names=T,col.names=NA)
|
0
|
353 }
|
|
354
|
|
355 VandJCount = data.frame(data.table(PRODF)[, list(Length=.N), by=c("Top.V.Gene", "Top.J.Gene", "Sample")])
|
|
356
|
|
357 VandJCount$l = log(VandJCount$Length)
|
|
358 maxVJ = data.frame(data.table(VandJCount)[, list(max=max(l)), by=c("Sample")])
|
|
359 VandJCount = merge(VandJCount, maxVJ, by.x="Sample", by.y="Sample", all.x=T)
|
|
360 VandJCount$relLength = VandJCount$l / VandJCount$max
|
|
361
|
11
|
362 cartegianProductVJ = expand.grid(Top.V.Gene = Vchain$v.name, Top.J.Gene = Jchain$v.name, Sample = unique(inputdata$Sample))
|
0
|
363
|
|
364 completeVJ = merge(VandJCount, cartegianProductVJ, all.y=TRUE)
|
|
365 completeVJ = merge(completeVJ, revVchain, by.x="Top.V.Gene", by.y="v.name", all.x=TRUE)
|
|
366 completeVJ = merge(completeVJ, Jchain, by.x="Top.J.Gene", by.y="v.name", all.x=TRUE)
|
|
367 VJList = split(completeVJ, f=completeVJ[,"Sample"])
|
|
368 lapply(VJList, FUN=plotVJ)
|
|
369
|
11
|
370 if(useD){
|
|
371 plotDJ <- function(dat){
|
|
372 if(length(dat[,1]) == 0){
|
|
373 return()
|
|
374 }
|
|
375 img = ggplot() +
|
|
376 geom_tile(data=dat, aes(x=factor(reorder(Top.J.Gene, chr.orderJ)), y=factor(reorder(Top.D.Gene, chr.orderD)), fill=relLength)) +
|
|
377 theme(axis.text.x = element_text(angle = 90, hjust = 1)) +
|
|
378 scale_fill_gradient(low="gold", high="blue", na.value="white") +
|
|
379 ggtitle(paste(unique(dat$Sample), " (N=" , sum(dat$Length, na.rm=T) ,")", sep="")) +
|
|
380 xlab("J genes") +
|
|
381 ylab("D Genes")
|
|
382
|
|
383 png(paste("HeatmapDJ_", unique(dat[3])[1,1] , ".png", sep=""), width=150+(15*length(Jchain$v.name)), height=100+(15*length(Dchain$v.name)))
|
|
384 print(img)
|
|
385 dev.off()
|
|
386 write.table(x=acast(dat, Top.D.Gene~Top.J.Gene, value.var="Length"), file=paste("HeatmapDJ_", unique(dat[3])[1,1], ".csv", sep=""), sep=",",quote=F,row.names=T,col.names=NA)
|
|
387 }
|
|
388
|
|
389
|
|
390 DandJCount = data.frame(data.table(PRODF)[, list(Length=.N), by=c("Top.D.Gene", "Top.J.Gene", "Sample")])
|
|
391
|
|
392 DandJCount$l = log(DandJCount$Length)
|
|
393 maxDJ = data.frame(data.table(DandJCount)[, list(max=max(l)), by=c("Sample")])
|
|
394 DandJCount = merge(DandJCount, maxDJ, by.x="Sample", by.y="Sample", all.x=T)
|
|
395 DandJCount$relLength = DandJCount$l / DandJCount$max
|
|
396
|
|
397 cartegianProductDJ = expand.grid(Top.D.Gene = Dchain$v.name, Top.J.Gene = Jchain$v.name, Sample = unique(inputdata$Sample))
|
|
398
|
|
399 completeDJ = merge(DandJCount, cartegianProductDJ, all.y=TRUE)
|
|
400 completeDJ = merge(completeDJ, revDchain, by.x="Top.D.Gene", by.y="v.name", all.x=TRUE)
|
|
401 completeDJ = merge(completeDJ, Jchain, by.x="Top.J.Gene", by.y="v.name", all.x=TRUE)
|
|
402 DJList = split(completeDJ, f=completeDJ[,"Sample"])
|
|
403 lapply(DJList, FUN=plotDJ)
|
0
|
404 }
|
|
405
|
10
|
406
|
11
|
407 # ---------------------- calculating the clonality score ----------------------
|
0
|
408
|
11
|
409 if("Replicate" %in% colnames(inputdata)) #can only calculate clonality score when replicate information is available
|
|
410 {
|
|
411 clonalityFrame = inputdata
|
|
412 if(clonaltype != "none"){
|
|
413 clonalityFrame$ReplicateConcat = paste(clonalityFrame$clonaltype, clonalityFrame$Sample, clonalityFrame$Replicate, sep = ":")
|
|
414 clonalityFrame = clonalityFrame[!duplicated(clonalityFrame$ReplicateConcat), ]
|
|
415 }
|
|
416 write.table(clonalityFrame, "clonalityComplete.csv", sep=",",quote=F,row.names=F,col.names=T)
|
|
417
|
|
418 ClonalitySampleReplicatePrint <- function(dat){
|
|
419 write.table(dat, paste("clonality_", unique(inputdata$Sample) , "_", unique(dat$Replicate), ".csv", sep=""), sep=",",quote=F,row.names=F,col.names=T)
|
|
420 }
|
|
421
|
|
422 clonalityFrameSplit = split(clonalityFrame, f=clonalityFrame[,c("Sample", "Replicate")])
|
|
423 #lapply(clonalityFrameSplit, FUN=ClonalitySampleReplicatePrint)
|
|
424
|
|
425 ClonalitySamplePrint <- function(dat){
|
|
426 write.table(dat, paste("clonality_", unique(inputdata$Sample) , ".csv", sep=""), sep=",",quote=F,row.names=F,col.names=T)
|
|
427 }
|
|
428
|
|
429 clonalityFrameSplit = split(clonalityFrame, f=clonalityFrame[,"Sample"])
|
|
430 #lapply(clonalityFrameSplit, FUN=ClonalitySamplePrint)
|
|
431
|
|
432 clonalFreq = data.frame(data.table(clonalityFrame)[, list(Type=.N), by=c("Sample", "clonaltype")])
|
|
433 clonalFreqCount = data.frame(data.table(clonalFreq)[, list(Count=.N), by=c("Sample", "Type")])
|
|
434 clonalFreqCount$realCount = clonalFreqCount$Type * clonalFreqCount$Count
|
|
435 clonalSum = data.frame(data.table(clonalFreqCount)[, list(Reads=sum(realCount)), by=c("Sample")])
|
|
436 clonalFreqCount = merge(clonalFreqCount, clonalSum, by.x="Sample", by.y="Sample")
|
|
437
|
|
438 ct = c('Type\tWeight\n2\t1\n3\t3\n4\t6\n5\t10\n6\t15')
|
|
439 tcct = textConnection(ct)
|
|
440 CT = read.table(tcct, sep="\t", header=TRUE)
|
|
441 close(tcct)
|
|
442 clonalFreqCount = merge(clonalFreqCount, CT, by.x="Type", by.y="Type", all.x=T)
|
|
443 clonalFreqCount$WeightedCount = clonalFreqCount$Count * clonalFreqCount$Weight
|
|
444
|
|
445 ReplicateReads = data.frame(data.table(clonalityFrame)[, list(Type=.N), by=c("Sample", "Replicate", "clonaltype")])
|
|
446 ReplicateReads = data.frame(data.table(ReplicateReads)[, list(Reads=.N), by=c("Sample", "Replicate")])
|
|
447 clonalFreqCount$Reads = as.numeric(clonalFreqCount$Reads)
|
|
448 ReplicateReads$squared = ReplicateReads$Reads * ReplicateReads$Reads
|
|
449
|
|
450 ReplicatePrint <- function(dat){
|
|
451 write.table(dat[-1], paste("ReplicateReads_", unique(dat[1])[1,1] , ".csv", sep=""), sep=",",quote=F,na="-",row.names=F,col.names=F)
|
|
452 }
|
|
453
|
|
454 ReplicateSplit = split(ReplicateReads, f=ReplicateReads[,"Sample"])
|
|
455 lapply(ReplicateSplit, FUN=ReplicatePrint)
|
|
456
|
|
457 ReplicateReads = data.frame(data.table(ReplicateReads)[, list(ReadsSum=sum(Reads), ReadsSquaredSum=sum(squared)), by=c("Sample")])
|
|
458 clonalFreqCount = merge(clonalFreqCount, ReplicateReads, by.x="Sample", by.y="Sample", all.x=T)
|
|
459
|
|
460
|
|
461 ReplicateSumPrint <- function(dat){
|
|
462 write.table(dat[-1], paste("ReplicateSumReads_", unique(dat[1])[1,1] , ".csv", sep=""), sep=",",quote=F,na="-",row.names=F,col.names=F)
|
|
463 }
|
|
464
|
|
465 ReplicateSumSplit = split(ReplicateReads, f=ReplicateReads[,"Sample"])
|
|
466 lapply(ReplicateSumSplit, FUN=ReplicateSumPrint)
|
|
467
|
|
468 clonalFreqCountSum = data.frame(data.table(clonalFreqCount)[, list(Numerator=sum(WeightedCount, na.rm=T)), by=c("Sample")])
|
|
469 clonalFreqCount = merge(clonalFreqCount, clonalFreqCountSum, by.x="Sample", by.y="Sample", all.x=T)
|
|
470 clonalFreqCount$ReadsSum = as.numeric(clonalFreqCount$ReadsSum) #prevent integer overflow
|
|
471 clonalFreqCount$Denominator = (((clonalFreqCount$ReadsSum * clonalFreqCount$ReadsSum) - clonalFreqCount$ReadsSquaredSum) / 2)
|
|
472 clonalFreqCount$Result = (clonalFreqCount$Numerator + 1) / (clonalFreqCount$Denominator + 1)
|
|
473
|
|
474 ClonalityScorePrint <- function(dat){
|
|
475 write.table(dat$Result, paste("ClonalityScore_", unique(dat[1])[1,1] , ".csv", sep=""), sep=",",quote=F,na="-",row.names=F,col.names=F)
|
|
476 }
|
|
477
|
|
478 clonalityScore = clonalFreqCount[c("Sample", "Result")]
|
|
479 clonalityScore = unique(clonalityScore)
|
|
480
|
|
481 clonalityScoreSplit = split(clonalityScore, f=clonalityScore[,"Sample"])
|
|
482 lapply(clonalityScoreSplit, FUN=ClonalityScorePrint)
|
|
483
|
|
484 clonalityOverview = clonalFreqCount[c("Sample", "Type", "Count", "Weight", "WeightedCount")]
|
|
485
|
|
486
|
|
487
|
|
488 ClonalityOverviewPrint <- function(dat){
|
|
489 write.table(dat[-1], paste("ClonalityOverView_", unique(dat[1])[1,1] , ".csv", sep=""), sep=",",quote=F,na="-",row.names=F,col.names=F)
|
|
490 }
|
|
491
|
|
492 clonalityOverviewSplit = split(clonalityOverview, f=clonalityOverview$Sample)
|
|
493 lapply(clonalityOverviewSplit, FUN=ClonalityOverviewPrint)
|
0
|
494 }
|
1
|
495
|
11
|
496 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")
|
|
497 if(all(imgtcolumns %in% colnames(inputdata)))
|
1
|
498 {
|
11
|
499 newData = data.frame(data.table(inputdata)[,list(unique=.N,
|
|
500 VH.DEL=mean(X3V.REGION.trimmed.nt.nb, na.rm=T),
|
|
501 P1=mean(P3V.nt.nb, na.rm=T),
|
|
502 N1=mean(N1.REGION.nt.nb, na.rm=T),
|
|
503 P2=mean(P5D.nt.nb, na.rm=T),
|
|
504 DEL.DH=mean(X5D.REGION.trimmed.nt.nb, na.rm=T),
|
|
505 DH.DEL=mean(X3D.REGION.trimmed.nt.nb, na.rm=T),
|
|
506 P3=mean(P3D.nt.nb, na.rm=T),
|
|
507 N2=mean(N2.REGION.nt.nb, na.rm=T),
|
|
508 P4=mean(P5J.nt.nb, na.rm=T),
|
|
509 DEL.JH=mean(X5J.REGION.trimmed.nt.nb, na.rm=T),
|
|
510 Total.Del=( mean(X3V.REGION.trimmed.nt.nb, na.rm=T) +
|
|
511 mean(X5D.REGION.trimmed.nt.nb, na.rm=T) +
|
|
512 mean(X3D.REGION.trimmed.nt.nb, na.rm=T) +
|
|
513 mean(X5J.REGION.trimmed.nt.nb, na.rm=T)),
|
|
514
|
|
515 Total.N=( mean(N1.REGION.nt.nb, na.rm=T) +
|
|
516 mean(N2.REGION.nt.nb, na.rm=T)),
|
|
517
|
|
518 Total.P=( mean(P3V.nt.nb, na.rm=T) +
|
|
519 mean(P5D.nt.nb, na.rm=T) +
|
|
520 mean(P3D.nt.nb, na.rm=T) +
|
|
521 mean(P5J.nt.nb, na.rm=T))),
|
|
522 by=c("Sample")])
|
|
523 write.table(newData, "junctionAnalysis.csv" , sep=",",quote=F,na="-",row.names=F,col.names=F)
|
5
|
524 }
|