Skip to content

Commit

Permalink
Update indel_locus_extractor.py
Browse files Browse the repository at this point in the history
  • Loading branch information
hopedisastro committed Dec 13, 2023
1 parent df43efe commit c356189
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions str/indel_locus_extractor.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,9 @@
import click

from cpg_utils.config import get_config
from cpg_utils.hail_batch import output_path, init_batch
from cpg_workflows.batch import get_batch
from cpg_utils import to_path

from cpg_utils.hail_batch import output_path, init_batch

config = get_config()

Expand Down Expand Up @@ -51,7 +50,7 @@ def main(file_path):
hail_job.image(config['workflow']['driver_image'])
hail_job.storage('20G')
hail_job.cpu(4)
gcs_output_path = output_path(f'indels.tsv')
gcs_output_path = output_path(f'indels.tsv', 'analysis')
hail_job.call(indel_coordinate_extractor, file_path, gcs_output_path)

b.run(wait=False)
Expand Down

0 comments on commit c356189

Please sign in to comment.