viral_seq 1.10.2 → 1.10.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +5 -0
- data/bin/locator +15 -1
- data/bin/tcs_sdrm +6 -6
- data/lib/viral_seq/hivdr.rb +1 -1
- data/lib/viral_seq/recency_report.rb +1 -1
- data/lib/viral_seq/seq_hash_pair.rb +1 -1
- data/lib/viral_seq/util/drm_list.json +427 -682
- data/lib/viral_seq/version.rb +2 -2
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 727ed9feb929e077b25cfd2a83661dccb88f1fd8c503635f14c948d71f6f2519
|
|
4
|
+
data.tar.gz: 6f1a69d0abeeabcad8107c3bbe515e9f909cd46b6732cdff66827ff4993e7efd
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a2a7dd1af8b9022f2b6cadec96be4f49985681d6d98e2b152fc2a12844573218eff17cf6db089ebacb84ea5284c47be254981ddf406e22989647eb4c07fb3285
|
|
7
|
+
data.tar.gz: 024f6066ecec3c5caed0277e10f0aaba596b3d95487e342885a325a1f9bfec7feb1c777eec2a4fbe26c2eb0ad55c8d437c6df6511a5c1c523d43a5d089eeef91
|
data/README.md
CHANGED
|
@@ -191,6 +191,11 @@ qc_seqhash.sdrm_hiv_pr(cut_off)
|
|
|
191
191
|
|
|
192
192
|
## Updates
|
|
193
193
|
|
|
194
|
+
### Version-1.10.3-12112025
|
|
195
|
+
|
|
196
|
+
1. Bug fix for SDRM pipeline.
|
|
197
|
+
2. Add a function in `locator` tool to export sequences in positive sense direction.
|
|
198
|
+
|
|
194
199
|
### Version-1.10.2-07210225
|
|
195
200
|
|
|
196
201
|
1. Fixed a bug processing parameters for HIV sequence QC.
|
data/bin/locator
CHANGED
|
@@ -76,6 +76,10 @@ begin
|
|
|
76
76
|
else
|
|
77
77
|
csv_file = seq_file + ".csv"
|
|
78
78
|
end
|
|
79
|
+
|
|
80
|
+
fasta_file = csv_file.sub(/\.csv$/i, '.direction.fasta')
|
|
81
|
+
|
|
82
|
+
fasta_handle = File.open(fasta_file, 'w')
|
|
79
83
|
|
|
80
84
|
unless File.exist?(seq_file)
|
|
81
85
|
raise StandardError.new("Input file sequence file not found".red.bold)
|
|
@@ -92,9 +96,19 @@ begin
|
|
|
92
96
|
locs = seqs.loc(opt)
|
|
93
97
|
head = ["title", "sequence", "ref", "direction", "start", "end", "similarity", "indel", "aligned_input", "aligned_ref"]
|
|
94
98
|
locs.unshift(head)
|
|
99
|
+
|
|
100
|
+
directional_fasta = []
|
|
95
101
|
data = CSV.generate do |csv|
|
|
96
|
-
locs.each
|
|
102
|
+
locs.each do |loc|
|
|
103
|
+
csv << loc
|
|
104
|
+
directional_fasta << loc[1]
|
|
105
|
+
directional_fasta << loc[8].tr("-", "") # remove gaps for aligned_input
|
|
106
|
+
end
|
|
107
|
+
end
|
|
108
|
+
directional_fasta[2..-1].each do |line|
|
|
109
|
+
fasta_handle.puts line
|
|
97
110
|
end
|
|
111
|
+
fasta_handle.close
|
|
98
112
|
|
|
99
113
|
File.write(csv_file, data)
|
|
100
114
|
puts "Output file found at #{csv_file.green.bold}"
|
data/bin/tcs_sdrm
CHANGED
|
@@ -12,10 +12,10 @@
|
|
|
12
12
|
# ├── lib1_IN
|
|
13
13
|
# ├── lib1_V1V3
|
|
14
14
|
# ├── lib2
|
|
15
|
-
# ├──
|
|
16
|
-
# ├──
|
|
17
|
-
# ├──
|
|
18
|
-
# ├──
|
|
15
|
+
# ├── lib2_RT
|
|
16
|
+
# ├── lib2_PR
|
|
17
|
+
# ├── lib2_IN
|
|
18
|
+
# ├── lib2_V1V3
|
|
19
19
|
# ├── ...
|
|
20
20
|
#
|
|
21
21
|
# output data in a new dir as 'libs_dir_SDRM'
|
|
@@ -37,7 +37,7 @@ r_version = ViralSeq::R.check_R
|
|
|
37
37
|
ViralSeq::R.check_R_packages
|
|
38
38
|
|
|
39
39
|
def abstract_line(data)
|
|
40
|
-
|
|
40
|
+
data[3] + data[2] + data[4] + ":" +
|
|
41
41
|
(data[6].to_f * 100).round(2).to_s + "(" +
|
|
42
42
|
(data[7].to_f * 100).round(2).to_s + "-" +
|
|
43
43
|
(data[8].to_f * 100).round(2).to_s + "); "
|
|
@@ -143,7 +143,7 @@ libs.each do |lib|
|
|
|
143
143
|
seq_basename.gsub!(/\_P17/i, "_CA")
|
|
144
144
|
region = version_config.query_region(region_name.to_s)
|
|
145
145
|
|
|
146
|
-
puts "
|
|
146
|
+
puts "processing region: " + region.region
|
|
147
147
|
|
|
148
148
|
sh = ViralSeq::SeqHash.fa(path_to_file)
|
|
149
149
|
|
data/lib/viral_seq/hivdr.rb
CHANGED
|
@@ -492,7 +492,7 @@ module ViralSeq
|
|
|
492
492
|
|
|
493
493
|
self.dna_hash.each do |k,v|
|
|
494
494
|
r1_seqs[k] = v[0,r1_length]
|
|
495
|
-
r2_seqs[k] = v[
|
|
495
|
+
r2_seqs[k] = v[-r2_length..-1] # to ensure the length from the end. Sometimes the platform will return sequence with one extra base.
|
|
496
496
|
end
|
|
497
497
|
|
|
498
498
|
r1_sh = ViralSeq::SeqHash.new(r1_seqs)
|
|
@@ -250,7 +250,7 @@ module ViralSeq
|
|
|
250
250
|
|
|
251
251
|
private
|
|
252
252
|
# determine overlap size from @dna_hash
|
|
253
|
-
def determine_overlap_pid_pair(seq_pair_hash, diff = 0.
|
|
253
|
+
def determine_overlap_pid_pair(seq_pair_hash, diff = 0.02)
|
|
254
254
|
overlaps = []
|
|
255
255
|
seq_pair_hash.each do |_seq_name, seq_pair|
|
|
256
256
|
overlap_list = []
|
|
@@ -1,684 +1,429 @@
|
|
|
1
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
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
]
|
|
430
|
-
},
|
|
431
|
-
{
|
|
432
|
-
"position": 53,
|
|
433
|
-
"wild-type": "F",
|
|
434
|
-
"mutations": [
|
|
435
|
-
"L"
|
|
436
|
-
]
|
|
437
|
-
},
|
|
438
|
-
{
|
|
439
|
-
"position": 54,
|
|
440
|
-
"wild-type": "I",
|
|
441
|
-
"mutations": [
|
|
442
|
-
"V",
|
|
443
|
-
"L",
|
|
444
|
-
"M",
|
|
445
|
-
"T",
|
|
446
|
-
"A",
|
|
447
|
-
"S"
|
|
448
|
-
]
|
|
449
|
-
},
|
|
450
|
-
{
|
|
451
|
-
"position": 73,
|
|
452
|
-
"wild-type": "G",
|
|
453
|
-
"mutations": [
|
|
454
|
-
"S",
|
|
455
|
-
"T",
|
|
456
|
-
"C",
|
|
457
|
-
"A"
|
|
458
|
-
]
|
|
459
|
-
},
|
|
460
|
-
{
|
|
461
|
-
"position": 76,
|
|
462
|
-
"wild-type": "L",
|
|
463
|
-
"mutations": [
|
|
464
|
-
"V"
|
|
465
|
-
]
|
|
466
|
-
},
|
|
467
|
-
{
|
|
468
|
-
"position": 82,
|
|
469
|
-
"wild-type": "V",
|
|
470
|
-
"mutations": [
|
|
471
|
-
"A",
|
|
472
|
-
"T",
|
|
473
|
-
"S",
|
|
474
|
-
"F",
|
|
475
|
-
"L",
|
|
476
|
-
"C",
|
|
477
|
-
"M"
|
|
478
|
-
]
|
|
479
|
-
},
|
|
480
|
-
{
|
|
481
|
-
"position": 83,
|
|
482
|
-
"wild-type": "N",
|
|
483
|
-
"mutations": [
|
|
484
|
-
"D"
|
|
485
|
-
]
|
|
486
|
-
},
|
|
487
|
-
{
|
|
488
|
-
"position": 84,
|
|
489
|
-
"wild-type": "I",
|
|
490
|
-
"mutations": [
|
|
491
|
-
"V",
|
|
492
|
-
"A",
|
|
493
|
-
"C"
|
|
494
|
-
]
|
|
495
|
-
},
|
|
496
|
-
{
|
|
497
|
-
"position": 88,
|
|
498
|
-
"wild-type": "N",
|
|
499
|
-
"mutations": [
|
|
500
|
-
"D",
|
|
501
|
-
"S"
|
|
502
|
-
]
|
|
503
|
-
},
|
|
504
|
-
{
|
|
505
|
-
"position": 90,
|
|
506
|
-
"wild-type": "L",
|
|
507
|
-
"mutations": [
|
|
508
|
-
"M"
|
|
509
|
-
]
|
|
510
|
-
}
|
|
511
|
-
],
|
|
512
|
-
"INSTI": [
|
|
513
|
-
{
|
|
514
|
-
"position": 66,
|
|
515
|
-
"wild-type": "T",
|
|
516
|
-
"mutations": [
|
|
517
|
-
"A",
|
|
518
|
-
"I",
|
|
519
|
-
"K"
|
|
520
|
-
]
|
|
521
|
-
},
|
|
522
|
-
{
|
|
523
|
-
"position": 74,
|
|
524
|
-
"wild-type": "L",
|
|
525
|
-
"mutations": [
|
|
526
|
-
"M"
|
|
527
|
-
]
|
|
528
|
-
},
|
|
529
|
-
{
|
|
530
|
-
"position": 92,
|
|
531
|
-
"wild-type": "E",
|
|
532
|
-
"mutations": [
|
|
533
|
-
"Q"
|
|
534
|
-
]
|
|
535
|
-
},
|
|
536
|
-
{
|
|
537
|
-
"position": 95,
|
|
538
|
-
"wild-type": "Q",
|
|
539
|
-
"mutations": [
|
|
540
|
-
"K"
|
|
541
|
-
]
|
|
542
|
-
},
|
|
543
|
-
{
|
|
544
|
-
"position": 97,
|
|
545
|
-
"wild-type": "T",
|
|
546
|
-
"mutations": [
|
|
547
|
-
"A"
|
|
548
|
-
]
|
|
549
|
-
},
|
|
550
|
-
{
|
|
551
|
-
"position": 121,
|
|
552
|
-
"wild-type": "F",
|
|
553
|
-
"mutations": [
|
|
554
|
-
"Y"
|
|
555
|
-
]
|
|
556
|
-
},
|
|
557
|
-
{
|
|
558
|
-
"position": 140,
|
|
559
|
-
"wild-type": "G",
|
|
560
|
-
"mutations": [
|
|
561
|
-
"A",
|
|
562
|
-
"S",
|
|
563
|
-
"C"
|
|
564
|
-
]
|
|
565
|
-
},
|
|
566
|
-
{
|
|
567
|
-
"position": 143,
|
|
568
|
-
"wild-type": "Y",
|
|
569
|
-
"mutations": [
|
|
570
|
-
"C",
|
|
571
|
-
"H",
|
|
572
|
-
"R"
|
|
573
|
-
]
|
|
574
|
-
},
|
|
575
|
-
{
|
|
576
|
-
"position": 147,
|
|
577
|
-
"wild-type": "S",
|
|
578
|
-
"mutations": [
|
|
579
|
-
"G"
|
|
580
|
-
]
|
|
581
|
-
},
|
|
582
|
-
{
|
|
583
|
-
"position": 148,
|
|
584
|
-
"wild-type": "Q",
|
|
585
|
-
"mutations": [
|
|
586
|
-
"H",
|
|
587
|
-
"K",
|
|
588
|
-
"R"
|
|
589
|
-
]
|
|
590
|
-
},
|
|
591
|
-
{
|
|
592
|
-
"position": 263,
|
|
593
|
-
"wild-type": "R",
|
|
594
|
-
"mutations": [
|
|
595
|
-
"K"
|
|
596
|
-
]
|
|
597
|
-
},
|
|
598
|
-
{
|
|
599
|
-
"position": 155,
|
|
600
|
-
"wild-type": [
|
|
601
|
-
"N",
|
|
602
|
-
[
|
|
603
|
-
"S",
|
|
604
|
-
"H"
|
|
605
|
-
]
|
|
606
|
-
],
|
|
607
|
-
"mutations": [
|
|
608
|
-
"R",
|
|
609
|
-
[
|
|
610
|
-
"K"
|
|
611
|
-
]
|
|
612
|
-
]
|
|
613
|
-
}
|
|
614
|
-
],
|
|
615
|
-
"CAI": [
|
|
616
|
-
{
|
|
617
|
-
"position": 56,
|
|
618
|
-
"wild-type": "L",
|
|
619
|
-
"mutations": [
|
|
620
|
-
"I"
|
|
621
|
-
]
|
|
622
|
-
},
|
|
623
|
-
{
|
|
624
|
-
"position": 57,
|
|
625
|
-
"wild-type": "N",
|
|
626
|
-
"mutations": [
|
|
627
|
-
"S"
|
|
628
|
-
]
|
|
629
|
-
},
|
|
630
|
-
{
|
|
631
|
-
"position": 66,
|
|
632
|
-
"wild-type": "M",
|
|
633
|
-
"mutations": [
|
|
634
|
-
"I"
|
|
635
|
-
]
|
|
636
|
-
},
|
|
637
|
-
{
|
|
638
|
-
"position": 67,
|
|
639
|
-
"wild-type": "Q",
|
|
640
|
-
"mutations": [
|
|
641
|
-
"H",
|
|
642
|
-
"Y",
|
|
643
|
-
"N",
|
|
644
|
-
"K"
|
|
645
|
-
]
|
|
646
|
-
},
|
|
647
|
-
{
|
|
648
|
-
"position": 70,
|
|
649
|
-
"wild-type": "K",
|
|
650
|
-
"mutations": [
|
|
651
|
-
"N",
|
|
652
|
-
"H",
|
|
653
|
-
"R",
|
|
654
|
-
"S"
|
|
655
|
-
]
|
|
656
|
-
},
|
|
657
|
-
{
|
|
658
|
-
"position": 74,
|
|
659
|
-
"wild-type": "N",
|
|
660
|
-
"mutations": [
|
|
661
|
-
"D",
|
|
662
|
-
"S"
|
|
663
|
-
]
|
|
664
|
-
},
|
|
665
|
-
{
|
|
666
|
-
"position": 105,
|
|
667
|
-
"wild-type": "A",
|
|
668
|
-
"mutations": [
|
|
669
|
-
"T",
|
|
670
|
-
"S",
|
|
671
|
-
"E"
|
|
672
|
-
]
|
|
673
|
-
},
|
|
674
|
-
{
|
|
675
|
-
"position": 107,
|
|
676
|
-
"wild-type": "T",
|
|
677
|
-
"mutations": [
|
|
678
|
-
"N",
|
|
679
|
-
"S",
|
|
680
|
-
"A"
|
|
681
|
-
]
|
|
682
|
-
}
|
|
683
|
-
]
|
|
2
|
+
"HCV_NS5A": [
|
|
3
|
+
{
|
|
4
|
+
"position": 28,
|
|
5
|
+
"wild-type": "M",
|
|
6
|
+
"mutations": ["T"]
|
|
7
|
+
},
|
|
8
|
+
{
|
|
9
|
+
"position": 30,
|
|
10
|
+
"wild-type": "L",
|
|
11
|
+
"mutations": ["H", "K", "R", "Q", "A", "S", "D"]
|
|
12
|
+
},
|
|
13
|
+
{
|
|
14
|
+
"position": 31,
|
|
15
|
+
"wild-type": "L",
|
|
16
|
+
"mutations": ["M", "V", "F"]
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
"position": 32,
|
|
20
|
+
"wild-type": "P",
|
|
21
|
+
"mutations": ["L"]
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
"position": 44,
|
|
25
|
+
"wild-type": "K",
|
|
26
|
+
"mutations": ["R"]
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"position": 58,
|
|
30
|
+
"wild-type": "H",
|
|
31
|
+
"mutations": ["D", "P", "S"]
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
"position": 64,
|
|
35
|
+
"wild-type": "T",
|
|
36
|
+
"mutations": ["A", "S"]
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"position": 77,
|
|
40
|
+
"wild-type": "P",
|
|
41
|
+
"mutations": ["A", "S"]
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
"position": 78,
|
|
45
|
+
"wild-type": "R",
|
|
46
|
+
"mutations": ["K"]
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
"position": 79,
|
|
50
|
+
"wild-type": "T",
|
|
51
|
+
"mutations": ["A"]
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
"position": 83,
|
|
55
|
+
"wild-type": "T",
|
|
56
|
+
"mutations": ["M"]
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
"position": 85,
|
|
60
|
+
"wild-type": "S",
|
|
61
|
+
"mutations": ["N", "H", "Y"]
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
"position": 92,
|
|
65
|
+
"wild-type": "A",
|
|
66
|
+
"mutations": ["P", "T", "K", "E"]
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
"position": 93,
|
|
70
|
+
"wild-type": "Y",
|
|
71
|
+
"mutations": ["C", "F", "H", "N"]
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
"position": 107,
|
|
75
|
+
"wild-type": "K",
|
|
76
|
+
"mutations": ["T", "S"]
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
"position": 121,
|
|
80
|
+
"wild-type": "I",
|
|
81
|
+
"mutations": ["V"]
|
|
82
|
+
},
|
|
83
|
+
{
|
|
84
|
+
"position": 135,
|
|
85
|
+
"wild-type": "T",
|
|
86
|
+
"mutations": ["A"]
|
|
87
|
+
}
|
|
88
|
+
],
|
|
89
|
+
"NRTI": [
|
|
90
|
+
{
|
|
91
|
+
"position": 41,
|
|
92
|
+
"wild-type": "M",
|
|
93
|
+
"mutations": ["L"]
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
"position": 65,
|
|
97
|
+
"wild-type": "K",
|
|
98
|
+
"mutations": ["R"]
|
|
99
|
+
},
|
|
100
|
+
{
|
|
101
|
+
"position": 67,
|
|
102
|
+
"wild-type": "D",
|
|
103
|
+
"mutations": ["N", "G", "E"]
|
|
104
|
+
},
|
|
105
|
+
{
|
|
106
|
+
"position": 69,
|
|
107
|
+
"wild-type": "T",
|
|
108
|
+
"mutations": ["D"]
|
|
109
|
+
},
|
|
110
|
+
{
|
|
111
|
+
"position": 70,
|
|
112
|
+
"wild-type": "K",
|
|
113
|
+
"mutations": ["R", "E"]
|
|
114
|
+
},
|
|
115
|
+
{
|
|
116
|
+
"position": 74,
|
|
117
|
+
"wild-type": "L",
|
|
118
|
+
"mutations": ["V", "I"]
|
|
119
|
+
},
|
|
120
|
+
{
|
|
121
|
+
"position": 75,
|
|
122
|
+
"wild-type": "V",
|
|
123
|
+
"mutations": ["M", "T", "A", "S"]
|
|
124
|
+
},
|
|
125
|
+
{
|
|
126
|
+
"position": 77,
|
|
127
|
+
"wild-type": "F",
|
|
128
|
+
"mutations": ["L"]
|
|
129
|
+
},
|
|
130
|
+
{
|
|
131
|
+
"position": 115,
|
|
132
|
+
"wild-type": "Y",
|
|
133
|
+
"mutations": ["F"]
|
|
134
|
+
},
|
|
135
|
+
{
|
|
136
|
+
"position": 116,
|
|
137
|
+
"wild-type": "F",
|
|
138
|
+
"mutations": ["Y"]
|
|
139
|
+
},
|
|
140
|
+
{
|
|
141
|
+
"position": 151,
|
|
142
|
+
"wild-type": "Q",
|
|
143
|
+
"mutations": ["M"]
|
|
144
|
+
},
|
|
145
|
+
{
|
|
146
|
+
"position": 184,
|
|
147
|
+
"wild-type": "M",
|
|
148
|
+
"mutations": ["V", "I"]
|
|
149
|
+
},
|
|
150
|
+
{
|
|
151
|
+
"position": 210,
|
|
152
|
+
"wild-type": "L",
|
|
153
|
+
"mutations": ["W"]
|
|
154
|
+
},
|
|
155
|
+
{
|
|
156
|
+
"position": 215,
|
|
157
|
+
"wild-type": "T",
|
|
158
|
+
"mutations": ["Y", "F", "I", "C", "D", "V", "E"]
|
|
159
|
+
},
|
|
160
|
+
{
|
|
161
|
+
"position": 219,
|
|
162
|
+
"wild-type": "K",
|
|
163
|
+
"mutations": ["Q", "E", "N", "R"]
|
|
164
|
+
}
|
|
165
|
+
],
|
|
166
|
+
"NNRTI": [
|
|
167
|
+
{
|
|
168
|
+
"position": 98,
|
|
169
|
+
"wild-type": "A",
|
|
170
|
+
"mutations": ["G"]
|
|
171
|
+
},
|
|
172
|
+
{
|
|
173
|
+
"position": 100,
|
|
174
|
+
"wild-type": "L",
|
|
175
|
+
"mutations": ["I"]
|
|
176
|
+
},
|
|
177
|
+
{
|
|
178
|
+
"position": 101,
|
|
179
|
+
"wild-type": "K",
|
|
180
|
+
"mutations": ["E", "P"]
|
|
181
|
+
},
|
|
182
|
+
{
|
|
183
|
+
"position": 103,
|
|
184
|
+
"wild-type": "K",
|
|
185
|
+
"mutations": ["N", "S"]
|
|
186
|
+
},
|
|
187
|
+
{
|
|
188
|
+
"position": 106,
|
|
189
|
+
"wild-type": "V",
|
|
190
|
+
"mutations": ["M", "A"]
|
|
191
|
+
},
|
|
192
|
+
{
|
|
193
|
+
"position": 138,
|
|
194
|
+
"wild-type": "E",
|
|
195
|
+
"mutations": ["A", "K", "G", "Q"]
|
|
196
|
+
},
|
|
197
|
+
{
|
|
198
|
+
"position": 179,
|
|
199
|
+
"wild-type": "V",
|
|
200
|
+
"mutations": ["F", "D"]
|
|
201
|
+
},
|
|
202
|
+
{
|
|
203
|
+
"position": 181,
|
|
204
|
+
"wild-type": "Y",
|
|
205
|
+
"mutations": ["C", "I", "V"]
|
|
206
|
+
},
|
|
207
|
+
{
|
|
208
|
+
"position": 188,
|
|
209
|
+
"wild-type": "Y",
|
|
210
|
+
"mutations": ["L", "H", "C"]
|
|
211
|
+
},
|
|
212
|
+
{
|
|
213
|
+
"position": 190,
|
|
214
|
+
"wild-type": "G",
|
|
215
|
+
"mutations": ["A", "S", "E", "C", "T", "V"]
|
|
216
|
+
},
|
|
217
|
+
{
|
|
218
|
+
"position": 225,
|
|
219
|
+
"wild-type": "P",
|
|
220
|
+
"mutations": ["H"]
|
|
221
|
+
},
|
|
222
|
+
{
|
|
223
|
+
"position": 230,
|
|
224
|
+
"wild-type": "M",
|
|
225
|
+
"mutations": ["L"]
|
|
226
|
+
}
|
|
227
|
+
],
|
|
228
|
+
"PI": [
|
|
229
|
+
{
|
|
230
|
+
"position": 23,
|
|
231
|
+
"wild-type": "L",
|
|
232
|
+
"mutations": ["I"]
|
|
233
|
+
},
|
|
234
|
+
{
|
|
235
|
+
"position": 24,
|
|
236
|
+
"wild-type": "L",
|
|
237
|
+
"mutations": ["I"]
|
|
238
|
+
},
|
|
239
|
+
{
|
|
240
|
+
"position": 30,
|
|
241
|
+
"wild-type": "D",
|
|
242
|
+
"mutations": ["N"]
|
|
243
|
+
},
|
|
244
|
+
{
|
|
245
|
+
"position": 32,
|
|
246
|
+
"wild-type": "V",
|
|
247
|
+
"mutations": ["I"]
|
|
248
|
+
},
|
|
249
|
+
{
|
|
250
|
+
"position": 46,
|
|
251
|
+
"wild-type": "M",
|
|
252
|
+
"mutations": ["I", "L"]
|
|
253
|
+
},
|
|
254
|
+
{
|
|
255
|
+
"position": 47,
|
|
256
|
+
"wild-type": "I",
|
|
257
|
+
"mutations": ["V", "A"]
|
|
258
|
+
},
|
|
259
|
+
{
|
|
260
|
+
"position": 48,
|
|
261
|
+
"wild-type": "G",
|
|
262
|
+
"mutations": ["V", "M"]
|
|
263
|
+
},
|
|
264
|
+
{
|
|
265
|
+
"position": 50,
|
|
266
|
+
"wild-type": "I",
|
|
267
|
+
"mutations": ["V", "L"]
|
|
268
|
+
},
|
|
269
|
+
{
|
|
270
|
+
"position": 53,
|
|
271
|
+
"wild-type": "F",
|
|
272
|
+
"mutations": ["L"]
|
|
273
|
+
},
|
|
274
|
+
{
|
|
275
|
+
"position": 54,
|
|
276
|
+
"wild-type": "I",
|
|
277
|
+
"mutations": ["V", "L", "M", "T", "A", "S"]
|
|
278
|
+
},
|
|
279
|
+
{
|
|
280
|
+
"position": 73,
|
|
281
|
+
"wild-type": "G",
|
|
282
|
+
"mutations": ["S", "T", "C", "A"]
|
|
283
|
+
},
|
|
284
|
+
{
|
|
285
|
+
"position": 76,
|
|
286
|
+
"wild-type": "L",
|
|
287
|
+
"mutations": ["V"]
|
|
288
|
+
},
|
|
289
|
+
{
|
|
290
|
+
"position": 82,
|
|
291
|
+
"wild-type": "V",
|
|
292
|
+
"mutations": ["A", "T", "S", "F", "L", "C", "M"]
|
|
293
|
+
},
|
|
294
|
+
{
|
|
295
|
+
"position": 83,
|
|
296
|
+
"wild-type": "N",
|
|
297
|
+
"mutations": ["D"]
|
|
298
|
+
},
|
|
299
|
+
{
|
|
300
|
+
"position": 84,
|
|
301
|
+
"wild-type": "I",
|
|
302
|
+
"mutations": ["V", "A", "C"]
|
|
303
|
+
},
|
|
304
|
+
{
|
|
305
|
+
"position": 88,
|
|
306
|
+
"wild-type": "N",
|
|
307
|
+
"mutations": ["D", "S"]
|
|
308
|
+
},
|
|
309
|
+
{
|
|
310
|
+
"position": 90,
|
|
311
|
+
"wild-type": "L",
|
|
312
|
+
"mutations": ["M"]
|
|
313
|
+
}
|
|
314
|
+
],
|
|
315
|
+
"INSTI": [
|
|
316
|
+
{
|
|
317
|
+
"position": 66,
|
|
318
|
+
"wild-type": "T",
|
|
319
|
+
"mutations": ["A", "I", "K"]
|
|
320
|
+
},
|
|
321
|
+
{
|
|
322
|
+
"position": 74,
|
|
323
|
+
"wild-type": "L",
|
|
324
|
+
"mutations": ["M"]
|
|
325
|
+
},
|
|
326
|
+
{
|
|
327
|
+
"position": 92,
|
|
328
|
+
"wild-type": "E",
|
|
329
|
+
"mutations": ["Q"]
|
|
330
|
+
},
|
|
331
|
+
{
|
|
332
|
+
"position": 95,
|
|
333
|
+
"wild-type": "Q",
|
|
334
|
+
"mutations": ["K"]
|
|
335
|
+
},
|
|
336
|
+
{
|
|
337
|
+
"position": 97,
|
|
338
|
+
"wild-type": "T",
|
|
339
|
+
"mutations": ["A"]
|
|
340
|
+
},
|
|
341
|
+
{
|
|
342
|
+
"position": 121,
|
|
343
|
+
"wild-type": "F",
|
|
344
|
+
"mutations": ["Y"]
|
|
345
|
+
},
|
|
346
|
+
{
|
|
347
|
+
"position": 140,
|
|
348
|
+
"wild-type": "G",
|
|
349
|
+
"mutations": ["A", "S", "C"]
|
|
350
|
+
},
|
|
351
|
+
{
|
|
352
|
+
"position": 143,
|
|
353
|
+
"wild-type": "Y",
|
|
354
|
+
"mutations": ["C", "H", "R"]
|
|
355
|
+
},
|
|
356
|
+
{
|
|
357
|
+
"position": 147,
|
|
358
|
+
"wild-type": "S",
|
|
359
|
+
"mutations": ["G"]
|
|
360
|
+
},
|
|
361
|
+
{
|
|
362
|
+
"position": 148,
|
|
363
|
+
"wild-type": "Q",
|
|
364
|
+
"mutations": ["H", "K", "R"]
|
|
365
|
+
},
|
|
366
|
+
{
|
|
367
|
+
"position": 263,
|
|
368
|
+
"wild-type": "R",
|
|
369
|
+
"mutations": ["K"]
|
|
370
|
+
},
|
|
371
|
+
{
|
|
372
|
+
"position": 155,
|
|
373
|
+
"wild-type": "N",
|
|
374
|
+
"mutations": ["S", "H", "T", "D"]
|
|
375
|
+
},
|
|
376
|
+
{
|
|
377
|
+
"position": 157,
|
|
378
|
+
"wild-type": "E",
|
|
379
|
+
"mutations": ["Q"]
|
|
380
|
+
},
|
|
381
|
+
{
|
|
382
|
+
"position": 163,
|
|
383
|
+
"wild-type": "G",
|
|
384
|
+
"mutations": ["R", "K"]
|
|
385
|
+
}
|
|
386
|
+
],
|
|
387
|
+
"CAI": [
|
|
388
|
+
{
|
|
389
|
+
"position": 56,
|
|
390
|
+
"wild-type": "L",
|
|
391
|
+
"mutations": ["I"]
|
|
392
|
+
},
|
|
393
|
+
{
|
|
394
|
+
"position": 57,
|
|
395
|
+
"wild-type": "N",
|
|
396
|
+
"mutations": ["S"]
|
|
397
|
+
},
|
|
398
|
+
{
|
|
399
|
+
"position": 66,
|
|
400
|
+
"wild-type": "M",
|
|
401
|
+
"mutations": ["I"]
|
|
402
|
+
},
|
|
403
|
+
{
|
|
404
|
+
"position": 67,
|
|
405
|
+
"wild-type": "Q",
|
|
406
|
+
"mutations": ["H", "Y", "N", "K"]
|
|
407
|
+
},
|
|
408
|
+
{
|
|
409
|
+
"position": 70,
|
|
410
|
+
"wild-type": "K",
|
|
411
|
+
"mutations": ["N", "H", "R", "S"]
|
|
412
|
+
},
|
|
413
|
+
{
|
|
414
|
+
"position": 74,
|
|
415
|
+
"wild-type": "N",
|
|
416
|
+
"mutations": ["D", "S"]
|
|
417
|
+
},
|
|
418
|
+
{
|
|
419
|
+
"position": 105,
|
|
420
|
+
"wild-type": "A",
|
|
421
|
+
"mutations": ["T", "S", "E"]
|
|
422
|
+
},
|
|
423
|
+
{
|
|
424
|
+
"position": 107,
|
|
425
|
+
"wild-type": "T",
|
|
426
|
+
"mutations": ["N", "S", "A"]
|
|
427
|
+
}
|
|
428
|
+
]
|
|
684
429
|
}
|
data/lib/viral_seq/version.rb
CHANGED