-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathViralMSA.py
executable file
·1044 lines (954 loc) · 49.4 KB
/
ViralMSA.py
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
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#! /usr/bin/env python3
'''
ViralMSA: Reference-guided multiple sequence alignment of viral genomes
'''
# standard imports
from datetime import datetime
from gzip import open as gopen
from hashlib import md5
from io import BufferedReader, TextIOWrapper
from json import load as jload
from math import log2
from multiprocessing import cpu_count, Pool
from os import chdir, getcwd, makedirs, remove
from os.path import abspath, expanduser, isdir, isfile, split
from shutil import copy, move
from urllib.request import urlopen
import argparse
import subprocess
import sys
# useful constants
VERSION = '1.1.44'
RELEASES_URL = 'https://api.github.com/repos/niemasd/ViralMSA/tags'
CIGAR_LETTERS = {'M','D','I','S','H','=','X'}
DEFAULT_BUFSIZE = 1048576 # 1 MB #8192 # 8 KB
DEFAULT_ALIGNER = 'minimap2'
DEFAULT_THREADS = cpu_count()
global QUIET; QUIET = False
global LOGFILE; LOGFILE = None
# mapper-specific options
WINNOWMAP_K = 15 # using Minimap2's default of k=15
WINNOWMAP_DISTINCT = 0.9998
# read mappers that output FASTA
ALIGNERS_FAS = {
'seq-align',
}
# read mappers that output PAF
ALIGNERS_PAF = {
'minigraph',
}
# citations
CITATION = {
'bowtie2': 'Bowtie2: Langmead B, Salzberg SL (2012). "Fast gapped-read alignment with Bowtie 2." Nat Methods. 9(4):357-359. doi:10.1038/nmeth.1923',
'bwa': 'BWA: Li H, Durbin R (2009). "Fast and accurate short read alignment with Burrows–Wheeler transform." Bioinformatics. 25(14):1754-1760. doi:10.1093/bioinformatics/btp324',
'dragmap': 'DRAGMAP: https://github.com/Illumina/DRAGMAP',
'hisat2': 'HISAT2: Kim D, Paggi JM, Park C, Bennett C, Salzberg SL (2019). "Graph-based genome alignment and genotyping with HISAT2 and HISAT-genotype." Nat Biotechnol. 37:907-915. doi:10.1038/s41587-019-0201-4',
'lra': 'LRA: Ren J, Chaisson MJP (2021). "lra: A long read aligner for sequences and contigs." PLoS Comput Biol. 17(6):e1009078. doi:10.1371/journal.pcbi.1009078',
'minigraph': 'Minigraph: https://github.com/lh3/minigraph',
'minimap2': 'Minimap2: Li H (2018). "Minimap2: pairwise alignment for nucleotide sequences." Bioinformatics. 34(18):3094-3100. doi:10.1093/bioinformatics/bty191',
'mm2-fast': 'mm2-fast: Kalikar S, Jain C, Vasimuddin M, Misra S (2022). "Accelerating minimap2 for long-read sequencing applications on modern CPUs." Nat Comput Sci. 2:78-83. doi:10.1038/s43588-022-00201-8',
'ngmlr': 'NGMLR: Sedlazeck FJ, Rescheneder P, Smolka M, Fang H, Nattestad M, von Haeseler A, Schatz MC (2018). "Accurate detection of complex structural variations using single-molecule sequencing." Nat Methods. 15:461-468. doi:10.1038/s41592-018-0001-7',
'seq-align': 'seq-align: Turner I (2015). "seq-align". https://github.com/noporpoise/seq-align',
'star': 'STAR: Dobin A, Davis CA, Schlesinger F, Drehkow J, Zaleski C, Jha S, Batut P, Chaisson M, Gingeras TR (2013). "STAR: ultrafast universal RNA-seq aligner." Bioinformatics. 29(1):15-21. doi:10.1093/bioinformatics/bts635',
'unimap': 'Unimap: Li H (2021). "Unimap: A fork of minimap2 optimized for assembly-to-reference alignment." https://github.com/lh3/unimap',
'viralmsa': 'ViralMSA: Moshiri N (2021). "ViralMSA: Massively scalable reference-guided multiple sequence alignment of viral genomes." Bioinformatics. 37(5):714–716. doi:10.1093/bioinformatics/btaa743',
'wfmash': 'wfmash: Jain C, Koren S, Dilthey A, Phillippy AM, Aluru S (2018). "A Fast Adaptive Algorithm for Computing Whole-Genome Homology Maps". Bioinformatics. 34(17):i748-i756. doi:10.1093/bioinformatics/bty597. Marco-Sola S, Moure JC, Moreto M, Espinosa A (2021). "Fast gap-affine pairwise alignment using the wavefront algorithm". Bioinformatics. 37(4):456-463. doi:10.1093/bioinformatics/btaa777',
'winnowmap': 'Winnowmap2: Jain C, Rhie A, Hansen NF, Koren S, Phillippy AM (2022). "Long-read mapping to repetitive reference sequences using Winnowmap2". Nature Methods. 19:705-710. doi:10.1038/s41592-022-01457-8',
}
# reference genomes for common viruses (updated 2024-02-16): https://github.com/Niema-Lab/Reference-Genomes/releases/latest/download/REFS.json
REFS_JSON = {"NC_006432": {"name": "Sudan Virus (Sudan ebolavirus)", "shortname": ["sudan", "sudanvirus", "sudanebola", "sudanebolavirus"]}, "NC_030791": {"name": "HCV genotype 7", "shortname": ["hcv7"]}, "NC_001475": {"name": "Dengue Virus 3", "shortname": ["denv3", "dengue3", "denguevirus3"]}, "NC_001802": {"name": "HIV-1", "shortname": ["hiv1"]}, "NC_045512": {"name": "SARS-CoV-2 (COVID-19)", "shortname": ["sc2", "sarscov2", "covid", "covid19"]}, "NC_009825": {"name": "HCV genotype 4", "shortname": ["hcv4"]}, "NC_002549": {"name": "Ebola Virus (Zaire ebolavirus)", "shortname": ["ebola", "ebolavirus", "zaire", "zaireebola", "zaireebolavirus"]}, "NC_004162": {"name": "Chikungunya Virus", "shortname": ["chikv", "chikungunya", "chikungunyavirus"]}, "NC_009827": {"name": "HCV genotype 6", "shortname": ["hcv6"]}, "NC_001498": {"name": "Measles Virus (Measles morbillivirus)", "shortname": ["measles", "measlesvirus", "measlesmorbillivirus"]}, "NC_063383": {"name": "Mpox Virus", "shortname": ["mpox", "mpoxvirus", "monkeypox", "monkeypoxvirus"]}, "NC_009824": {"name": "HCV genotype 3", "shortname": ["hcv3"]}, "NC_004161": {"name": "Reston Virus (Reston ebolavirus)", "shortname": ["reston", "restonvirus", "restonebola", "restonebolavirus"]}, "NC_009826": {"name": "HCV genotype 5", "shortname": ["hcv5"]}, "NC_004102": {"name": "HCV genotype 1", "shortname": ["hcv1"]}, "NC_014372": {"name": "Tai Forest Virus (Tai Forest ebolavirus, Cote d'Ivoire ebolavirus)", "shortname": ["taiforest", "taiforestvirus", "taiforestebola", "taiforestebolavirus", "cotedivoire", "cotedivoirevirus", "cotedivoireebola", "cotedivoireebolavirus"]}, "NC_009823": {"name": "HCV genotype 2", "shortname": ["hcv2"]}, "NC_038882": {"name": "HCV genotpye 1 (isolate H77)", "shortname": ["hcv1h77"]}, "NC_001477": {"name": "Dengue Virus 1", "shortname": ["denv1", "dengue1", "denguevirus1"]}, "NC_001474": {"name": "Dengue Virus 2", "shortname": ["denv2", "dengue2", "denguevirus2"]}, "NC_039345": {"name": "Bombali Virus (Bombali ebolavirus)", "shortname": ["bombali", "bombalivirus"]}, "NC_002640": {"name": "Dengue Virus 4", "shortname": ["denv4", "dengue4", "denguevirus4"]}, "NC_014373": {"name": "Bundibugyo Virus (Bundibugyo ebolavirus)", "shortname": ["bundibugyo", "bundibugyovirus"]}, "NC_001722": {"name": "HIV-2", "shortname": ["hiv2"]}}
REFS = {n:k for k in REFS_JSON for n in REFS_JSON[k]['shortname']}
# print to log (prefixed by current time)
def print_log(s='', end='\n'):
tmp = "[%s] %s" % (get_time(), s)
if not QUIET:
print(tmp, file=sys.stderr, end=end); sys.stderr.flush()
if LOGFILE is not None:
print(tmp, file=LOGFILE, end=end); LOGFILE.flush()
# convert a ViralMSA version string to a tuple of integers
def parse_version(s):
return tuple(int(v) for v in s.split('.'))
# update ViralMSA to the newest version
def update_viralmsa():
tags = jload(urlopen(RELEASES_URL))
newest = max(tags, key=lambda x: parse_version(x['name']))
if parse_version(newest['name']) <= parse_version(VERSION):
print("ViralMSA is already at the newest version (%s)" % VERSION); exit(0)
old_version = VERSION; new_version = newest['name']
url = 'https://raw.githubusercontent.com/niemasd/ViralMSA/%s/ViralMSA.py' % newest['commit']['sha']
content = urlopen(url).read()
try:
with open(__file__, 'wb') as f:
f.write(content)
except PermissionError:
print("ERROR: Received a permission error when updating ViralMSA. Perhaps try running as root?", file=sys.stderr); exit(1)
print("Successfully updated ViralMSA %s --> %s" % (old_version, new_version)); exit(0)
# return the current time as a string
def get_time():
return datetime.now().strftime("%Y-%m-%d %H:%M:%S")
# count the number of IDs in a FASTA file
def count_IDs_fasta(fn, bufsize=DEFAULT_BUFSIZE):
return sum(l.startswith('>') for l in open(fn, buffering=bufsize))
# count the number of IDs in a SAM file
def count_IDs_sam(fn, bufsize=DEFAULT_BUFSIZE):
return len({l.split('\t')[0].strip() for l in open(fn, buffering=bufsize) if not l.startswith('@')})
# parse a CIGAR string
def parse_cigar(s):
out = list(); ind = len(s)-1
while ind >= 0:
let = s[ind]; ind -= 1; num = ''
while s[ind] not in CIGAR_LETTERS:
num += s[ind]; ind -= 1
out.append((let, int(num[::-1])))
return out[::-1]
# iterate over a FASTA file as (header, seq) tuples
def iter_fasta(fa_path, bufsize=DEFAULT_BUFSIZE):
if fa_path.lower().endswith('.gz'):
fa_file = TextIOWrapper(BufferedReader(gopen(fa_path, 'rb'), buffer_size=bufsize))
else:
fa_file = open(fa_path, 'r', buffering=bufsize)
header = None; seq = None; line = None
for line in fa_file:
l = line.strip()
if l.startswith('>'):
if seq is not None:
if len(seq) == 0:
raise ValueError("Invalid FASTA file: %s" % fa_path)
else:
yield (header, seq)
header = l[1:]; seq = ''
elif len(l) != 0:
seq += l.replace(' ','').replace('\t','')
if len(seq) == 0:
raise ValueError("Invalid FASTA file: %s" % fa_path)
yield (header, seq)
# convert FASTA to FASTQ
def fasta2fastq(fa_path, fq_path, qual='~', bufsize=DEFAULT_BUFSIZE):
if fq_path.lower().endswith('.gz'):
gzip_out = True; fq_file = gopen(fq_path, 'wb', 9)
else:
gzip_out = False; fq_file = open(fq_path, 'w', buffering=bufsize)
for fa_header, fa_seq in iter_fasta(fa_path):
curr = '@%s\n%s\n+\n%s\n' % (fa_header, fa_seq, qual*len(fa_seq))
if gzip_out:
fq_file.write(curr.encode())
else:
fq_file.write(curr)
# check bowtie2
def check_bowtie2():
try:
o = subprocess.check_output(['bowtie2', '-h'])
except:
o = None
if o is None or 'Bowtie 2 version' not in o.decode():
print("ERROR: bowtie2 is not runnable in your PATH", file=sys.stderr); exit(1)
try:
o = subprocess.check_output(['bowtie2-build', '-h'])
except:
o = None
if o is None or 'Bowtie 2 version' not in o.decode():
print("ERROR: bowtie2-build is not runnable in your PATH", file=sys.stderr); exit(1)
# check BWA
def check_bwa():
try:
o = subprocess.run(['bwa'], stdout=subprocess.PIPE, stderr=subprocess.PIPE).stderr
except:
o = None
if o is None or 'Program: bwa' not in o.decode():
print("ERROR: BWA is not runnable in your PATH", file=sys.stderr); exit(1)
# check DRAGMAP
def check_dragmap():
try:
o = subprocess.check_output(['dragen-os', '-h'])
except:
o = None
if o is None or 'dragenos -r <reference> -b <base calls> [optional arguments]' not in o.decode():
print("ERROR: dragen-os is not runnable in your PATH", file=sys.stderr); exit(1)
# check HISAT2
def check_hisat2():
try:
o = subprocess.check_output(['hisat2', '-h'])
except:
o = None
if o is None or 'HISAT2 version' not in o.decode():
print("ERROR: hisat2 is not runnable in your PATH", file=sys.stderr); exit(1)
try:
o = subprocess.check_output(['hisat2-build', '-h'])
except:
o = None
if o is None or 'HISAT2 version' not in o.decode():
print("ERROR: hisat2-build is not runnable in your PATH", file=sys.stderr); exit(1)
# check LRA
def check_lra():
try:
o = subprocess.check_output(['lra', '-h'])
except subprocess.CalledProcessError as cpe:
o = cpe.output
except:
o = None
if o is None or 'lra (long sequence alignment)' not in o.decode():
print(o.decode())
print("ERROR: LRA is not runnable in your PATH", file=sys.stderr); exit(1)
# check minigraph
def check_minigraph():
try:
o = subprocess.run(['minigraph'], stdout=subprocess.PIPE, stderr=subprocess.PIPE).stderr
except:
o = None
if o is None or 'Usage: minigraph' not in o.decode():
print("ERROR: Minigraph is not runnable in your PATH", file=sys.stderr); exit(1)
# check minimap2
def check_minimap2():
try:
o = subprocess.check_output(['minimap2', '-h'])
except:
o = None
if o is None or 'Usage: minimap2' not in o.decode():
print("ERROR: Minimap2 is not runnable in your PATH", file=sys.stderr); exit(1)
# check mm2-fast
def check_mm2fast():
try:
o = subprocess.check_output(['mm2-fast', '-h'])
except:
o = None
if o is None or 'Usage: ' not in o.decode():
print("ERROR: mm2-fast is not runnable in your PATH", file=sys.stderr); exit(1)
# check NGMLR
def check_ngmlr():
try:
o = subprocess.check_output(['ngmlr', '-h'], stderr=subprocess.STDOUT)
except:
o = None
if o is None or 'Usage: ngmlr' not in o.decode():
print("ERROR: NGMLR is not runnable in your PATH", file=sys.stderr); exit(1)
# check seq-align
def check_seqalign():
try:
o = subprocess.run(['needleman_wunsch', '-h'], stdout=subprocess.PIPE, stderr=subprocess.PIPE).stderr
except:
o = None
if o is None or 'usage: needleman_wunsch' not in o.decode():
print("ERROR: seq-align (needleman_wunsch) is not runnable in your PATH", file=sys.stderr); exit(1)
# check STAR
def check_star():
try:
o = subprocess.check_output(['STAR', '-h'])
except:
o = None
if o is None or 'Usage: STAR' not in o.decode():
print("ERROR: STAR is not runnable in your PATH", file=sys.stderr); exit(1)
# check unimap
def check_unimap():
try:
o = subprocess.check_output(['unimap', '-h'])
except:
o = None
if o is None or 'Usage: unimap' not in o.decode():
print("ERROR: Unimap is not runnable in your PATH", file=sys.stderr); exit(1)
# check wfmash
def check_wfmash():
try:
o = subprocess.check_output(['wfmash', '-h'])
except:
o = None
if o is None or 'wfmash [target] [queries...] {OPTIONS}' not in o.decode():
print("ERROR: wfmash is not runnable in your PATH", file=sys.stderr); exit(1)
# check Winnowmap
def check_winnowmap():
try:
o = subprocess.check_output(['winnowmap', '-h'])
except:
o = None
if o is None or 'Usage: winnowmap' not in o.decode():
print("ERROR: Winnowmap is not runnable in your PATH", file=sys.stderr); exit(1)
try:
o = subprocess.run(['meryl'], stdout=subprocess.PIPE, stderr=subprocess.PIPE).stderr
except:
o = None
if o is None or 'usage: meryl' not in o.decode():
print("ERROR: meryl is not runnable in your PATH", file=sys.stderr); exit(1)
# build FAIDX index (multiple tools might need this)
def build_index_faidx(ref_genome_path, threads, verbose=True):
index_path = '%s.fai' % ref_genome_path
if isfile(index_path):
if verbose:
print_log("FAIDX index found: %s" % index_path)
return
command = ['samtools', 'faidx', ref_genome_path]
if verbose:
print_log("Building FAIDX index: %s" % ' '.join(command))
log = open('%s.log' % index_path, 'w'); subprocess.call(command, stderr=log); log.close()
if verbose:
print_log("FAIDX index built: %s" % index_path)
# build bowtie2 index
def build_index_bowtie2(ref_genome_path, threads, verbose=True):
exts = ['1.bt2', '2.bt2', '3.bt2', '4.bt2', 'rev.1.bt2', 'rev.2.bt2']
all_found = True
for ext in exts:
if not isfile('%s.bowtie2.%s' % (ref_genome_path,ext)):
all_found = False; break
if all_found:
if verbose:
print_log("bowtie2 index found: %s.bowtie2.*.bt2" % ref_genome_path)
return
for ext in exts:
if isfile('%s.bowtie2.%s' % (ref_genome_path,ext)):
remove('%s.bowtie2.%s' % (ref_genome_path,ext))
ref_genome_dir, ref_genome_fn = split(ref_genome_path)
orig_dir = getcwd()
chdir(ref_genome_dir)
command = ['bowtie2-build', '--threads', str(threads), ref_genome_path, '%s.bowtie2' % ref_genome_fn]
if verbose:
print_log("Building bowtie2 index: %s" % ' '.join(command))
log = open('%s.bowtie2.log' % ref_genome_path, 'w'); subprocess.call(command, stdout=log, stderr=subprocess.STDOUT); log.close()
if verbose:
print_log("bowtie2 index built: %s.bowtie2.*.bt2" % ref_genome_path)
chdir(orig_dir)
# build BWA index
def build_index_bwa(ref_genome_path, threads, verbose=True):
exts = ['amb', 'ann', 'bwt', 'pac', 'sa']
all_found = True
for ext in exts:
if not isfile('%s.%s' % (ref_genome_path,ext)):
all_found = False; break
if all_found:
if verbose:
print_log("BWA index found: %s.[amb, ann, bwt, pac, sa]" % ref_genome_path)
return
for ext in exts:
if isfile('%s.%s' % (ref_genome_path,ext)):
remove('%s.%s' % (ref_genome_path,ext))
ref_genome_dir, ref_genome_fn = split(ref_genome_path)
orig_dir = getcwd()
chdir(ref_genome_dir)
command = ['bwa', 'index', ref_genome_path]
if verbose:
print_log("Building BWA index: %s" % ' '.join(command))
log = open('%s.bwa.log' % ref_genome_path, 'w'); subprocess.call(command, stdout=log, stderr=subprocess.STDOUT); log.close()
if verbose:
print_log("BWA index built: %s.[amb, ann, bwt, pac, sa]" % ref_genome_path)
chdir(orig_dir)
# build DRAGMAP index
def build_index_dragmap(ref_genome_path, threads, verbose=True):
index_path = '%s.DRAGMAP' % ref_genome_path
if isdir(index_path):
if verbose:
print_log("DRAGMAP index found: %s" % index_path)
return
makedirs(index_path, exist_ok=False)
command = ['dragen-os', '--build-hash-table', 'true', '--ht-reference', ref_genome_path, '--ht-num-threads', str(threads), '--output-directory', index_path]
if verbose:
print_log("Building DRAGMAP index: %s" % ' '.join(command))
log = open('%s/index.log' % index_path, 'w'); subprocess.call(command, stdout=log, stderr=subprocess.STDOUT); log.close()
if verbose:
print_log("DRAGMAP index built: %s" % index_path)
# build HISAT2 index
def build_index_hisat2(ref_genome_path, threads, verbose=True):
exts = [('%d.ht2'%i) for i in range(1,9)]
all_found = True
for ext in exts:
if not isfile('%s.hisat2.%s' % (ref_genome_path,ext)):
all_found = False; break
if all_found:
if verbose:
print_log("HISAT2 index found: %s.hisat2.*.ht2" % ref_genome_path)
return
for ext in exts:
if isfile('%s.hisat2.%s' % (ref_genome_path,ext)):
remove('%s.hisat2.%s' % (ref_genome_path,ext))
ref_genome_dir, ref_genome_fn = split(ref_genome_path)
orig_dir = getcwd()
chdir(ref_genome_dir)
command = ['hisat2-build', '--threads', str(threads), ref_genome_path, '%s.hisat2' % ref_genome_fn]
if verbose:
print_log("Building HISAT2 index: %s" % ' '.join(command))
log = open('%s.hisat2.log' % ref_genome_path, 'w'); subprocess.call(command, stdout=log, stderr=subprocess.STDOUT); log.close()
if verbose:
print_log("HISAT2 index built: %s.hisat2.*.ht2" % ref_genome_path)
chdir(orig_dir)
# build LRA index
def build_index_lra(ref_genome_path, threads, verbose=True):
lra_ref_genome_path = '%s.lra' % ref_genome_path
gli_index_path = '%s.gli' % lra_ref_genome_path
mmi_index_path = '%s.mmi' % lra_ref_genome_path
mms_index_path = '%s.mms' % lra_ref_genome_path
if isfile(lra_ref_genome_path) and isfile(gli_index_path) and (isfile(mmi_index_path) or isfile(mms_index_path)):
if verbose:
if isfile(mmi_index_path):
print_log("LRA index files found: %s and %s" % (gli_index_path, mmi_index_path))
else:
print_log("LRA index files found: %s and %s" % (gli_index_path, mms_index_path))
return
elif isfile(lra_ref_genome_path):
raise RuntimeError("Corrupt LRA index. Please delete the following and try again: %s" % lra_ref_genome_path)
elif isfile(gli_index_path):
raise RuntimeError("Corrupt LRA index. Please delete the following and try again: %s" % gli_index_path)
elif isfile(mmi_index_path):
raise RuntimeError("Corrupt LRA index. Please delete the following and try again: %s" % mmi_index_path)
elif isfile(mms_index_path):
raise RuntimeError("Corrupt LRA index. Please delete the following and try again: %s" % mms_index_path)
copy(ref_genome_path, lra_ref_genome_path)
command = ['lra', 'index', '-CONTIG', lra_ref_genome_path]
if verbose:
print_log("Building LRA index: %s" % ' '.join(command))
log = open('%s.log' % lra_ref_genome_path, 'w'); subprocess.call(command, stderr=log); log.close()
if verbose:
if isfile(mmi_index_path):
print_log("LRA index built: %s and %s" % (gli_index_path, mmi_index_path))
else:
print_log("LRA index built: %s and %s" % (gli_index_path, mms_index_path))
# build minigraph index
def build_index_minigraph(ref_genome_path, threads, verbose=True):
pass # Minigraph doesn't seem to do anything with a ref genome with 1 sequence
# build minimap2 index
def build_index_minimap2(ref_genome_path, threads, verbose=True):
index_path = '%s.mmi' % ref_genome_path
if isfile(index_path):
if verbose:
print_log("Minimap2 index found: %s" % index_path)
return
command = ['minimap2', '-t', str(threads), '-d', index_path, ref_genome_path]
if verbose:
print_log("Building Minimap2 index: %s" % ' '.join(command))
log = open('%s.log' % index_path, 'w'); subprocess.call(command, stderr=log); log.close()
if verbose:
print_log("Minimap2 index built: %s" % index_path)
# build mm2-fast index
def build_index_mm2fast(ref_genome_path, threads, verbose=True):
index_path = '%s.mm2fast.mmi' % ref_genome_path
if isfile(index_path):
if verbose:
print_log("mm2-fast index found: %s" % index_path)
return
command = ['mm2-fast', '-t', str(threads), '-d', index_path, ref_genome_path]
if verbose:
print_log("Building mm2-fast index: %s" % ' '.join(command))
log = open('%s.log' % index_path, 'w'); subprocess.call(command, stderr=log); log.close()
if verbose:
print_log("mm2-fast index built: %s" % index_path)
# build NGMLR index
def build_index_ngmlr(ref_genome_path, threads, verbose=True):
enc_index_path = '%s-enc.2.ngm' % ref_genome_path
ht_index_path = '%s-ht-13-2.2.ngm' % ref_genome_path
if isfile(enc_index_path) and isfile(ht_index_path):
if verbose:
print_log("NGMLR index files found: %s and %s" % (enc_index_path, ht_index_path))
return
elif isfile(enc_index_path):
raise RuntimeError("Corrupt NGMLR index. Please delete the following and try again: %s" % enc_index_path)
elif isfile(ht_index_path):
raise RuntimeError("Corrupt NGMLR index. Please delete the following and try again: %s" % ht_index_path)
command = ['ngmlr', '-x', 'pacbio', '-i', '0', '--no-smallinv', '-t', str(threads), '-r', ref_genome_path]
if verbose:
print_log("Building NGMLR index: %s" % ' '.join(command))
log = open('%s.NGMLR.log' % ref_genome_path, 'w'); subprocess.call(command, stdin=subprocess.DEVNULL, stderr=log, stdout=DEVNULL); log.close()
if verbose:
print_log("NGMLR index built: %s and %s" % (enc_index_path, ht_index_path))
# build seq-align index
def build_index_seqalign(ref_genome_path, threads, verbose=True):
pass # no indexing needed
# build STAR index
def build_index_star(ref_genome_path, threads, verbose=True):
delete_log = True # STAR by default creates Log.out in the running directory
if isfile('Log.out'):
delete_log = False # don't delete it (it existed before running ViralMSA)
index_path = '%s.STAR' % ref_genome_path
if isdir(index_path):
if verbose:
print_log("STAR index found: %s" % index_path)
return
genome_length = sum(len(l.strip()) for l in open(ref_genome_path) if not l.startswith('>'))
genomeSAindexNbases = min(14, int(log2(genome_length)/2)-1)
makedirs(index_path, exist_ok=False)
command = ['STAR', '--runMode', 'genomeGenerate', '--runThreadN', str(threads), '--genomeDir', index_path, '--genomeFastaFiles', ref_genome_path, '--genomeSAindexNbases', str(genomeSAindexNbases)]
if verbose:
print_log("Building STAR index: %s" % ' '.join(command))
log = open('%s/index.log' % index_path, 'w'); subprocess.call(command, stdout=log, stderr=subprocess.STDOUT); log.close()
if verbose:
print_log("STAR index built: %s" % index_path)
if delete_log and isfile('Log.out'):
remove('Log.out')
# build unimap index
def build_index_unimap(ref_genome_path, threads, verbose=True):
index_path = '%s.umi' % ref_genome_path
if isfile(index_path):
if verbose:
print_log("Unimap index found: %s" % index_path)
return
command = ['unimap', '-t', str(threads), '-d', index_path, ref_genome_path]
if verbose:
print_log("Building Unimap index: %s" % ' '.join(command))
log = open('%s.log' % index_path, 'w'); subprocess.call(command, stderr=log); log.close()
if verbose:
print_log("Unimap index built: %s" % index_path)
# build wfmash index
def build_index_wfmash(ref_genome_path, threads, verbose=True):
build_index_faidx(ref_genome_path, threads, verbose=True)
# build Winnowmap index
def build_index_winnowmap(ref_genome_path, threads, verbose=True):
db_path = '%s.meryl.db' % ref_genome_path
index_path = '%s.meryl.k%d.txt' % (ref_genome_path, WINNOWMAP_K)
if isdir(db_path):
if verbose:
print_log("Meryl DB found: %s" % db_path)
else:
command = ['meryl', 'count', 'k=%d' % WINNOWMAP_K, 'output', db_path, ref_genome_path]
if verbose:
print_log("Building Meryl DB: %s" % ' '.join(command))
log = open('%s.log' % db_path, 'w'); subprocess.call(command, stderr=log); log.close()
if verbose:
print_log("Meryl DB built: %s" % db_path)
if isfile(index_path):
if verbose:
print_log("Winnowmap index (Meryl %d-mers) found: %s" % (WINNOWMAP_K, index_path))
return
command = ['meryl', 'print', 'greater-than', 'distinct=%s' % WINNOWMAP_DISTINCT, db_path]
if verbose:
print_log("Building Winnowmap index (Meryl %d-mers): %s" % (WINNOWMAP_K, ' '.join(command)))
out = open(index_path, 'w'); log = open('%s.log' % index_path, 'w'); subprocess.call(command, stdout=out, stderr=log); out.close(); log.close()
if verbose:
print_log("Winnowmap index (Meryl %d-mers) built: %s" % (WINNOWMAP_K, index_path))
# align genomes using bowtie2
def align_bowtie2(seqs_path, out_aln_path, ref_genome_path, threads, bufsize=DEFAULT_BUFSIZE, verbose=True):
command = ['bowtie2', '--very-sensitive', '-p', str(threads), '-f', '-x', '%s.bowtie2' % ref_genome_path, '-U', seqs_path, '-S', out_aln_path]
if verbose:
print_log("Aligning using bowtie2: %s" % ' '.join(command))
log = open('%s.log' % out_aln_path, 'w'); subprocess.call(command, stderr=log); log.close()
if verbose:
print_log("bowtie2 alignment complete: %s" % out_aln_path)
# align genomes using BWA MEM
def align_bwa(seqs_path, out_aln_path, ref_genome_path, threads, bufsize=DEFAULT_BUFSIZE, verbose=True):
command = ['bwa', 'mem', '-t', str(threads), ref_genome_path, seqs_path]
if verbose:
print_log("Aligning using BWA: %s" % ' '.join(command))
out = open(out_aln_path, 'w'); log = open('%s.log' % out_aln_path, 'w')
subprocess.call(command, stdout=out, stderr=log); out.close(); log.close()
if verbose:
print_log("BWA alignment complete: %s" % out_aln_path)
# align genomes using DRAGMAP
def align_dragmap(seqs_path, out_aln_path, ref_genome_path, threads, bufsize=DEFAULT_BUFSIZE, verbose=True):
tmp_fq_path = '%s.fastq.gz' % out_aln_path
fasta2fastq(seqs_path, tmp_fq_path)
command = ['dragen-os', '--num-threads', str(threads), '--Aligner.sw-all', '1', '-r', '%s.DRAGMAP' % ref_genome_path, '-1', tmp_fq_path]
if verbose:
print_log("Aligning using DRAGMAP: %s" % ' '.join(command))
out = open(out_aln_path, 'w'); log = open('%s.log' % out_aln_path, 'w'); subprocess.call(command, stdout=out, stderr=log); out.close(); log.close()
if verbose:
print_log("DRAGMAP alignment complete: %s" % out_aln_path)
# align genomes using HISAT2
def align_hisat2(seqs_path, out_aln_path, ref_genome_path, threads, bufsize=DEFAULT_BUFSIZE, verbose=True):
command = ['hisat2', '--very-sensitive', '-p', str(threads), '-f', '-x', '%s.hisat2' % ref_genome_path, '-U', seqs_path, '-S', out_aln_path]
if verbose:
print_log("Aligning using HISAT2: %s" % ' '.join(command))
log = open('%s.log' % out_aln_path, 'w'); subprocess.call(command, stderr=log); log.close()
if verbose:
print_log("HISAT2 alignment complete: %s" % out_aln_path)
# align genomes using LRA
def align_lra(seqs_path, out_aln_path, ref_genome_path, threads, bufsize=DEFAULT_BUFSIZE, verbose=True):
lra_ref_genome_path = '%s.lra' % ref_genome_path
command = ['lra', 'align', '-t', str(threads), '-CONTIG', '-p', 's', lra_ref_genome_path, seqs_path]
if verbose:
print_log("Aligning using LRA: %s" % ' '.join(command))
out_sam_file = open(out_aln_path, 'w'); log = open('%s.log' % out_aln_path, 'w'); subprocess.call(command, stdout=out_sam_file, stderr=log); out_sam_file.close(); log.close()
if verbose:
print_log("LRA alignment complete: %s" % out_aln_path)
# align genomes using minigraph
def align_minigraph(seqs_path, out_paf_path, ref_genome_path, threads, verbose=True):
command = ['minigraph', '-c', '-t', str(threads), '--secondary=no', '-l', '0', '-d', '0', '-L', '0', '-o', out_paf_path, ref_genome_path, seqs_path]
if verbose:
print_log("Aligning using Minigraph: %s" % ' '.join(command))
log = open('%s.log' % out_paf_path, 'w'); subprocess.call(command, stderr=log); log.close()
if verbose:
print_log("Minigraph alignment complete: %s" % out_paf_path)
# align genomes using minimap2
def align_minimap2(seqs_path, out_aln_path, ref_genome_path, threads, bufsize=DEFAULT_BUFSIZE, verbose=True):
index_path = '%s.mmi' % ref_genome_path
command = ['minimap2', '-t', str(threads), '--score-N=0', '--secondary=no', '--sam-hit-only', '-a', '-o', out_aln_path, index_path, seqs_path]
if verbose:
print_log("Aligning using Minimap2: %s" % ' '.join(command))
log = open('%s.log' % out_aln_path, 'w'); subprocess.call(command, stderr=log); log.close()
if verbose:
print_log("Minimap2 alignment complete: %s" % out_aln_path)
# align genomes using mm2-fast
def align_mm2fast(seqs_path, out_aln_path, ref_genome_path, threads, bufsize=DEFAULT_BUFSIZE, verbose=True):
index_path = '%s.mm2fast.mmi' % ref_genome_path
command = ['mm2-fast', '-t', str(threads), '--score-N=0', '--secondary=no', '--sam-hit-only', '-a', '-o', out_aln_path, index_path, seqs_path]
if verbose:
print_log("Aligning using mm2-fast: %s" % ' '.join(command))
log = open('%s.log' % out_aln_path, 'w'); subprocess.call(command, stderr=log); log.close()
if verbose:
print_log("mm2-fast alignment complete: %s" % out_aln_path)
# align genomes using NGMLR
def align_ngmlr(seqs_path, out_aln_path, ref_genome_path, threads, bufsize=DEFAULT_BUFSIZE, verbose=True):
command = ['ngmlr', '--skip-write', '-x', 'pacbio', '-i', '0', '--no-smallinv', '-t', str(threads), '-r', ref_genome_path, '-q', seqs_path, '-o', out_aln_path]
if verbose:
print_log("Aligning using NGMLR: %s" % ' '.join(command))
log = open('%s.log' % out_aln_path, 'w'); subprocess.call(command, stderr=log); log.close()
if verbose:
print_log("NGMLR alignment complete: %s" % out_aln_path)
# helper function to perform individual pairwise alignments
def run_needleman_wunsch(x): # x is (command, ref_seq, query_header, query_seq) tuple
ref_aln, query_aln = subprocess.check_output(x[0] + [x[1], x[3]]).decode().strip().splitlines()
start_ind_in = 0; end_ind_ex = len(ref_aln)
for c in ref_aln:
if c == '-':
start_ind_in += 1
else:
break
for c in ref_aln[::-1]:
if c == '-':
end_ind_ex -= 1
else:
break
return (x[2], query_aln[start_ind_in:end_ind_ex])
# align genomes using seq-align
def align_seqalign(seqs_path, out_aln_path, ref_genome_path, threads, bufsize=DEFAULT_BUFSIZE, verbose=True):
# set things up
command = ['needleman_wunsch', '--printfasta', '--nogapsin1']
if verbose:
print_log("Aligning using seq-align: %s" % ' '.join(command))
log = open('%s.log' % out_aln_path, 'w'); out_aln = open(out_aln_path, 'w', buffering=bufsize)
ref_header, ref_seq = list(iter_fasta(ref_genome_path))[0]
# perform alignment
pool = Pool(processes=threads)
inputs = ((command, ref_seq, curr_header, curr_seq) for curr_header, curr_seq in iter_fasta(seqs_path))
for curr in pool.imap_unordered(run_needleman_wunsch, inputs, chunksize=1):
out_aln.write('>%s\n%s\n' % curr)
log.write("Finished %s\n" % curr[0])
log.close(); out_aln.close()
if verbose:
print_log("seq-align complete: %s" % out_aln_path)
# align genomes using STAR
def align_star(seqs_path, out_aln_path, ref_genome_path, threads, bufsize=DEFAULT_BUFSIZE, verbose=True):
delete_log = True # STAR by default creates Log.out in the running directory
if isfile('Log.out'):
delete_log = False # don't delete it (it existed before running ViralMSA)
index_path = '%s.STAR' % ref_genome_path
out_sam_dir, out_sam_fn = split(out_aln_path)
out_file_prefix = '%s.' % '.'.join(out_aln_path.split('.')[:-1])
command = ['STAR', '--runThreadN', str(threads), '--genomeDir', index_path, '--readFilesIn', seqs_path, '--outFileNamePrefix', out_file_prefix, '--outFilterMismatchNmax', '9999999999']
if verbose:
print_log("Aligning using STAR: %s" % ' '.join(command))
log = open('%s/STAR.log' % out_sam_dir, 'w'); subprocess.call(command, stdout=log); log.close()
move('%sAligned.out.sam' % out_file_prefix, out_aln_path)
if verbose:
print_log("STAR alignment complete: %s" % out_sam_dir)
if delete_log and isfile('Log.out'):
remove('Log.out')
# align genomes using unimap
def align_unimap(seqs_path, out_aln_path, ref_genome_path, threads, bufsize=DEFAULT_BUFSIZE, verbose=True):
index_path = '%s.umi' % ref_genome_path
command = ['unimap', '-t', str(threads), '--score-N=0', '--secondary=no', '--sam-hit-only', '-a', '--cs', '-o', out_aln_path, index_path, seqs_path]
if verbose:
print_log("Aligning using Unimap: %s" % ' '.join(command))
log = open('%s.log' % out_aln_path, 'w'); subprocess.call(command, stderr=log); log.close()
if verbose:
print_log("Unimap alignment complete: %s" % out_aln_path)
# align genomes using wfmash
def align_wfmash(seqs_path, out_aln_path, ref_genome_path, threads, bufsize=DEFAULT_BUFSIZE, verbose=True):
ref_genome_length = sum(len(l.strip()) for l in open(ref_genome_path) if not l.startswith('>'))
command = ['wfmash', '-N', '--sam-format', '--threads=%d' % threads, ref_genome_path, seqs_path]
if verbose:
print_log("Aligning using wfmash: %s" % ' '.join(command))
sam = open(out_aln_path, 'w'); log = open('%s.log' % out_aln_path, 'w'); subprocess.call(command, stdout=sam, stderr=log); sam.close(); log.close()
if verbose:
print_log("wfmash alignment complete: %s" % out_aln_path)
# align genomes using Winnowmap
def align_winnowmap(seqs_path, out_aln_path, ref_genome_path, threads, bufsize=DEFAULT_BUFSIZE, verbose=True):
index_path = '%s.meryl.k%d.txt' % (ref_genome_path, WINNOWMAP_K)
command = ['winnowmap', '-k', str(WINNOWMAP_K), '-W', index_path, '-t', str(threads), '--score-N=0', '--secondary=no', '--sam-hit-only', '-a', '-o', out_aln_path, ref_genome_path, seqs_path]
if verbose:
print_log("Aligning using Winnowmap: %s" % ' '.join(command))
log = open('%s.log' % out_aln_path, 'w'); subprocess.call(command, stderr=log); log.close()
if verbose:
print_log("Winnowmap alignment complete: %s" % out_aln_path)
# aligners
ALIGNERS = {
'bowtie2': {
'check': check_bowtie2,
'build_index': build_index_bowtie2,
'align': align_bowtie2,
},
'bwa': {
'check': check_bwa,
'build_index': build_index_bwa,
'align': align_bwa,
},
'dragmap': {
'check': check_dragmap,
'build_index': build_index_dragmap,
'align': align_dragmap,
},
'hisat2': {
'check': check_hisat2,
'build_index': build_index_hisat2,
'align': align_hisat2,
},
'lra': {
'check': check_lra,
'build_index': build_index_lra,
'align': align_lra,
},
# Minigraph still doesn't work (only outputs PAF without sequences)
#'minigraph': {
# 'check': check_minigraph,
# 'build_index': build_index_minigraph,
# 'align': align_minigraph,
#},
'minimap2': {
'check': check_minimap2,
'build_index': build_index_minimap2,
'align': align_minimap2,
},
'mm2-fast': {
'check': check_mm2fast,
'build_index': build_index_mm2fast,
'align': align_mm2fast,
},
'ngmlr': {
'check': check_ngmlr,
'build_index': build_index_ngmlr,
'align': align_ngmlr,
},
'seq-align': {
'check': check_seqalign,
'build_index': build_index_seqalign,
'align': align_seqalign,
},
'star': {
'check': check_star,
'build_index': build_index_star,
'align': align_star,
},
'unimap': {
'check': check_unimap,
'build_index': build_index_unimap,
'align': align_unimap,
},
'wfmash': {
'check': check_wfmash,
'build_index': build_index_wfmash,
'align': align_wfmash,
},
'winnowmap': {
'check': check_winnowmap,
'build_index': build_index_winnowmap,
'align': align_winnowmap,
},
}
# parse user args
def parse_args():
# check if user wants to update ViralMSA
if '-u' in sys.argv or '--update' in sys.argv:
update_viralmsa()
# check if user just wants to list references
if '-l' in sys.argv or '--list_references' in sys.argv:
if REFS_JSON is None:
print("ERROR: Listing references requires an internet connection", file=sys.stderr); exit(1)
print("=== Reference Sequence Aliases (for use with -s) ===")
for ID in sorted(REFS_JSON.keys(), key=lambda x: REFS_JSON[x]['name']):
print('* %s' % REFS_JSON[ID]['name'])
print(" - Aliases: %s" % ', '.join(REFS_JSON[ID]['shortname']))
print()
exit(0)
# use argparse to parse user arguments
parser = argparse.ArgumentParser(description=__doc__, formatter_class=argparse.ArgumentDefaultsHelpFormatter)
parser.add_argument('-s', '--sequences', required=True, type=str, help="Input Sequences (FASTA format, or SAM if already mapped)")
parser.add_argument('-r', '--reference', required=True, type=str, help="Reference")
parser.add_argument('-e', '--email', required=True, type=str, help="Email Address (for Entrez)")
parser.add_argument('-o', '--output', required=True, type=str, help="Output Directory")
parser.add_argument('-a', '--aligner', required=False, type=str, default=DEFAULT_ALIGNER, help="Aligner (options: %s)" % ', '.join(sorted(ALIGNERS.keys())))
parser.add_argument('-t', '--threads', required=False, type=int, default=DEFAULT_THREADS, help="Number of Threads")
parser.add_argument('-b', '--buffer_size', required=False, type=int, default=DEFAULT_BUFSIZE, help="File Stream Buffer Size (bytes)")
parser.add_argument('-l', '--list_references', action="store_true", help="List all reference sequences")
parser.add_argument('--omit_ref', action="store_true", help="Omit reference sequence from output alignment")
parser.add_argument('--stdout', action="store_true", help="Write MSA to standard output instead of to file")
parser.add_argument('-q', '--quiet', action="store_true", help="Suppress log output")
parser.add_argument('--viralmsa_dir', required=False, type=str, default=abspath(expanduser("~/.viralmsa")), help="ViralMSA Cache Directory")
parser.add_argument('-u', '--update', action="store_true", help="Update ViralMSA (current version: %s)" % VERSION)
args = parser.parse_args()
# check user args for validity
if args.threads < 1:
print("ERROR: Number of threads must be positive", file=sys.stderr); exit(1)
if args.buffer_size < 1:
print("ERROR: Output buffer size must be positive", file=sys.stderr); exit(1)
args.aligner = args.aligner.lower()
if args.aligner not in ALIGNERS:
print("ERROR: Invalid aligner: %s (valid options: %s)" % (args.aligner, ', '.join(sorted(ALIGNERS.keys()))), file=sys.stderr); exit(1)
args.sequences = abspath(expanduser(args.sequences))
if not isfile(args.sequences):
print("ERROR: Sequences file not found: %s" % args.sequences, file=sys.stderr); exit(1)
if args.sequences.lower().endswith('.gz'):
print("ERROR: Sequences cannot be compressed: %s" % args.sequences, file=sys.stderr); exit(1)
args.output = abspath(expanduser(args.output))
if isdir(args.output) or isfile(args.output):
print("ERROR: Output directory exists: %s" % args.output, file=sys.stderr); exit(1)
if isfile(args.reference):
if count_IDs_fasta(args.reference, bufsize=args.buffer_size) != 1:
print("ERROR: Reference file (%s) must have exactly 1 sequence in the FASTA format" % args.reference, file=sys.stderr); exit(1)
ref_seq = ''.join(l.strip() for l in open(args.reference, 'r', args.buffer_size) if not l.startswith('>'))
h = md5(ref_seq.encode()).hexdigest()
fn = args.reference
args.reference = '%s_HASH_%s' % (fn.split('/')[-1].strip(), h)
args.ref_path = '%s/%s' % (args.viralmsa_dir, args.reference)
args.ref_genome_path = '%s/%s' % (args.ref_path, fn.split('/')[-1].strip())
if not isdir(args.ref_path):
makedirs(args.ref_path)
copy(fn, args.ref_genome_path)
else:
tmp = args.reference.lower().replace(' ','').replace('-','').replace('_','')
if REFS is not None and tmp in REFS:
args.reference = REFS[tmp]
args.reference = args.reference.upper()
args.ref_path = '%s/%s' % (args.viralmsa_dir, args.reference)
args.ref_genome_path = '%s/%s.fas' % (args.ref_path, args.reference)
# user args are valid, so return
return args
# download reference genome
def download_ref_genome(reference, ref_path, ref_genome_path, email, bufsize=DEFAULT_BUFSIZE):
if REFS is None:
print("ERROR: Unable to download reference genome if offline", file=sys.stderr); exit(1)
try:
from Bio import Entrez
except ModuleNotFoundError:
print("ERROR: Unable to import Biopython, which is needed to download a reference genome.\nInstall with: pip install biopython", file=sys.stderr); exit(1)
makedirs(ref_path, exist_ok=True); Entrez.email = email
try:
handle = Entrez.efetch(db='nucleotide', rettype='fasta', id=reference)
except:
raise RuntimeError("Encountered error when trying to download reference genome from NCBI. Perhaps the accession number is invalid?")
seq = handle.read()
if seq.count('>') != 1:
print("ERROR: Reference genome must only have a single sequence", file=sys.stderr); exit(1)
f = open(ref_genome_path, 'w', buffering=bufsize); f.write(seq.strip()); f.write('\n'); f.close()
# convert alignment (SAM/FASTA/PAF) to FASTA
def aln_to_fasta(out_aln_path, out_msa_path, ref_genome_path, omit_ref=False, bufsize=DEFAULT_BUFSIZE):
if out_aln_path.lower().endswith('.sam'):
aln_type = 'SAM'
elif out_aln_path.lower().endswith('.fas'):
aln_type = 'FASTA'
elif out_aln_path.lower().endswith('.paf'):
aln_type = 'PAF'
else:
print("ERROR: Invalid alignment extension: %s" % out_aln_path, file=sys.stderr); exit(1)
if out_msa_path is None:
msa = sys.stdout
else:
msa = open(out_msa_path, 'w', buffering=bufsize)
ref_header, ref_seq = list(iter_fasta(ref_genome_path))[0]; ref_seq_len = len(ref_seq)
if not omit_ref:
msa.write('>%s\n%s\n' % (ref_header, ref_seq))
num_output_IDs = 0
if aln_type == 'SAM':
for l in open(out_aln_path):
if l == '\n' or l[0] == '@':
continue
parts = l.split('\t')
flags = int(parts[1])
if flags != 0 and flags != 16:
continue
ID = parts[0].strip(); num_output_IDs += 1
ref_ind = int(parts[3])-1
seq = parts[9].strip()
cigar = parts[5].strip()
edits = parse_cigar(cigar)
msa.write(">%s\n" % ID)
if ref_ind > 0:
msa.write('-'*ref_ind) # write gaps before alignment
ind = 0; seq_len = ref_ind
for e, e_len in edits:
if e == 'M' or e == '=' or e == 'X': # (mis)match)
msa.write(seq[ind:ind+e_len])
ind += e_len; seq_len += e_len
elif e == 'D': # deletion (gap in query)
msa.write('-'*e_len)
seq_len += e_len
elif e == 'I': # insertion (gap in reference; ignore)
ind += e_len
elif e == 'S' or e == 'H': # starting/ending segment of query not in reference (i.e., span of insertions; ignore)
ind += e_len
if seq_len < ref_seq_len:
msa.write('-'*(ref_seq_len-seq_len)) # write gaps after alignment
msa.write('\n')
elif aln_type == 'FASTA':
for query in iter_fasta(out_aln_path):
msa.write('>%s\n%s\n' % query); num_output_IDs += 1
elif aln_type == 'PAF':
raise RuntimeError("PAF alignments are not yet supported")
else:
raise ValueError("Unknown alignment type: %s" % aln_type)
msa.close()
return num_output_IDs
# main content
def main():
# parse user args and prepare run
INPUT_TYPE = None
args = parse_args()
makedirs(args.viralmsa_dir, exist_ok=True)
makedirs(args.output)
global QUIET; QUIET = args.quiet
global LOGFILE; LOGFILE = open("%s/viralmsa.log" % args.output, 'w')
if args.sequences.lower().endswith('.sam'):
INPUT_TYPE = 'SAM'
num_input_IDs = count_IDs_sam(args.sequences, bufsize=args.buffer_size)
else: # assume FASTA input if not SAM
INPUT_TYPE = 'FASTA'
ALIGNERS[args.aligner]['check']()
num_input_IDs = count_IDs_fasta(args.sequences, bufsize=args.buffer_size)
# print run information
print_log("===== RUN INFORMATION =====")
print_log("ViralMSA Version: %s" % VERSION)
print_log("Sequences: %s" % args.sequences)
print_log("- %d sequences in input file" % num_input_IDs)
print_log("Reference: %s" % args.reference)
print_log("Email Address: %s" % args.email)
print_log("Output Directory: %s" % args.output)
if INPUT_TYPE == 'FASTA':
print_log("Aligner: %s" % args.aligner)
print_log("ViralMSA Cache Directory: %s" % args.viralmsa_dir)
print_log()
# download reference genome if not already downloaded
print_log("===== REFERENCE GENOME =====")
if isfile(args.ref_genome_path):
print_log("Reference genome found: %s" % args.ref_genome_path)
else:
print_log("Downloading reference genome from NCBI...")