-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathPhaseData.cs
348 lines (329 loc) · 12.6 KB
/
PhaseData.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
using System;
using System.Collections.Generic;
using System.Runtime.Serialization.Formatters.Binary;
using System.IO;
using System.Linq;
using System.Text.Json.Serialization;
using System.Text.Json;
namespace SELDLA_G
{
class ContigPos : System.IComparable
{
public string contigname;
public string chrname;
public int start_bp;
public int end_bp;
public float start_cm;
public float end_cm;
public string orientation;
public int CompareTo(object obj)
{
//nullより大きい
if (obj == null) return 1;
//違う型とは比較できない
if (this.GetType() != obj.GetType()) throw new ArgumentException("別の型とは比較できません。", "obj");
if (this.chrname != ((ContigPos)obj).chrname)
{
return this.chrname.CompareTo(((ContigPos)obj).chrname);
}
else
{
return this.start_bp.CompareTo(((ContigPos)obj).start_bp);
}
}
}
class MarkerPos
{
public int X;
public string chrname;
public string contigname;
public int chrStart = -1;
public int chrEnd = -1;
public int contigStart = -1;
public int contigEnd = -1;
}
//public static class CopyHelper
//{
// /// <summary>
// /// オブジェクトの値コピーを容易にする拡張メソッド。
// /// </summary>
// public static T DeepCopy<T>(this T src)
// {
// var jsonSerializerOptions = new JsonSerializerOptions()
// {
// ReferenceHandler = ReferenceHandler.Preserve,
// WriteIndented = true
// };
// var jsonData = JsonSerializer.Serialize(src, jsonSerializerOptions);
// return JsonSerializer.Deserialize<T>(jsonData, jsonSerializerOptions);
// }
//}
[Serializable]
internal class PhaseData
{
public string chr2nd;
public string chrorig;
public string chrorient;
public string markerpos;
public List<int> dataphase;
public int chrorigStartIndex = -1;
public int chrorigEndIndex = -1;
public int contigsize;
public int regionsize;
public PhaseData DeepCopy()
{
using (MemoryStream ms = new MemoryStream())
{
//BinaryFormatter bf = new BinaryFormatter();
//bf.Serialize(ms, this);
//ms.Position = 0;
//return (PhaseData)bf.Deserialize(ms);
return new PhaseData()
{
chr2nd = this.chr2nd,
chrorig = this.chrorig,
chrorient = this.chrorient,
markerpos = this.markerpos,
dataphase = new List<int>(this.dataphase),
chrorigStartIndex = this.chrorigStartIndex,
chrorigEndIndex = this.chrorigEndIndex,
contigsize = this.contigsize,
regionsize = this.regionsize
};
//var jsonSerializerOptions = new JsonSerializerOptions()
//{
// ReferenceHandler = ReferenceHandler.Preserve,
// WriteIndented = true
//};
//var jsonData = JsonSerializer.Serialize(this, jsonSerializerOptions);
//return JsonSerializer.Deserialize<PhaseData>(jsonData, jsonSerializerOptions);
}
}
}
class CountBox
{
List<int> positions = new List<int>();
public CountBox()
{
}
public void addItem(int i)
{
positions.Add(i);
}
public int getNum()
{
return positions.Count;
}
public List<int> getFirstPositions(int num)
{
List<int> list = new List<int>();
if(getNum() < num) { num = getNum(); }
for (int i = 0; i < num; i++)
{
list.Add(positions[i]);
}
return list;
}
public List<int> getLastPositions(int num)
{
List<int> list = new List<int>();
if (getNum() < num) { num = getNum(); }
for (int i = getNum() - 1; i >= getNum() - num; i--)
{
list.Add(positions[i]);
}
return list;
}
}
class MaxRelation
{
string sep = "##SELDLA##";
List<KeyValuePair<string, float>> sortedForFor;
List<KeyValuePair<string, float>> sortedForBac;
List<KeyValuePair<string, float>> sortedBacFor;
List<KeyValuePair<string, float>> sortedBacBac;
public MaxRelation(Dictionary<string, float> ForFor, Dictionary<string, float> ForBac, Dictionary<string, float> BacFor, Dictionary<string, float> BacBac)
{
sortedForFor = ForFor.ToList();
sortedForBac = ForBac.ToList();
sortedBacFor = BacFor.ToList();
sortedBacBac = BacBac.ToList();
sortedForFor.Sort((x, y) => -x.Value.CompareTo(y.Value));
sortedForBac.Sort((x, y) => -x.Value.CompareTo(y.Value));
sortedBacFor.Sort((x, y) => -x.Value.CompareTo(y.Value));
sortedBacBac.Sort((x, y) => -x.Value.CompareTo(y.Value));
}
public bool isEmpty()
{
if(sortedForFor.Count==0 && sortedForBac.Count==0 && sortedBacFor.Count==0 && sortedBacBac.Count == 0)
{
return true;
}
else
{
return false;
}
}
public (string, int, float) getTopRelation()
{
if (sortedForFor.Count > 0
&& ((sortedForBac.Count > 0 && sortedForFor[0].Value >= sortedForBac[0].Value) || sortedForBac.Count == 0)
&& ((sortedBacFor.Count > 0 && sortedForFor[0].Value >= sortedBacFor[0].Value) || sortedBacFor.Count == 0)
&& ((sortedBacBac.Count > 0 && sortedForFor[0].Value >= sortedBacBac[0].Value) || sortedBacBac.Count == 0))
{
string result = sortedForFor[0].Key;
float value = sortedForFor[0].Value;
var list = sortedForFor[0].Key.Split(sep);
return (result, 0, value);
}
else if (sortedForBac.Count > 0
&& ((sortedBacFor.Count > 0 && sortedForBac[0].Value >= sortedBacFor[0].Value) || sortedBacFor.Count == 0)
&& ((sortedBacBac.Count > 0 && sortedForBac[0].Value >= sortedBacBac[0].Value) || sortedBacBac.Count == 0))
{
string result = sortedForBac[0].Key;
float value = sortedForBac[0].Value;
var list = sortedForBac[0].Key.Split(sep);
return (result, 1, value);
}
else if (sortedBacFor.Count > 0
&& ((sortedBacBac.Count > 0 && sortedBacFor[0].Value >= sortedBacBac[0].Value) || sortedBacBac.Count == 0))
{
string result = sortedBacFor[0].Key;
float value = sortedBacFor[0].Value;
var list = sortedBacFor[0].Key.Split(sep);
return (result, 2, value);
}
else
{
string result = sortedBacBac[0].Key;
float value = sortedBacBac[0].Value;
var list = sortedBacBac[0].Key.Split(sep);
return (result, 3, value);
}
}
public void deleteOnlyTop()
{
if (sortedForFor.Count > 0
&& ((sortedForBac.Count > 0 && sortedForFor[0].Value >= sortedForBac[0].Value) || sortedForBac.Count == 0)
&& ((sortedBacFor.Count > 0 && sortedForFor[0].Value >= sortedBacFor[0].Value) || sortedBacFor.Count == 0)
&& ((sortedBacBac.Count > 0 && sortedForFor[0].Value >= sortedBacBac[0].Value) || sortedBacBac.Count == 0))
{
sortedForFor.RemoveAt(0);
}
else if (sortedForBac.Count > 0
&& ((sortedBacFor.Count > 0 && sortedForBac[0].Value >= sortedBacFor[0].Value) || sortedBacFor.Count == 0)
&& ((sortedBacBac.Count > 0 && sortedForBac[0].Value >= sortedBacBac[0].Value) || sortedBacBac.Count == 0))
{
sortedForBac.RemoveAt(0);
}
else if (sortedBacFor.Count > 0
&& ((sortedBacBac.Count > 0 && sortedBacFor[0].Value >= sortedBacBac[0].Value) || sortedBacBac.Count == 0))
{
sortedBacFor.RemoveAt(0);
}
else
{
sortedBacBac.RemoveAt(0);
}
}
public (string, int, float) getTopRelationAndDelete()
{
if (sortedForFor.Count > 0
&& ((sortedForBac.Count > 0 && sortedForFor[0].Value >= sortedForBac[0].Value) || sortedForBac.Count == 0)
&& ((sortedBacFor.Count > 0 && sortedForFor[0].Value >= sortedBacFor[0].Value) || sortedBacFor.Count == 0)
&& ((sortedBacBac.Count > 0 && sortedForFor[0].Value >= sortedBacBac[0].Value) || sortedBacBac.Count == 0))
{
string result = sortedForFor[0].Key;
float value = sortedForFor[0].Value;
var list = sortedForFor[0].Key.Split(sep);
deleteFor(list[0]);
deleteFor(list[1]);
return (result, 0, value);
}
else if( sortedForBac.Count > 0
&& ((sortedBacFor.Count > 0 && sortedForBac[0].Value >= sortedBacFor[0].Value) || sortedBacFor.Count == 0)
&& ((sortedBacBac.Count > 0 && sortedForBac[0].Value >= sortedBacBac[0].Value) || sortedBacBac.Count == 0))
{
string result = sortedForBac[0].Key;
float value = sortedForBac[0].Value;
var list = sortedForBac[0].Key.Split(sep);
deleteFor(list[0]);
deleteBac(list[1]);
return (result, 1, value);
}
else if (sortedBacFor.Count > 0
&& ((sortedBacBac.Count > 0 && sortedBacFor[0].Value >= sortedBacBac[0].Value) || sortedBacBac.Count == 0))
{
string result = sortedBacFor[0].Key;
float value = sortedBacFor[0].Value;
var list = sortedBacFor[0].Key.Split(sep);
deleteBac(list[0]);
deleteFor(list[1]);
return (result, 2, value);
}
else
{
string result = sortedBacBac[0].Key;
float value = sortedBacBac[0].Value;
var list = sortedBacBac[0].Key.Split(sep);
deleteBac(list[0]);
deleteBac(list[1]);
return (result, 3, value);
}
}
void deleteFor(string chr)
{
for(int i=sortedForFor.Count-1; i>=0; i--)
{
var list = sortedForFor[i].Key.Split(sep);
if(list[0]==chr || list[1] == chr)
{
sortedForFor.RemoveAt(i);
}
}
for (int i = sortedForBac.Count - 1; i >= 0; i--)
{
var list = sortedForBac[i].Key.Split(sep);
if (list[0] == chr)
{
sortedForBac.RemoveAt(i);
}
}
for (int i = sortedBacFor.Count - 1; i >= 0; i--)
{
var list = sortedBacFor[i].Key.Split(sep);
if (list[1] == chr)
{
sortedBacFor.RemoveAt(i);
}
}
}
void deleteBac(string chr)
{
for (int i = sortedBacBac.Count - 1; i >= 0; i--)
{
var list = sortedBacBac[i].Key.Split(sep);
if (list[0] == chr || list[1] == chr)
{
sortedBacBac.RemoveAt(i);
}
}
for (int i = sortedBacFor.Count - 1; i >= 0; i--)
{
var list = sortedBacFor[i].Key.Split(sep);
if (list[0] == chr)
{
sortedBacFor.RemoveAt(i);
}
}
for (int i = sortedForBac.Count - 1; i >= 0; i--)
{
var list = sortedForBac[i].Key.Split(sep);
if (list[1] == chr)
{
sortedForBac.RemoveAt(i);
}
}
}
}
}