Skip to content

Commit 858fe93

Browse files
committed
Export results class
1 parent 4aebe71 commit 858fe93

File tree

1 file changed

+338
-0
lines changed

1 file changed

+338
-0
lines changed

ApobecExp.ExportData.cls

+338
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,338 @@
1+
///
2+
/// Class for exporting results of the analysis
3+
///
4+
Class ApobecExp.ExportData [ Abstract ]
5+
{
6+
7+
/// Prepare results of the APOBEC mutations density
8+
/// relative replication timing for exporting
9+
ClassMethod PlotRT()
10+
{
11+
kill ^plotRTAPOBEC
12+
kill ^plotRTOther
13+
for i = 1:1:^cancerType
14+
{
15+
set cancer = ^cancerType(i)
16+
set cellline = ^cancerTypeRTCellLines(cancer)
17+
set sample = $order(^mutation(cancer,""))
18+
while (sample '= "")
19+
{
20+
for j = 1:1:7 {
21+
set ^plotRTAPOBEC(cancer,sample,j) = ^RTresultsAPOBEC(cancer,sample,j)/^RTnumTCW(cellline,j) }
22+
set total = 0
23+
for j = 1:1:7 {
24+
set total = total + ^plotRTAPOBEC(cancer,sample,j) }
25+
for j = 1:1:7 {
26+
set ^plotRTAPOBEC(cancer,sample,j) = ^plotRTAPOBEC(cancer,sample,j) / total }
27+
for j = 1:1:7 {
28+
set ^plotRTOther(cancer,sample,j) = ^RTresultsOther(cancer,sample,j)/^RTnumAll(cellline,j) }
29+
set total = 0
30+
for j = 1:1:7 {
31+
set total = total + ^plotRTOther(cancer,sample,j) }
32+
for j = 1:1:7 {
33+
set ^plotRTOther(cancer,sample,j) = ^plotRTOther(cancer,sample,j) / total }
34+
write cancer," ",sample,!
35+
set sample = $order(^mutation(cancer,sample))
36+
}
37+
}
38+
}
39+
40+
/// Prepare results of the APOBEC mutations density
41+
/// relative gene expression for exporting
42+
ClassMethod PlotExp()
43+
{
44+
kill ^plotExpAPOBEC
45+
kill ^plotExpOther
46+
for i = 1:1:^cancerType
47+
{
48+
set cancer = ^cancerType(i)
49+
set cellline = ^cancerTypeRTCellLines(cancer)
50+
set sample = $order(^mutation(cancer,""))
51+
while (sample '= "")
52+
{
53+
for j = 0:1:7 {
54+
set ^plotExpAPOBEC(cancer,sample,j) = ^expResultsAPOBEC(cancer,sample,j)/^expTCW(cancer,sample,j) }
55+
set total = 0
56+
for j = 0:1:7 {
57+
set total = total + ^plotExpAPOBEC(cancer,sample,j) }
58+
for j = 0:1:7 {
59+
set ^plotExpAPOBEC(cancer,sample,j) = ^plotExpAPOBEC(cancer,sample,j) / total }
60+
for j = 0:1:7 {
61+
set ^plotExpOther(cancer,sample,j) = ^expResultsOther(cancer,sample,j)/^expAll(cancer,sample,j) }
62+
set total = 0
63+
for j = 0:1:7 {
64+
set total = total + ^plotExpOther(cancer,sample,j) }
65+
for j = 0:1:7 {
66+
set ^plotExpOther(cancer,sample,j) = ^plotExpOther(cancer,sample,j) / total }
67+
write cancer," ",sample,!
68+
set sample = $order(^mutation(cancer,sample))
69+
}
70+
}
71+
}
72+
73+
/// Prepare results of the APOBEC mutations density
74+
/// relative replication timing & gene expression for exporting
75+
ClassMethod PlotExpRT()
76+
{
77+
kill ^plotExpRTAPOBEC
78+
kill ^plotExpRTOther
79+
for i = 1:1:^cancerType
80+
{
81+
set cancer = ^cancerType(i)
82+
set cellline = ^cancerTypeRTCellLines(cancer)
83+
set sample = $order(^mutation(cancer,""))
84+
while (sample '= "")
85+
{
86+
write cancer," ",sample,!
87+
88+
for j = 1:1:7
89+
{
90+
for k = 0:1:7
91+
{
92+
write "j=",j,", k=",k,!
93+
write "APOBEC=",^resultsAPOBEC(cancer,sample,j,k),!
94+
write "TCW=",^expRTTCW(cancer,sample,j,k),!
95+
96+
if (^resultsAPOBEC(cancer,sample,j,k) = 0) {
97+
set ^plotExpRTAPOBEC(cancer,sample,j,k) = 0 }
98+
else {
99+
set ^plotExpRTAPOBEC(cancer,sample,j,k) = ^resultsAPOBEC(cancer,sample,j,k)/^expRTTCW(cancer,sample,j,k) }
100+
}
101+
}
102+
set total = 0
103+
for j = 1:1:7
104+
{
105+
for k = 0:1:7
106+
{
107+
set total = total + ^plotExpRTAPOBEC(cancer,sample,j,k)
108+
}
109+
}
110+
for j = 1:1:7
111+
{
112+
for k = 0:1:7
113+
{
114+
set ^plotExpRTAPOBEC(cancer,sample,j,k) = ^plotExpRTAPOBEC(cancer,sample,j,k) / total
115+
}
116+
}
117+
for j = 1:1:7
118+
{
119+
for k = 0:1:7
120+
{
121+
write "j=",j,", k=",k,!
122+
write "Other=",^resultsOther(cancer,sample,j,k),!
123+
write "All=",^expRTAll(cancer,sample,j,k),!
124+
125+
if (^resultsOther(cancer,sample,j,k) = 0) {
126+
set ^plotExpRTOther(cancer,sample,j,k) = 0 }
127+
else {
128+
set ^plotExpRTOther(cancer,sample,j,k) = ^resultsOther(cancer,sample,j,k)/^expRTAll(cancer,sample,j,k) }
129+
}
130+
}
131+
set total = 0
132+
for j = 1:1:7
133+
{
134+
for k = 0:1:7
135+
{
136+
set total = total + ^plotExpRTOther(cancer,sample,j,k)
137+
}
138+
}
139+
for j = 1:1:7
140+
{
141+
for k = 0:1:7
142+
{
143+
set ^plotExpRTOther(cancer,sample,j,k) = ^plotExpRTOther(cancer,sample,j,k) / total
144+
}
145+
}
146+
147+
set sample = $order(^mutation(cancer,sample))
148+
}
149+
}
150+
}
151+
152+
/// Export results of replication timing &
153+
/// gene epression analysis
154+
ClassMethod ExportPlotExpRT(dirname As %String = "/home/mkazanov/ApobecExpResults/")
155+
{
156+
do $system.Process.SetZEOF(1)
157+
158+
set filename = dirname_"expRTAPOBEC.txt"
159+
open filename:"WNS"
160+
use filename
161+
162+
write "CANCER_TYPE"_$c(9)_"SAMPLE"_$c(9)_"RT_BIN"_$c(9)_"EXP_BIN"_$c(9)_"MUT_DENSITY",!
163+
164+
for i = 1:1:^cancerType
165+
{
166+
set cancer = ^cancerType(i)
167+
set sample = $order(^mutation(cancer,""))
168+
while (sample '= "")
169+
{
170+
for j = 1:1:7
171+
{
172+
for k = 0:1:7
173+
{
174+
write cancer_$c(9)_sample_$c(9)_j_$c(9)_k_$c(9)_^plotExpRTAPOBEC(cancer,sample,j,k),!
175+
}
176+
}
177+
set sample = $order(^mutation(cancer,sample))
178+
}
179+
}
180+
181+
close filename
182+
183+
set filename = dirname_"expRTOther.txt"
184+
open filename:"WNS"
185+
use filename
186+
187+
write "CANCER_TYPE"_$c(9)_"SAMPLE"_$c(9)_"RT_BIN"_$c(9)_"EXP_BIN"_$c(9)_"MUT_DENSITY",!
188+
189+
for i = 1:1:^cancerType
190+
{
191+
set cancer = ^cancerType(i)
192+
set sample = $order(^mutation(cancer,""))
193+
while (sample '= "")
194+
{
195+
for j = 1:1:7
196+
{
197+
for k = 0:1:7
198+
{
199+
write cancer_$c(9)_sample_$c(9)_j_$c(9)_k_$c(9)_^plotExpRTOther(cancer,sample,j,k),!
200+
}
201+
}
202+
set sample = $order(^mutation(cancer,sample))
203+
}
204+
}
205+
206+
close filename
207+
}
208+
209+
/// Export results of replication
210+
/// timing analysis
211+
ClassMethod ExportPlotRT(dirname As %String = "/home/mkazanov/ApobecExpResults/")
212+
{
213+
214+
do $system.Process.SetZEOF(1)
215+
216+
set filename = dirname_"RTAPOBEC.txt"
217+
open filename:"WNS"
218+
use filename
219+
220+
write "CANCER_TYPE"_$c(9)_"SAMPLE"_$c(9)_"RT_BIN"_$c(9)_"MUT_DENSITY",!
221+
222+
for i = 1:1:^cancerType
223+
{
224+
set cancer = ^cancerType(i)
225+
set sample = $order(^mutation(cancer,""))
226+
while (sample '= "")
227+
{
228+
for j = 1:1:7
229+
{
230+
write cancer_$c(9)_sample_$c(9)_j_$c(9)_^plotRTAPOBEC(cancer,sample,j),!
231+
}
232+
set sample = $order(^mutation(cancer,sample))
233+
}
234+
}
235+
236+
close filename
237+
238+
set filename = dirname_"RTOther.txt"
239+
open filename:"WNS"
240+
use filename
241+
242+
write "CANCER_TYPE"_$c(9)_"SAMPLE"_$c(9)_"RT_BIN"_$c(9)_"MUT_DENSITY",!
243+
244+
for i = 1:1:^cancerType
245+
{
246+
set cancer = ^cancerType(i)
247+
set sample = $order(^mutation(cancer,""))
248+
while (sample '= "")
249+
{
250+
for j = 1:1:7
251+
{
252+
write cancer_$c(9)_sample_$c(9)_j_$c(9)_^plotRTOther(cancer,sample,j),!
253+
}
254+
set sample = $order(^mutation(cancer,sample))
255+
}
256+
}
257+
258+
close filename
259+
}
260+
261+
/// Export results of gene
262+
/// expression analysis
263+
ClassMethod ExportPlotExp(dirname As %String = "/home/mkazanov/ApobecExpResults/")
264+
{
265+
266+
do $system.Process.SetZEOF(1)
267+
268+
set filename = dirname_"expAPOBEC.txt"
269+
open filename:"WNS"
270+
use filename
271+
272+
write "CANCER_TYPE"_$c(9)_"SAMPLE"_$c(9)_"EXP_BIN"_$c(9)_"MUT_DENSITY",!
273+
274+
for i = 1:1:^cancerType
275+
{
276+
set cancer = ^cancerType(i)
277+
set sample = $order(^mutation(cancer,""))
278+
while (sample '= "")
279+
{
280+
for j = 0:1:7
281+
{
282+
write cancer_$c(9)_sample_$c(9)_j_$c(9)_^plotExpAPOBEC(cancer,sample,j),!
283+
}
284+
set sample = $order(^mutation(cancer,sample))
285+
}
286+
}
287+
288+
close filename
289+
290+
set filename = dirname_"expOther.txt"
291+
open filename:"WNS"
292+
use filename
293+
294+
write "CANCER_TYPE"_$c(9)_"SAMPLE"_$c(9)_"EXP_BIN"_$c(9)_"MUT_DENSITY",!
295+
296+
for i = 1:1:^cancerType
297+
{
298+
set cancer = ^cancerType(i)
299+
set sample = $order(^mutation(cancer,""))
300+
while (sample '= "")
301+
{
302+
for j = 0:1:7
303+
{
304+
write cancer_$c(9)_sample_$c(9)_j_$c(9)_^plotExpOther(cancer,sample,j),!
305+
}
306+
set sample = $order(^mutation(cancer,sample))
307+
}
308+
}
309+
310+
close filename
311+
}
312+
313+
/// Export APOBEC enrichment data
314+
///
315+
ClassMethod ExportEnrichment(dirname As %String = "/home/mkazanov/ApobecExpResults/")
316+
{
317+
set filename = dirname_"sample_enrichent.txt"
318+
open filename:"WNS"
319+
use filename
320+
321+
write "CANCER_TYPE"_$c(9)_"SAMPLE"_$c(9)_"APOBEC_ENRICHMENT",!
322+
323+
for i = 1:1:^cancerType
324+
{
325+
set cancer = ^cancerType(i)
326+
set sample = $order(^sample(cancer,""))
327+
while (sample '= "")
328+
{
329+
set enrich = $listget(^sample(cancer,sample),1)
330+
write cancer_$c(9)_sample_$c(9)_enrich,!
331+
set sample = $order(^mutation(cancer,sample))
332+
}
333+
}
334+
335+
close filename
336+
}
337+
338+
}

0 commit comments

Comments
 (0)