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
|
|
36 summ = fix_column_names(summ)
|
|
37 sequences = fix_column_names(sequences)
|
|
38 aa = fix_column_names(aa)
|
|
39 gapped.aa = fix_column_names(gapped.aa)
|
|
40 junction = fix_column_names(junction)
|
|
41
|
40
|
42 print(paste("nrow(summ)", nrow(summ)))
|
|
43
|
0
|
44 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')
|
|
45 old_sequence_columns=c('CDR1.IMGT','CDR2.IMGT','CDR3.IMGT')
|
|
46 old_junction_columns=c('JUNCTION')
|
|
47
|
|
48 added_summary_columns=c('Functionality','V.REGION.identity..','V.REGION.identity.nt','D.REGION.reading.frame','AA.JUNCTION','Functionality.comment','Sequence')
|
|
49 added_sequence_columns=c('FR1.IMGT','FR2.IMGT','FR3.IMGT','CDR3.IMGT','JUNCTION','J.REGION','FR4.IMGT')
|
|
50
|
|
51 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')
|
|
52 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')
|
|
53
|
|
54 out=summ[,c("Sequence.ID","JUNCTION.frame","V.GENE.and.allele","D.GENE.and.allele","J.GENE.and.allele")]
|
|
55
|
40
|
56 print(paste("nrow(summ)", nrow(summ)))
|
|
57 print(paste("nrow(aa)", nrow(aa)))
|
|
58
|
0
|
59 out[,"CDR1.Seq"] = aa[,"CDR1.IMGT"]
|
|
60 out[,"CDR1.Length"] = summ[,"CDR1.IMGT.length"]
|
|
61
|
|
62 out[,"CDR2.Seq"] = aa[,"CDR2.IMGT"]
|
|
63 out[,"CDR2.Length"] = summ[,"CDR2.IMGT.length"]
|
|
64
|
31
|
65 out[,"CDR3.Seq"] = gapped.aa[,"CDR3.IMGT"]
|
0
|
66 out[,"CDR3.Length"] = summ[,"CDR3.IMGT.length"]
|
|
67
|
31
|
68 out[,"CDR3.IMGT"] = out[,"CDR3.Seq"]
|
|
69
|
|
70 out[,"CDR3.Seq.DNA"] = sequences[,"CDR3.IMGT"]
|
28
|
71 out[,"CDR3.Length.DNA"] = nchar(as.character(out[,"CDR3.Seq.DNA"]))
|
0
|
72 out[,"Strand"] = summ[,"Orientation"]
|
|
73 out[,"CDR3.Found.How"] = "a"
|
|
74
|
|
75 out[,added_summary_columns] = summ[,added_summary_columns]
|
|
76
|
|
77 out[,added_sequence_columns] = aa[,added_sequence_columns]
|
|
78
|
|
79 out[,added_junction_columns] = junction[,added_junction_columns]
|
|
80
|
|
81 out[,"Top V Gene"] = gsub(".* ", "", gsub("\\*.*", "", summ[,"V.GENE.and.allele"]))
|
|
82 out[,"Top D Gene"] = gsub(".* ", "", gsub("\\*.*", "", summ[,"D.GENE.and.allele"]))
|
|
83 out[,"Top J Gene"] = gsub(".* ", "", gsub("\\*.*", "", summ[,"J.GENE.and.allele"]))
|
|
84
|
|
85 out = out[!grepl("Less than", summ[,"V.GENE.and.allele"]),]
|
|
86 out = out[!grepl("Less than", summ[,"D.GENE.and.allele"]),]
|
|
87 out = out[!grepl("Less than", summ[,"J.GENE.and.allele"]),]
|
|
88
|
|
89 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')]
|
|
90
|
|
91 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')
|
|
92
|
|
93 out[,"VDJ Frame"] = as.character(out[,"VDJ Frame"])
|
|
94 fltr = out[,"VDJ Frame"] == "in-frame"
|
40
|
95 if(any(fltr, na.rm=T)){
|
0
|
96 out[fltr, "VDJ Frame"] = "In-frame"
|
|
97 }
|
|
98 fltr = out[,"VDJ Frame"] == "null"
|
40
|
99 if(any(fltr, na.rm = T)){
|
0
|
100 out[fltr, "VDJ Frame"] = "Out-of-frame"
|
|
101 }
|
|
102 fltr = out[,"VDJ Frame"] == "out-of-frame"
|
40
|
103 if(any(fltr, na.rm = T)){
|
0
|
104 out[fltr, "VDJ Frame"] = "Out-of-frame"
|
|
105 }
|
|
106 fltr = out[,"VDJ Frame"] == ""
|
40
|
107 if(any(fltr, na.rm = T)){
|
0
|
108 out[fltr, "VDJ Frame"] = "Out-of-frame"
|
|
109 }
|
|
110
|
|
111 for(col in c('Top V Gene','Top D Gene','Top J Gene')){
|
|
112 out[,col] = as.character(out[,col])
|
|
113 fltr = out[,col] == ""
|
|
114 fltr[is.na(fltr)] = T
|
40
|
115 if(any(fltr, na.rm = T)){
|
0
|
116 out[fltr,col] = "NA"
|
|
117 }
|
|
118 }
|
|
119
|
|
120 write.table(out, out.file, sep="\t", quote=F, row.names=F, col.names=T)
|