forked from google/deepvariant
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrun_deeptrio.py
600 lines (522 loc) · 23.3 KB
/
run_deeptrio.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
# Copyright 2020 Google LLC.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# 1. Redistributions of source code must retain the above copyright notice,
# this list of conditions and the following disclaimer.
#
# 2. Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in the
# documentation and/or other materials provided with the distribution.
#
# 3. Neither the name of the copyright holder nor the names of its
# contributors may be used to endorse or promote products derived from this
# software without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.
"""Runs all 3 steps to go from input DNA reads_child to output VCF/gVCF files.
This script currently provides the most common use cases and standard models.
If you want to access more flags that are available in `make_examples`,
`call_variants`, and `postprocess_variants`, you can also call them separately
using the binaries in the Docker image.
"""
import os
import subprocess
import sys
import tempfile
from absl import app
from absl import flags
from absl import logging
FLAGS = flags.FLAGS
# Required flags.
flags.DEFINE_enum(
'model_type', None, ['WGS', 'WES', 'PACBIO', 'HYBRID_PACBIO_ILLUMINA'],
'Required. Type of model to use for variant calling. Each '
'model_type has an associated default model, which can be '
'overridden by the --customized_model flag.')
flags.DEFINE_string(
'ref', None,
'Required. Genome reference to use. Must have an associated FAI index as '
'well. Supports text or gzipped references. Should match the reference '
'used to align the BAM file provided to --reads_child.')
flags.DEFINE_string(
'reads_child', None,
'Required. Aligned, sorted, indexed BAM file containing the reads we want '
'to call. Should be aligned to a reference genome compatible with --ref.')
flags.DEFINE_string(
'reads_parent1', None,
'Required. Aligned, sorted, indexed BAM file containing parent 1 reads of '
'the person we want to call. Should be aligned to a reference genome '
'compatible with --ref.')
flags.DEFINE_string(
'reads_parent2', None,
'Aligned, sorted, indexed BAM file containing parent 2 reads of '
'the person we want to call. Should be aligned to a reference genome '
'compatible with --ref.')
flags.DEFINE_string(
'output_vcf_child', None,
'Required. Path where we should write VCF file for the child.')
flags.DEFINE_string(
'output_vcf_parent1', None,
'Required. Path where we should write VCF file for parent1.')
flags.DEFINE_string(
'output_vcf_parent2', None,
'Required. Path where we should write VCF file for parent2.')
# Optional flags.
flags.DEFINE_string(
'intermediate_results_dir', None,
'Optional. If specified, this should be an existing '
'directory that is visible insider docker, and will be '
'used to to store intermediate outputs.')
flags.DEFINE_boolean(
'version',
None,
'Optional. If true, print out version number and exit.',
allow_hide_cpp=True)
flags.DEFINE_string('logging_dir', None,
'Required. Directory where we should write log files.')
# Optional flags for call_variants.
flags.DEFINE_string(
'customized_model', None,
'Optional. A path to a model checkpoint to load for the `call_variants` '
'step. If not set, the default for each --model_type will be used')
# Optional flags for make_examples.
flags.DEFINE_integer('num_shards', 1,
'Optional. Number of shards for make_examples step.')
flags.DEFINE_string(
'regions', None,
'Optional. Space-separated list of regions we want to process. Elements '
'can be region literals (e.g., chr20:10-20) or paths to BED/BEDPE files.')
flags.DEFINE_string(
'sample_name_child', None,
'Sample name to use for our sample_name in the output '
'Variant/DeepVariantCall protos. If not specified, will be inferred from '
'the header information from --reads_child.')
flags.DEFINE_string(
'sample_name_parent1', None,
'Parent1 Sample name to use for our sample_name in the output '
'Variant/DeepVariantCall protos. If not specified, will be inferred from '
'the header information from --reads_parent1.')
flags.DEFINE_string(
'sample_name_parent2', None,
'Parent2 Sample name to use for our sample_name in the output '
'Variant/DeepVariantCall protos. If not specified, will be inferred from '
'the header information from --reads_parent2.')
flags.DEFINE_boolean(
'use_hp_information', None,
'Optional. If True, corresponding flags will be set to properly use the HP '
'information present in the BAM input.')
flags.DEFINE_string(
'make_examples_extra_args', None,
'A comma-separated list of flag_name=flag_value. "flag_name" has to be '
'valid flags for make_examples.py. If the flag_value is boolean, it has to '
'be flag_name=true or flag_name=false.')
flags.DEFINE_string(
'call_variants_extra_args', None,
'A comma-separated list of flag_name=flag_value. "flag_name" has to be '
'valid flags for call_variants.py. If the flag_value is boolean, it has to '
'be flag_name=true or flag_name=false.')
flags.DEFINE_string(
'postprocess_variants_extra_args', None,
'A comma-separated list of flag_name=flag_value. "flag_name" has to be '
'valid flags for calpostprocess_variants.py. If the flag_value is boolean, '
'it has to be flag_name=true or flag_name=false.')
# Optional flags for postprocess_variants.
flags.DEFINE_string(
'output_gvcf_child', None,
'Optional. Path where we should write gVCF file for child sample.')
flags.DEFINE_string(
'output_gvcf_parent1', None,
'Optional. Path where we should write gVCF file for parent1 sample.')
flags.DEFINE_string(
'output_gvcf_parent2', None,
'Optional. Path where we should write gVCF file for parent2 sample.')
flags.DEFINE_string(
'output_gvcf_merged', None,
'Optional. Path where we should write gVCF with all samples merged.')
flags.DEFINE_boolean(
'vcf_stats_report', True, 'Optional. Output a visual report (HTML) of '
'statistics about the output VCF.')
MODEL_TYPE_MAP = {
'WGS_child': '/opt/models/deeptrio/wgs/child/model.ckpt',
'WGS_parent': '/opt/models/deeptrio/wgs/parent/model.ckpt',
'WES_child': '/opt/models/deeptrio/wes/child/model.ckpt',
'WES_parent': '/opt/models/deeptrio/wes/parent/model.ckpt',
'PACBIO_child': '/opt/models/deeptrio/pacbio/child/model.ckpt',
'PACBIO_parent': '/opt/models/deeptrio/pacbio/parent/model.ckpt',
}
# Current release version of DeepTrio.
# Should be the same in dv_vcf_constants.py.
DEEP_TRIO_VERSION = '1.1.0'
GLNEXUS_VERSION = 'v1.2.7'
DEEP_TRIO_WGS_PILEUP_HEIGHT_CHILD = 60
DEEP_TRIO_WGS_PILEUP_HEIGHT_PARENT = 40
DEEP_TRIO_WES_PILEUP_HEIGHT_CHILD = 100
DEEP_TRIO_WES_PILEUP_HEIGHT_PARENT = 100
CHILD = 'child'
PARENT1 = 'parent1'
PARENT2 = 'parent2'
CALL_VARIANTS_OUTPUT_COMMON_SUFFIX = 'tfrecord.gz'
NO_VARIANT_TFRECORD_SUFFIX = 'tfrecord.gz'
EXAMPLES_NAME_PATTERN = '{}_{}.{}'
CALL_VARIANTS_OUTPUT_PATTERN = '{}_{}.{}'
NO_VARIANT_TFRECORD_PATTERN = '{}_{}.{}'
def call_variants_output_common_prefix(intermediate_results_dir):
return os.path.join(intermediate_results_dir, 'call_variants_output')
def examples_common_suffix(num_shards):
return 'tfrecord@{}.gz'.format(num_shards)
def examples_common_prefix(intermediate_results_dir):
return os.path.join(intermediate_results_dir, 'make_examples')
def nonvariant_site_tfrecord_common_suffix(intermediate_results_dir):
return os.path.join(intermediate_results_dir, 'gvcf')
def examples_common_name(intermediate_results_dir, num_shards):
return '{}.{}'.format(
examples_common_prefix(intermediate_results_dir),
examples_common_suffix(num_shards))
def _is_quoted(value):
if value.startswith('"') and value.endswith('"'):
return True
if value.startswith("'") and value.endswith("'"):
return True
return False
def _add_quotes(value):
if isinstance(value, str) and _is_quoted(value):
return value
return '"{}"'.format(value)
def _extra_args_to_dict(extra_args):
"""Parses comma-separated list of flag_name=flag_value to dict."""
args_dict = {}
if extra_args is None:
return args_dict
for extra_arg in extra_args.split(','):
(flag_name, flag_value) = extra_arg.split('=')
# Check for boolean values.
if flag_value.lower() == 'true':
flag_value = True
elif flag_value.lower() == 'false':
flag_value = False
args_dict[flag_name] = flag_value
return args_dict
def _extend_command_by_args_dict(command, extra_args):
"""Adds `extra_args` to the command string."""
for key in sorted(extra_args):
value = extra_args[key]
if value is None:
continue
if isinstance(value, bool):
added_arg = '' if value else 'no'
added_arg += key
command.extend(['--' + added_arg])
else:
command.extend(['--' + key, _add_quotes(value)])
return command
def _update_kwargs_with_warning(kwargs, extra_args, conflict_args=None):
"""Updates `kwargs` with `extra_args`; crashes if `conflict_args` changed."""
for k, v in extra_args.items():
if k in kwargs:
if conflict_args is not None and k in conflict_args and kwargs[k] != v:
raise ValueError('The extra_args "{}" conflicts with other flags. '
'Please fix and try again. '
'Starting in v1.1.0, if you are running with '
'PACBIO and want to use HP tags, please use the new '
'--use_hp_information flag instead of using '
'`--make_examples_extra_args="sort_by_haplotypes=true,'
'parse_sam_aux_fields=true"`'.format(k))
print('\nWarning: --{} is previously set to {}, now to {}.'.format(
k, kwargs[k], v))
kwargs[k] = v
return kwargs
def make_examples_command(ref, reads_child, reads_parent1, reads_parent2,
examples, sample_name_child, sample_name_parent1,
sample_name_parent2, extra_args, **kwargs):
"""Returns a make_examples command for subprocess.check_call.
Args:
ref: Input FASTA file.
reads_child: Input BAM file for child.
reads_parent1: Input BAM file for parent1.
reads_parent2: Input BAM file for parent2.
examples: Output tfrecord files suffix.
sample_name_child: Sample name to use for child.
sample_name_parent1: Sample name for parent1.
sample_name_parent2: Sample name for parent2.
extra_args: Comma-separated list of flag_name=flag_value.
**kwargs: Additional arguments to pass in for make_examples.
Returns:
(string) A command to run.
"""
command = [
'time', 'seq 0 {} |'.format(FLAGS.num_shards - 1),
'parallel -q --halt 2 --line-buffer',
'/opt/deepvariant/bin/deeptrio/make_examples'
]
command.extend(['--mode', 'calling'])
command.extend(['--ref', '"{}"'.format(ref)])
if FLAGS.reads_parent1 is not None:
command.extend(['--reads_parent1', '"{}"'.format(reads_parent1)])
if FLAGS.reads_parent2 is not None:
command.extend(['--reads_parent2', '"{}"'.format(reads_parent2)])
command.extend(['--reads', '"{}"'.format(reads_child)])
command.extend(['--examples', '"{}"'.format(examples)])
command.extend(['--sample_name', '"{}"'.format(sample_name_child)])
if FLAGS.sample_name_parent1 is not None:
command.extend(
['--sample_name_parent1', '"{}"'.format(sample_name_parent1)])
if FLAGS.sample_name_parent2 is not None:
command.extend(
['--sample_name_parent2', '"{}"'.format(sample_name_parent2)])
special_args = {}
special_args['pileup_image_height_child'] = DEEP_TRIO_WGS_PILEUP_HEIGHT_CHILD
special_args[
'pileup_image_height_parent'] = DEEP_TRIO_WGS_PILEUP_HEIGHT_PARENT
conflict_args = None
if FLAGS.model_type == 'PACBIO':
special_args['realign_reads'] = False
special_args['vsc_min_fraction_indels'] = 0.12
special_args['alt_aligned_pileup'] = 'diff_channels'
special_args['sort_by_haplotypes'] = special_args[
'parse_sam_aux_fields'] = bool(FLAGS.use_hp_information)
kwargs = _update_kwargs_with_warning(kwargs, special_args)
conflict_args = ['sort_by_haplotypes', 'parse_sam_aux_fields']
if FLAGS.model_type == 'WES':
special_args[
'pileup_image_height_child'] = DEEP_TRIO_WES_PILEUP_HEIGHT_CHILD
special_args[
'pileup_image_height_parent'] = DEEP_TRIO_WES_PILEUP_HEIGHT_PARENT
kwargs = _update_kwargs_with_warning(kwargs, special_args)
# Extend the command with all items in kwargs and extra_args.
kwargs = _update_kwargs_with_warning(kwargs, _extra_args_to_dict(extra_args),
conflict_args)
command = _extend_command_by_args_dict(command, kwargs)
command.extend(['--task {}'])
if FLAGS.logging_dir:
command.extend(
['2>&1 | tee {}/make_examples.log'.format(FLAGS.logging_dir)])
return ' '.join(command)
def call_variants_command(outfile, examples, model_ckpt, sample, extra_args):
"""Returns a call_variants command for subprocess.check_call."""
command = ['time', '/opt/deepvariant/bin/call_variants']
command.extend(['--outfile', '"{}"'.format(outfile)])
command.extend(['--examples', '"{}"'.format(examples)])
command.extend(['--checkpoint', '"{}"'.format(model_ckpt)])
# Extend the command with all items in extra_args.
command = _extend_command_by_args_dict(command,
_extra_args_to_dict(extra_args))
if FLAGS.logging_dir:
command.extend([
'2>&1 | tee {}/call_variants_{}.log'.format(FLAGS.logging_dir, sample)
])
return ' '.join(command)
def postprocess_variants_command(ref,
infile,
outfile,
sample,
extra_args,
nonvariant_site_tfrecord_path=None,
gvcf_outfile=None,
vcf_stats_report=True):
"""Returns a postprocess_variants command for subprocess.check_call."""
command = ['time', '/opt/deepvariant/bin/postprocess_variants']
command.extend(['--ref', '"{}"'.format(ref)])
command.extend(['--infile', '"{}"'.format(infile)])
command.extend(['--outfile', '"{}"'.format(outfile)])
if nonvariant_site_tfrecord_path is not None:
command.extend([
'--nonvariant_site_tfrecord_path',
'"{}"'.format(nonvariant_site_tfrecord_path)
])
if gvcf_outfile is not None:
command.extend(['--gvcf_outfile', '"{}"'.format(gvcf_outfile)])
if not vcf_stats_report:
command.extend(['--novcf_stats_report'])
# Extend the command with all items in extra_args.
command = _extend_command_by_args_dict(command,
_extra_args_to_dict(extra_args))
if FLAGS.logging_dir:
command.extend([
'2>&1 | tee {}/postprocess_variants_{}.log'.format(
FLAGS.logging_dir, sample)
])
return ' '.join(command)
def check_or_create_intermediate_results_dir(intermediate_results_dir):
"""Checks or creates the path to the directory for intermediate results."""
if intermediate_results_dir is None:
intermediate_results_dir = tempfile.mkdtemp()
if not os.path.isdir(intermediate_results_dir):
logging.info('Creating a directory for intermediate results in %s',
intermediate_results_dir)
os.makedirs(intermediate_results_dir)
else:
logging.info('Re-using the directory for intermediate results in %s',
intermediate_results_dir)
return intermediate_results_dir
def check_flags():
"""Additional logic to make sure flags are set appropriately."""
if FLAGS.customized_model is not None:
logging.info(
'You set --customized_model. Instead of using the default '
'model for %s, `call_variants` step will load %s '
'instead.', FLAGS.model_type, FLAGS.customized_model)
if FLAGS.use_hp_information and FLAGS.model_type != 'PACBIO':
raise ValueError('--use_hp_information can only be used with '
'--model_type="PACBIO"')
def get_model_ckpt(model_type, customized_model):
"""Return the path to the model checkpoint based on the input args."""
if customized_model is not None:
return customized_model
else:
return MODEL_TYPE_MAP[model_type]
def generate_call_variants_command(sample, model_ckpt,
intermediate_results_dir):
"""Helper fuction generate call_variants command line."""
return call_variants_command(
CALL_VARIANTS_OUTPUT_PATTERN.format(
call_variants_output_common_prefix(intermediate_results_dir), sample,
CALL_VARIANTS_OUTPUT_COMMON_SUFFIX),
EXAMPLES_NAME_PATTERN.format(
examples_common_prefix(intermediate_results_dir), sample,
examples_common_suffix(FLAGS.num_shards)), model_ckpt, sample,
FLAGS.call_variants_extra_args)
def generate_postprocess_variants_command(sample, intermediate_results_dir,
output_vcf, output_gvcf):
"""Helper fuction generate post_process command line."""
return postprocess_variants_command(
FLAGS.ref,
CALL_VARIANTS_OUTPUT_PATTERN.format(
call_variants_output_common_prefix(intermediate_results_dir), sample,
CALL_VARIANTS_OUTPUT_COMMON_SUFFIX),
output_vcf,
sample,
FLAGS.postprocess_variants_extra_args,
NO_VARIANT_TFRECORD_PATTERN.format(
nonvariant_site_tfrecord_common_suffix(intermediate_results_dir),
sample, examples_common_suffix(FLAGS.num_shards)),
gvcf_outfile=output_gvcf,
vcf_stats_report=FLAGS.vcf_stats_report)
def create_all_commands(intermediate_results_dir):
"""Creates 3 commands to be executed later."""
check_flags()
commands = []
post_process_commands = []
# make_examples
nonvariant_site_tfrecord_path = None
if FLAGS.output_gvcf_child is not None:
nonvariant_site_tfrecord_path = '{}.{}'.format(
nonvariant_site_tfrecord_common_suffix(intermediate_results_dir),
examples_common_suffix(FLAGS.num_shards))
commands.append(
make_examples_command(
FLAGS.ref,
FLAGS.reads_child,
FLAGS.reads_parent1,
FLAGS.reads_parent2,
examples_common_name(intermediate_results_dir, FLAGS.num_shards),
FLAGS.sample_name_child,
FLAGS.sample_name_parent1,
FLAGS.sample_name_parent2,
FLAGS.make_examples_extra_args,
gvcf=nonvariant_site_tfrecord_path,
regions=FLAGS.regions))
# Calling variants for child sample
model_ckpt = get_model_ckpt(FLAGS.model_type + '_child',
FLAGS.customized_model)
commands.append(
generate_call_variants_command(CHILD, model_ckpt,
intermediate_results_dir))
# Calling variants for parent1 sample
model_ckpt = get_model_ckpt(FLAGS.model_type + '_parent',
FLAGS.customized_model)
if FLAGS.reads_parent1 is not None:
commands.append(
generate_call_variants_command(PARENT1, model_ckpt,
intermediate_results_dir))
if FLAGS.reads_parent2 is not None:
commands.append(
generate_call_variants_command(PARENT2, model_ckpt,
intermediate_results_dir))
# postprocess_variants for child
post_process_commands.append(
generate_postprocess_variants_command(CHILD, intermediate_results_dir,
FLAGS.output_vcf_child,
FLAGS.output_gvcf_child))
if FLAGS.reads_parent1 is not None:
post_process_commands.append(
generate_postprocess_variants_command(PARENT1, intermediate_results_dir,
FLAGS.output_vcf_parent1,
FLAGS.output_gvcf_parent1))
if FLAGS.reads_parent2 is not None:
post_process_commands.append(
generate_postprocess_variants_command(PARENT2, intermediate_results_dir,
FLAGS.output_vcf_parent2,
FLAGS.output_gvcf_parent2))
return commands, post_process_commands
def main(_):
if FLAGS.version:
print('DeepTrio version {}'.format(DEEP_TRIO_VERSION))
return
for flag_key in [
'model_type', 'ref', 'reads_child', 'output_vcf_child',
'sample_name_child'
]:
if FLAGS.get_flag_value(flag_key, None) is None:
sys.stderr.write('--{} is required.\n'.format(flag_key))
sys.stderr.write('Pass --helpshort or --helpfull to see help on flags.\n')
sys.exit(1)
# Check flags consistency.
# --reads_parent?, --output_vcf_parent?, --sample_name_parent? flags should
# either all be set or all be unset.
parent1_flags = [
FLAGS.reads_parent1, FLAGS.output_vcf_parent1, FLAGS.sample_name_parent1
]
if any(parent1_flags) and not all(parent1_flags):
sys.stderr.write(
'--reads_parent1, --output_vcf_parent1, --sample_name_parent1 must be set altogether\n'
)
sys.stderr.write('Pass --helpshort or --helpfull to see help on flags.\n')
sys.exit(1)
parent2_flags = [
FLAGS.reads_parent2, FLAGS.output_vcf_parent2, FLAGS.sample_name_parent2
]
if any(parent2_flags) and not all(parent2_flags):
sys.stderr.write(
'--reads_parent2, --output_vcf_parent2, --sample_name_parent2 must be set altogether\n'
)
sys.stderr.write('Pass --helpshort or --helpfull to see help on flags.\n')
sys.exit(1)
intermediate_results_dir = check_or_create_intermediate_results_dir(
FLAGS.intermediate_results_dir)
commands, post_process_commands = create_all_commands(
intermediate_results_dir)
print('\n***** Intermediate results will be written to {} '
'in docker. ****\n'.format(intermediate_results_dir))
for command in commands:
print('\n***** Running the command:*****\n{}\n'.format(command))
try:
subprocess.check_call(command, shell=True, executable='/bin/bash')
except subprocess.CalledProcessError as e:
logging.info(e.output)
raise
proc_handles = []
for command in post_process_commands:
print('\n***** Starting the command:*****\n{}\n'.format(command))
try:
proc_handles.append(
subprocess.Popen(command, shell=True, executable='/bin/bash'))
except subprocess.CalledProcessError as e:
logging.info(e.output)
raise
return_codes = [p.wait() for p in proc_handles]
print('post_process returns: {}'.format(list(return_codes)))
if __name__ == '__main__':
app.run(main)