0
|
1 args <- commandArgs(trailingOnly = TRUE)
|
40
|
2 options(show.error.locations = TRUE)
|
0
|
3
|
|
4 summ.file = args[1]
|
20
|
5 sequences.file = args[2]
|
|
6 aa.file = args[3]
|
|
7 junction.file = args[4]
|
28
|
8 gapped.aa.file = args[5]
|
|
9 out.file = args[6]
|
0
|
10
|
40
|
11 print(summ.file)
|
|
12 print(out.file)
|
|
13
|
0
|
14 summ = read.table(summ.file, sep="\t", header=T, quote="", fill=T)
|
20
|
15 sequences = read.table(sequences.file, sep="\t", header=T, quote="", fill=T)
|
0
|
16 aa = read.table(aa.file, sep="\t", header=T, quote="", fill=T)
|
28
|
17 gapped.aa = read.table(gapped.aa.file, sep="\t", header=T, quote="", fill=T)
|
0
|
18 junction = read.table(junction.file, sep="\t", header=T, quote="", fill=T)
|
|
19
|
40
|
20 print(paste("nrow(summ)", nrow(summ)))
|
|
21
|
|
22 write.table(summ, out.file, sep="\t", quote=F, row.names=F, col.names=T)
|
|
23
|
39
|
24 fix_column_names = function(df){
|
|
25 if("V.DOMAIN.Functionality" %in% names(df)){
|
|
26 names(df)[names(df) == "V.DOMAIN.Functionality"] = "Functionality"
|
|
27 print("found V.DOMAIN.Functionality, changed")
|
|
28 }
|
|
29 if("V.DOMAIN.Functionality.comment" %in% names(df)){
|
|
30 names(df)[names(df) == "V.DOMAIN.Functionality.comment"] = "Functionality.comment"
|
|
31 print("found V.DOMAIN.Functionality.comment, changed")
|
|
32 }
|
|
33 return(df)
|
|
34 }
|
|
35
|
46
|
36 print_missing_columns = function(df, cols, label=""){
|
|
37 cols_in_df = cols %in% names(df)
|
|
38 if(sum(!cols_in_df) > 0){
|
|
39 print("Columns are missing from summary file, don't have:")
|
|
40 print(cols[!cols_in_df])
|
|
41 } else {
|
|
42 print(paste("No missing columns for", label))
|
|
43 }
|
|
44 }
|
|
45
|
39
|
46 summ = fix_column_names(summ)
|
|
47 sequences = fix_column_names(sequences)
|
|
48 aa = fix_column_names(aa)
|
|
49 gapped.aa = fix_column_names(gapped.aa)
|
|
50 junction = fix_column_names(junction)
|
|
51
|
40
|
52 print(paste("nrow(summ)", nrow(summ)))
|
|
53
|
0
|
54 old_summary_columns=c('Sequence.ID','JUNCTION.frame','V.GENE.and.allele','D.GENE.and.allele','J.GENE.and.allele','CDR1.IMGT.length','CDR2.IMGT.length','CDR3.IMGT.length','Orientation')
|
|
55 old_sequence_columns=c('CDR1.IMGT','CDR2.IMGT','CDR3.IMGT')
|
|
56 old_junction_columns=c('JUNCTION')
|
|
57
|
|
58 added_summary_columns=c('Functionality','V.REGION.identity..','V.REGION.identity.nt','D.REGION.reading.frame','AA.JUNCTION','Functionality.comment','Sequence')
|
|
59 added_sequence_columns=c('FR1.IMGT','FR2.IMGT','FR3.IMGT','CDR3.IMGT','JUNCTION','J.REGION','FR4.IMGT')
|
|
60
|
|
61 added_junction_columns=c('P3.V.nt.nb','N.REGION.nt.nb','N1.REGION.nt.nb','P5.D.nt.nb','P3.D.nt.nb','N2.REGION.nt.nb','P5.J.nt.nb','X3.V.REGION.trimmed.nt.nb','X5.D.REGION.trimmed.nt.nb','X3.D.REGION.trimmed.nt.nb','X5.J.REGION.trimmed.nt.nb','N.REGION','N1.REGION','N2.REGION')
|
|
62 added_junction_columns=c(added_junction_columns, 'P5.D1.nt.nb', 'P3.D1.nt.nb', 'N2.REGION.nt.nb', 'P5.D2.nt.nb', 'P3.D2.nt.nb', 'N3.REGION.nt.nb', 'P5.D3.nt.nb', 'P3.D2.nt.nb', 'N4.REGION.nt.nb', 'X5.D1.REGION.trimmed.nt.nb', 'X3.D1.REGION.trimmed.nt.nb', 'X5.D2.REGION.trimmed.nt.nb', 'X3.D2.REGION.trimmed.nt.nb', 'X5.D3.REGION.trimmed.nt.nb', 'X3.D3.REGION.trimmed.nt.nb', 'D.REGION.nt.nb', 'D1.REGION.nt.nb', 'D2.REGION.nt.nb', 'D3.REGION.nt.nb')
|
|
63
|
46
|
64 minimum_columns=c("Sequence.ID","JUNCTION.frame","V.GENE.and.allele","D.GENE.and.allele","J.GENE.and.allele")
|
|
65 print_missing_columns(summ, minimum_columns)
|
|
66 out=summ[,minimum_columns]
|
0
|
67
|
40
|
68 print(paste("nrow(summ)", nrow(summ)))
|
|
69 print(paste("nrow(aa)", nrow(aa)))
|
|
70
|
0
|
71 out[,"CDR1.Seq"] = aa[,"CDR1.IMGT"]
|
|
72 out[,"CDR1.Length"] = summ[,"CDR1.IMGT.length"]
|
|
73
|
|
74 out[,"CDR2.Seq"] = aa[,"CDR2.IMGT"]
|
|
75 out[,"CDR2.Length"] = summ[,"CDR2.IMGT.length"]
|
|
76
|
31
|
77 out[,"CDR3.Seq"] = gapped.aa[,"CDR3.IMGT"]
|
0
|
78 out[,"CDR3.Length"] = summ[,"CDR3.IMGT.length"]
|
|
79
|
31
|
80 out[,"CDR3.IMGT"] = out[,"CDR3.Seq"]
|
|
81
|
|
82 out[,"CDR3.Seq.DNA"] = sequences[,"CDR3.IMGT"]
|
28
|
83 out[,"CDR3.Length.DNA"] = nchar(as.character(out[,"CDR3.Seq.DNA"]))
|
0
|
84 out[,"Strand"] = summ[,"Orientation"]
|
|
85 out[,"CDR3.Found.How"] = "a"
|
|
86
|
|
87 out[,added_summary_columns] = summ[,added_summary_columns]
|
|
88
|
|
89 out[,added_sequence_columns] = aa[,added_sequence_columns]
|
|
90
|
|
91 out[,added_junction_columns] = junction[,added_junction_columns]
|
|
92
|
|
93 out[,"Top V Gene"] = gsub(".* ", "", gsub("\\*.*", "", summ[,"V.GENE.and.allele"]))
|
|
94 out[,"Top D Gene"] = gsub(".* ", "", gsub("\\*.*", "", summ[,"D.GENE.and.allele"]))
|
|
95 out[,"Top J Gene"] = gsub(".* ", "", gsub("\\*.*", "", summ[,"J.GENE.and.allele"]))
|
|
96
|
|
97 out = out[!grepl("Less than", summ[,"V.GENE.and.allele"]),]
|
|
98 out = out[!grepl("Less than", summ[,"D.GENE.and.allele"]),]
|
|
99 out = out[!grepl("Less than", summ[,"J.GENE.and.allele"]),]
|
|
100
|
|
101 out = out[,c('Sequence.ID','JUNCTION.frame','Top V Gene','Top D Gene','Top J Gene','CDR1.Seq','CDR1.Length','CDR2.Seq','CDR2.Length','CDR3.Seq','CDR3.Length','CDR3.Seq.DNA','CDR3.Length.DNA','Strand','CDR3.Found.How','Functionality','V.REGION.identity..','V.REGION.identity.nt','D.REGION.reading.frame','AA.JUNCTION','Functionality.comment','Sequence','FR1.IMGT','FR2.IMGT','FR3.IMGT','CDR3.IMGT','JUNCTION','J.REGION','FR4.IMGT','P3.V.nt.nb','N.REGION.nt.nb','N1.REGION.nt.nb','P5.D.nt.nb','P3.D.nt.nb','N2.REGION.nt.nb','P5.J.nt.nb','X3.V.REGION.trimmed.nt.nb','X5.D.REGION.trimmed.nt.nb','X3.D.REGION.trimmed.nt.nb','X5.J.REGION.trimmed.nt.nb','N.REGION','N1.REGION','N2.REGION', 'P5.D1.nt.nb', 'P3.D1.nt.nb', 'N2.REGION.nt.nb', 'P5.D2.nt.nb', 'P3.D2.nt.nb', 'N3.REGION.nt.nb', 'P5.D3.nt.nb', 'P3.D2.nt.nb', 'N4.REGION.nt.nb', 'X5.D1.REGION.trimmed.nt.nb', 'X3.D1.REGION.trimmed.nt.nb', 'X5.D2.REGION.trimmed.nt.nb', 'X3.D2.REGION.trimmed.nt.nb', 'X5.D3.REGION.trimmed.nt.nb', 'X3.D3.REGION.trimmed.nt.nb', 'D.REGION.nt.nb', 'D1.REGION.nt.nb', 'D2.REGION.nt.nb', 'D3.REGION.nt.nb')]
|
|
102
|
|
103 names(out) = c('ID','VDJ Frame','Top V Gene','Top D Gene','Top J Gene','CDR1 Seq','CDR1 Length','CDR2 Seq','CDR2 Length','CDR3 Seq','CDR3 Length','CDR3 Seq DNA','CDR3 Length DNA','Strand','CDR3 Found How','Functionality','V-REGION identity %','V-REGION identity nt','D-REGION reading frame','AA JUNCTION','Functionality comment','Sequence','FR1-IMGT','FR2-IMGT','FR3-IMGT','CDR3-IMGT','JUNCTION','J-REGION','FR4-IMGT','P3V-nt nb','N-REGION-nt nb','N1-REGION-nt nb','P5D-nt nb','P3D-nt nb','N2-REGION-nt nb','P5J-nt nb','3V-REGION trimmed-nt nb','5D-REGION trimmed-nt nb','3D-REGION trimmed-nt nb','5J-REGION trimmed-nt nb','N-REGION','N1-REGION','N2-REGION', 'P5.D1.nt.nb', 'P3.D1.nt.nb', 'N2.REGION.nt.nb', 'P5.D2.nt.nb', 'P3.D2.nt.nb', 'N3.REGION.nt.nb', 'P5.D3.nt.nb', 'P3.D2.nt.nb', 'N4.REGION.nt.nb', 'X5.D1.REGION.trimmed.nt.nb', 'X3.D1.REGION.trimmed.nt.nb', 'X5.D2.REGION.trimmed.nt.nb', 'X3.D2.REGION.trimmed.nt.nb', 'X5.D3.REGION.trimmed.nt.nb', 'X3.D3.REGION.trimmed.nt.nb', 'D.REGION.nt.nb', 'D1.REGION.nt.nb', 'D2.REGION.nt.nb', 'D3.REGION.nt.nb')
|
|
104
|
|
105 out[,"VDJ Frame"] = as.character(out[,"VDJ Frame"])
|
|
106 fltr = out[,"VDJ Frame"] == "in-frame"
|
40
|
107 if(any(fltr, na.rm=T)){
|
0
|
108 out[fltr, "VDJ Frame"] = "In-frame"
|
|
109 }
|
|
110 fltr = out[,"VDJ Frame"] == "null"
|
40
|
111 if(any(fltr, na.rm = T)){
|
0
|
112 out[fltr, "VDJ Frame"] = "Out-of-frame"
|
|
113 }
|
|
114 fltr = out[,"VDJ Frame"] == "out-of-frame"
|
40
|
115 if(any(fltr, na.rm = T)){
|
0
|
116 out[fltr, "VDJ Frame"] = "Out-of-frame"
|
|
117 }
|
|
118 fltr = out[,"VDJ Frame"] == ""
|
40
|
119 if(any(fltr, na.rm = T)){
|
0
|
120 out[fltr, "VDJ Frame"] = "Out-of-frame"
|
|
121 }
|
|
122
|
|
123 for(col in c('Top V Gene','Top D Gene','Top J Gene')){
|
|
124 out[,col] = as.character(out[,col])
|
|
125 fltr = out[,col] == ""
|
|
126 fltr[is.na(fltr)] = T
|
40
|
127 if(any(fltr, na.rm = T)){
|
0
|
128 out[fltr,col] = "NA"
|
|
129 }
|
|
130 }
|
|
131
|
|
132 write.table(out, out.file, sep="\t", quote=F, row.names=F, col.names=T)
|