Skip to content

Commit

Permalink
Update str/indel_locus_extractor.py
Browse files Browse the repository at this point in the history
Co-authored-by: Matt Welland <mattwellie@gmail.com>
  • Loading branch information
hopedisastro and MattWellie authored Dec 14, 2023
1 parent ef73185 commit e114009
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions str/indel_locus_extractor.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,15 +45,8 @@ def indel_coordinate_extractor(file_path, gcs_path):
@click.command()
def main(file_path):

b = get_batch()
hail_job = b.new_python_job(name=f'Hail query filter for indels')
hail_job.image(config['workflow']['driver_image'])
hail_job.storage('20G')
hail_job.cpu(4)
gcs_output_path = output_path(f'indels.tsv', 'analysis')
hail_job.call(indel_coordinate_extractor, file_path, gcs_output_path)

b.run(wait=False)
indel_coordinate_extractor(file_path, gcs_output_path)


if __name__ == '__main__':
Expand Down

0 comments on commit e114009

Please sign in to comment.