forked from CompSynBioLab-KoreaUniv/FunGAP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
run_maker.py
executable file
·676 lines (573 loc) · 21.9 KB
/
run_maker.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
#!/usr/bin/env python3
'''
Run Maker
This scripts runs Maker four times with iterative SNAP gene model training,
including running GeneMark.
The parameters set by FunGAP are:
[Maker run1]
split_hit=5000
single_exon=1
single_length=50
correct_est_fusion=1
est=$OUTPUT_DIR/trans_trinity/trinity_rnaseq/Trinity_rnaseq.fasta
est2genome=1
model_org= # Remove default 'all' value
rmlib=$OUTPUT_DIR/repeat_modeler/RM_[number].[date]/consensi.fa.classified
[Maker run2]
split_hit=5000
single_exon=1
single_length=50
correct_est_fusion=1
model_org= # Remove default 'all' value
repeat_protein= # Remove default 'te_proteins.fasta' value
snaphmm=$OUTPUT_DIR/maker_out/rnaseq/maker_run2/snp_training/snap_hmm_v1.hmm
maker_gff=$OUTPUT_DIR/maker_out/rnaseq/maker_run1/genome_assembly.all.gff
est_pass=1 # To save computing time
protein_pass=1
rm_pass=1
[Maker run3]
split_hit=5000
single_exon=1
single_length=50
correct_est_fusion=1
model_org= # Remove default 'all' value
repeat_protein= # Remove default 'te_proteins.fasta' value
snaphmm=$OUTPUT_DIR/maker_out/rnaseq/maker_run2/snp_training/snap_hmm_v2.hmm
maker_gff=$OUTPUT_DIR/maker_out/rnaseq/maker_run2/genome_assembly.all.gff
est_pass=1
protein_pass=1
rm_pass=1
[Maker run4]
split_hit=5000
single_exon=1
single_length=50
correct_est_fusion=1
model_org= # Remove default 'all' value
repeat_protein= # Remove default 'te_proteins.fasta' value
snaphmm=$OUTPUT_DIR/maker_out/rnaseq/maker_run2/snp_training/snap_hmm_v2.hmm
maker_gff=$OUTPUT_DIR/maker_out/rnaseq/maker_run2/genome_assembly.all.gff
est_pass=1
protein_pass=1
rm_pass=1
keep_preds=1
augustus_species=augustus_species
gmhmm=$OUTPUT_DIR/genemark_out/output/gmhmm.mod
Last updated: Aug 12, 2020
'''
import os
import re
from argparse import ArgumentParser
from glob import glob
from shutil import copyfile
from import_config import import_config
from set_logging import set_logging
# Parameters
D_CONF = import_config()
GFF3_TRANSLATION_SCRIPT = 'gff3_translation.py'
def main():
'''Main function'''
optparse_usage = (
'run_maker.py -i <input_fasta> -p <protein_db_fasta> -c <num_cores> '
'-R <repeat_model> -e <est_files>'
)
parser = ArgumentParser(usage=optparse_usage)
parser.add_argument(
'-i', '--input_fasta', nargs=1, required=True,
help='Input genome sequence in FASTA format'
)
parser.add_argument(
'-a', '--augustus_species', nargs=1, required=True,
help='"augustus --species=help" would be helpful'
)
parser.add_argument(
'-p', '--protein_db_fasta', nargs='+', required=True,
help='Protein db in FASTA foramt'
)
parser.add_argument(
'-R', '--repeat_model', nargs=1, required=True,
help='De novo repeat model by RepeatModeler: consensi.fa.classified'
)
parser.add_argument(
'-e', '--est_files', nargs='+', required=True,
help='Multiple EST data if available'
)
parser.add_argument(
'-o', '--output_dir', nargs='?', default='maker_out',
help='Output directory'
)
parser.add_argument(
'-c', '--num_cores', nargs='?', default=1, type=int,
help='Number of cores to be used'
)
parser.add_argument(
'-l', '--log_dir', nargs='?', default='logs',
help='Log directory'
)
parser.add_argument(
'-t', '--translation_table', nargs='?', default=1, type=int,
help='Translation table (default: 1)'
)
parser.add_argument(
'--gmes_fungus', action='store_true',
help='--fungus flag in GeneMark'
)
args = parser.parse_args()
input_fasta = os.path.abspath(args.input_fasta[0])
output_dir = os.path.abspath(args.output_dir)
log_dir = os.path.abspath(args.log_dir)
augustus_species = args.augustus_species[0]
protein_db_fastas = [os.path.abspath(x) for x in args.protein_db_fasta]
num_cores = args.num_cores
repeat_model = os.path.abspath(args.repeat_model[0])
est_files = [os.path.abspath(x) for x in args.est_files]
translation_table = args.translation_table
if args.gmes_fungus:
gmes_fungus = '--fungus'
else:
gmes_fungus = ''
# Create necessary directory
create_dir(output_dir, log_dir)
# Set logging
log_file = os.path.join(log_dir, 'run_maker.log')
logger = set_logging(log_file)
logger_time, logger_txt = logger
# Run Maker on each EST file
all_gff_file = ''
for est_file in est_files:
# Create directory
est_prefix = os.path.basename(os.path.splitext(est_file)[0])
est_prefix = est_prefix.replace('Trinity_', '')
est_dir = os.path.join(output_dir, est_prefix)
if not glob(est_dir):
os.mkdir(est_dir)
# Check maker is already done
run_flag_run1 = check_maker_finished(
output_dir, input_fasta, '1', est_prefix
)
# Run Maker batch
logger_time.debug('START running Maker run1')
if run_flag_run1:
run_maker_batch(
input_fasta, output_dir, log_dir, protein_db_fastas,
num_cores, repeat_model, est_file, all_gff_file, logger
)
else:
logger_txt.debug('[Note] Running Maker has already been finished')
logger_time.debug('DONE running Maker run1')
# Train run1 & run Maker run2
all_gff_file_run1 = collect_result(
input_fasta, output_dir, '1', est_prefix, logger
)
logger_time.debug('START training run1 & running maker run2')
snap_hmm_file_run1 = train_snap(
output_dir, all_gff_file_run1, '1', est_prefix, logger
)
run_flag_run2 = check_maker_finished(
output_dir, input_fasta, '2', est_prefix
)
if run_flag_run2:
run_maker_trained(
input_fasta, output_dir, log_dir, augustus_species, num_cores,
snap_hmm_file_run1, all_gff_file_run1, '2', est_prefix, logger
)
else:
logger_txt.debug('[Note] Running Maker has already been finished')
logger_time.debug('DONE training run1 & running maker run2')
# Train run2 & run Maker run3
all_gff_file_run2 = collect_result(
input_fasta, output_dir, '2', est_prefix, logger
)
logger_time.debug('START training run2 & running maker run3')
snap_hmm_file_run2 = train_snap(
output_dir, all_gff_file_run2, '2', est_prefix, logger
)
run_flag_run3 = check_maker_finished(
output_dir, input_fasta, '3', est_prefix
)
if run_flag_run3:
run_maker_trained(
input_fasta, output_dir, log_dir, augustus_species, num_cores,
snap_hmm_file_run2, all_gff_file_run2, '3', est_prefix, logger
)
else:
logger_txt.debug('[Note] Running Maker has already been finished')
logger_time.debug('DONE training run2 & running maker run3')
# Now, for final run, get masked assembly and get GeneMark hmm model
masked_assembly = get_masked_asm(output_dir, est_files, logger)
# Run gmes or gmsn
eukgmhmmfile = run_gmes(
masked_assembly, num_cores, output_dir, log_dir, gmes_fungus, logger
)
# Train run3 & run Maker run4
all_gff_file_run3 = collect_result(
input_fasta, output_dir, '3', est_prefix, logger
)
logger_time.debug('START training run3 & running maker run4')
snap_hmm_file_run3 = train_snap(
output_dir, all_gff_file_run3, '3', est_prefix, logger
)
run_flag_run4 = check_maker_finished(
output_dir, input_fasta, '4', est_prefix
)
if run_flag_run4:
run_maker_trained(
input_fasta, output_dir, log_dir, augustus_species, num_cores,
snap_hmm_file_run3, all_gff_file_run3, '4', est_prefix, logger,
eukgmhmmfile
)
else:
logger_txt.debug('[Note] Running Maker has already been finished')
logger_time.debug('DONE training run3 & running maker run4')
# Get final GFF3 & FASTA
collect_result_final(
input_fasta, output_dir, est_prefix, translation_table, logger
)
all_gff_file = collect_result(
input_fasta, output_dir, '4', est_prefix, logger
)
def import_file(input_file):
'''Import file'''
with open(input_file) as f_in:
txt = list(line.rstrip() for line in f_in)
return txt
def replace(fname, srcstr, deststr):
'''Replace'''
f_in = open(fname)
txt = f_in.read()
txt = re.subn(r'\n{}.+'.format(srcstr), '\n{}'.format(deststr), txt)[0]
f_out = open(fname, 'w')
f_out.write(txt)
f_out.close()
def create_dir(output_dir, log_dir):
'''Create directories'''
if not glob(output_dir):
os.mkdir(output_dir)
if not glob(log_dir):
os.mkdir(log_dir)
gmes_dir = os.path.join(output_dir, 'genemark_out')
if not glob(gmes_dir):
os.mkdir(gmes_dir)
def check_maker_finished(output_dir, input_fasta, version, prefix):
'''Check if maker is finished'''
# For first run
index_log_file = glob(os.path.join(
output_dir, prefix,
'maker_run{}/*output/*master_datastore_index.log'.format(version)
))
if not index_log_file:
return True
index_log = import_file(index_log_file[0])
finished_scaffolds = []
for line in index_log:
line_split = line.split('\t')
finish_tag = line_split[2]
if finish_tag != 'FINISHED':
continue
finished_scaffold = line_split[0]
finished_scaffolds.append(finished_scaffold)
fasta = import_file(input_fasta)
fasta_scaffolds = []
for line in fasta:
if not re.search('^>', line):
continue
fasta_scaffold = line.split(' ')[0].replace('>', '')
fasta_scaffolds.append(fasta_scaffold)
if finished_scaffolds == fasta_scaffolds:
return False
else:
return True
def run_gmes(
masked_assembly, num_cores, output_dir, log_dir, gmes_fungus, logger):
'''Run GeneMark-ES'''
genemark_bin = D_CONF['GENEMARK_PATH']
# Run gm_es.pl
gmes_dir = os.path.join(output_dir, 'genemark_out')
output_gmes = os.path.join(gmes_dir, 'output/gmhmm.mod')
log_file = os.path.join(log_dir, 'gmes.log')
logger_time, logger_txt = logger
logger_time.debug('START ruuning gmes to build hmm')
if not glob(output_gmes):
os.chdir(gmes_dir)
command = (
'{} --ES {} --cores {} --sequence {} --soft_mask auto > '
'{} 2>&1'.format(
genemark_bin, gmes_fungus, num_cores, masked_assembly,
log_file
)
)
logger_txt.debug('[Run] %s', command)
os.system(command)
else:
logger_txt.debug('[Note] GMES has already been finished')
logger_time.debug('DONE running gmes to build hmm')
return output_gmes
def run_maker_batch(
input_fasta, output_dir, log_dir, protein_db_fastas, num_cores,
repeat_model, est_file, all_gff_file, logger):
'''Run Maker batch'''
# Get binary
maker_bin = D_CONF['MAKER_PATH']
est_prefix = os.path.basename(os.path.splitext(est_file)[0])
est_prefix = est_prefix.replace('Trinity_', '')
# Change directory
maker_run1_dir = os.path.join(output_dir, est_prefix, 'maker_run1')
if not glob(maker_run1_dir):
os.mkdir(maker_run1_dir)
# Change directory
os.chdir(maker_run1_dir)
# Make CTL files
os.system('{} -CTL'.format(maker_bin))
# Editting maker_opts.ctl - general
replace('maker_opts.ctl', 'genome= ', 'genome={} '.format(input_fasta))
replace(
'maker_opts.ctl', 'protein= ',
'protein={} '.format(','.join(protein_db_fastas))
)
replace('maker_opts.ctl', 'cpus=1', 'cpus={}'.format(num_cores))
replace('maker_opts.ctl', 'clean_up=0', 'clean_up=1')
# For fungal genome
replace('maker_opts.ctl', 'split_hit=', 'split_hit=5000')
replace('maker_opts.ctl', 'single_exon=', 'single_exon=1')
replace('maker_opts.ctl', 'single_length=', 'single_length=50')
replace('maker_opts.ctl', 'correct_est_fusion=', 'correct_est_fusion=1')
# If EST is provided
if est_file != '':
replace('maker_opts.ctl', 'est= ', 'est={} '.format(est_file))
replace('maker_opts.ctl', 'est2genome=0 ', 'est2genome=1 ')
# Set repeat model
replace('maker_opts.ctl', 'model_org=all', 'model_org=')
# Run faster feed aligned transcripts, proteins, repeat masking
if all_gff_file:
replace(
'maker_opts.ctl', 'maker_gff= ',
'maker_gff={} '.format(all_gff_file)
)
replace('maker_opts.ctl', 'protein_pass=0', 'protein_pass=1')
replace('maker_opts.ctl', 'rm_pass=0', 'rm_pass=1')
replace(
'maker_opts.ctl', 'repeat_protein=', 'repeat_protein='
)
else:
replace(
'maker_opts.ctl', 'rmlib= ', 'rmlib={}'.format(repeat_model)
)
# Run maker
maker_log = os.path.join(log_dir, 'maker_{}_run1.log'.format(est_prefix))
command = '{} -fix_nucleotides > {} 2>&1'.format(maker_bin, maker_log)
logger_txt = logger[1]
logger_txt.debug('[Run] %s', command)
os.system(command)
def run_maker_trained(
input_fasta, output_dir, log_dir, augustus_species, num_cores,
snap_hmm_file, all_gff_file, version, prefix, logger,
eukgmhmmfile=None):
'''Run maker'''
# Get binary
maker_bin = D_CONF['MAKER_PATH']
# Create directory
maker_run_dir = os.path.join(
output_dir, prefix, 'maker_run{}'.format(version)
)
if not glob(maker_run_dir):
os.mkdir(maker_run_dir)
# Change directory
os.chdir(maker_run_dir)
# Make CTL files
os.system('{} -CTL'.format(maker_bin))
# Editting maker_opts.ctl - general
replace('maker_opts.ctl', 'genome= ', 'genome={} '.format(input_fasta))
replace('maker_opts.ctl', 'cpus=1', 'cpus={}'.format(num_cores))
# For fungal genome
replace('maker_opts.ctl', 'split_hit=', 'split_hit=5000')
replace('maker_opts.ctl', 'single_exon=', 'single_exon=1')
replace('maker_opts.ctl', 'single_length=', 'single_length=50')
replace('maker_opts.ctl', 'correct_est_fusion=', 'correct_est_fusion=1')
# Remove repeat org
replace('maker_opts.ctl', 'model_org=all', 'model_org=')
replace('maker_opts.ctl', 'repeat_protein=', 'repeat_protein=')
# Supply SNAP HMM v1
replace('maker_opts.ctl', 'snaphmm= ', 'snaphmm={} '.format(snap_hmm_file))
# Run faster feed aligned transcripts, proteins, repeat masking
replace(
'maker_opts.ctl', 'maker_gff= ', 'maker_gff={} '.format(all_gff_file)
)
replace('maker_opts.ctl', 'est_pass=0', 'est_pass=1')
replace('maker_opts.ctl', 'protein_pass=0', 'protein_pass=1')
replace('maker_opts.ctl', 'rm_pass=0', 'rm_pass=1')
# Program paths
for program in [
'makeblastdb', 'blastn', 'blastx', 'tblastx', 'RepeatMasker',
'exonerate', 'snap', 'augustus', 'tRNAscan-SE', 'snoscan']:
replace('maker_exe.ctl', '{}='.format(program), '{}={}'.format(
program, os.path.join(os.path.dirname(maker_bin), program)
))
# Last run, keep_preds=1
if version == '4':
replace('maker_opts.ctl', 'keep_preds=0', 'keep_preds=1')
# Set AUGUSTUS species
replace(
'maker_opts.ctl', 'augustus_species= ',
'augustus_species={} '.format(augustus_species)
)
# Set gmhmm
replace('maker_opts.ctl', 'gmhmm= ', 'gmhmm={} '.format(eukgmhmmfile))
replace(
'maker_exe.ctl', 'gmhmme3= ',
'gmhmme3={} '.format(D_CONF['GMHMME3_PATH'])
)
replace(
'maker_exe.ctl', 'probuild= ',
'probuild={} '.format(D_CONF['PROBUILD_PATH'])
)
# Run maker
maker_log = os.path.join(
log_dir, 'maker_{}_run{}.log'.format(prefix, version)
)
command = '{} -fix_nucleotides > {} 2>&1'.format(maker_bin, maker_log)
logger_txt = logger[1]
logger_txt.debug('[Run] %s', command)
os.system(command)
def collect_result(input_fasta, output_dir, version, prefix, logger):
'''Collect results'''
maker_run_dir = os.path.join(
output_dir, prefix, 'maker_run{}'.format(version)
)
input_prefix = (os.path.splitext(os.path.basename(input_fasta))[0])
index_file = os.path.join(
maker_run_dir,
'{0}.maker.output/{0}_master_datastore_index.log'.format(input_prefix)
)
# Change directory to maker_run_dir
gff3_merge_bin = D_CONF['GFF3_MERGE_PATH']
os.chdir(maker_run_dir)
command = '{} -d {}'.format(gff3_merge_bin, index_file)
logger_txt = logger[1]
logger_txt.debug('[Run] %s', command)
os.system(command)
all_gff_file = '{}.all.gff'.format(input_prefix)
all_gff_file_abs = os.path.abspath(all_gff_file)
os.chdir(output_dir)
return all_gff_file_abs
def collect_result_final(
input_fasta, output_dir, prefix, translation_table, logger):
'''Collect results'''
maker_run_dir = os.path.join(output_dir, prefix, 'maker_run4')
input_prefix = (os.path.splitext(os.path.basename(input_fasta))[0])
index_file = os.path.join(
maker_run_dir,
'{0}.maker.output/{0}_master_datastore_index.log'.format(input_prefix)
)
# Change directory to maker_run_dir
os.chdir(maker_run_dir)
gff3_merge_bin = D_CONF['GFF3_MERGE_PATH']
command1 = '{} -g -n -d {}'.format(gff3_merge_bin, index_file)
logger_txt = logger[1]
logger_txt.debug('[Run] %s', command1)
os.system(command1)
# Copy to maker root directory
maker_root = os.path.join(output_dir, prefix)
merged_gff3 = os.path.join(
maker_root, 'maker_run4', '{}.all.gff'.format(input_prefix)
)
output_gff3 = os.path.join(maker_root, 'maker_{}.gff3'.format(prefix))
copyfile(merged_gff3, output_gff3)
output_faa = os.path.join(maker_root, 'maker_{}.faa'.format(prefix))
if translation_table == 1:
# Collect FASTA, too
fasta_merge_bin = D_CONF['FASTA_MERGE_PATH']
command2 = '{} -d {}'.format(fasta_merge_bin, index_file)
logger_txt.debug('[Run] %s', command2)
os.system(command2)
merged_faa = os.path.join(
maker_root, 'maker_run4',
'{}.all.maker.proteins.fasta'.format(input_prefix)
)
copyfile(merged_faa, output_faa)
else:
# Translate with the given translation table
this_path = os.path.realpath(__file__)
this_dir = os.path.dirname(this_path)
gff3_translation_path = os.path.join(this_dir, GFF3_TRANSLATION_SCRIPT)
command3 = 'python {} -a {} -g {} -t {} -o {}'.format(
gff3_translation_path, input_fasta, output_gff3, translation_table,
output_faa
)
logger_txt.debug('[Run] %s', command3)
os.system(command3)
os.chdir(output_dir)
def train_snap(output_dir, all_gff_file, version, prefix, logger):
'''Train SNAP'''
maker_run_dir = os.path.join(
output_dir, prefix, 'maker_run{}'.format(version)
)
maker2zff_bin = D_CONF['MAKER2ZFF_PATH']
fathom_bin = D_CONF['FATHOM_PATH']
forge_bin = D_CONF['FORGE_PATH']
hmm_assembler_bin = D_CONF['HMM_ASSEMBLER_PATH']
# Change directory into Maker run1 directory
os.chdir(maker_run_dir)
if not os.path.exists('snp_training'):
os.makedirs('snp_training')
os.chdir('snp_training')
snap_hmm_file = os.path.abspath('snap_hmm_v{}.hmm'.format(version))
logger_txt = logger[1]
if not os.path.exists(snap_hmm_file):
# Run maker2zff to select a subset of gene models for training
command1 = '{} -n {}'.format(maker2zff_bin, all_gff_file)
logger_txt.debug('[Run] %s', command1)
os.system(command1)
# It generates genome.dna and genome.ann
# split the annotations into four categories: unique genes, warnings,
# alternative spliced genes, overlapping genes, and errors
command2 = '{} -categorize 1000 genome.ann genome.dna'.format(
fathom_bin
)
logger_txt.debug('[Run] %s', command2)
os.system(command2)
# Export the genes
command3 = '{} -export 1000 -plus uni.ann uni.dna'.format(fathom_bin)
logger_txt.debug('[Run] %s', command3)
os.system(command3)
# Create directory
if not os.path.exists('parameters'):
os.makedirs('parameters')
# Change directory
os.chdir('parameters')
# Generate the new parameters with forge
command4 = '{} ../export.ann ../export.dna'.format(forge_bin)
logger_txt.debug('[Run] %s', command4)
os.system(command4)
# Generate the new HMM
os.chdir('..')
command5 = '{0} snap_hmm_v{1} parameters > snap_hmm_v{1}.hmm'.format(
hmm_assembler_bin, version
)
logger_txt.debug('[Run] %s', command5)
os.system(command5)
else:
logger_txt.debug(
'[Note] SNAP training has been alread finished for %s',
os.path.basename(snap_hmm_file)
)
os.chdir(output_dir)
return snap_hmm_file
def get_masked_asm(output_dir, est_files, logger):
'''Get masked assembly'''
est_prefix_first = (
os.path.basename(os.path.splitext(est_files[0])[0])
.replace('Trinity_', '')
)
maker_run_dir = os.path.join(
output_dir, est_prefix_first, 'maker_run3'
)
# masked_asm_files = glob(masked_asm_path)
masked_asm = os.path.join(output_dir, 'masked_assembly.fasta')
command = 'find {} -name "query.masked.fasta" | xargs cat > {}'.format(
maker_run_dir, masked_asm
)
logger_txt = logger[1]
logger_txt.debug('[Run] %s', command)
os.system(command)
return masked_asm
if __name__ == '__main__':
main()