Skip to content

Commit

Permalink
Update merge_str_runner.py
Browse files Browse the repository at this point in the history
  • Loading branch information
hopedisastro committed Aug 21, 2023
1 parent dfa4c41 commit f65a8d3
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions str/trtools/merge_str_runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,14 @@ def main(
trtools_job.image(TRTOOLS_IMAGE)
trtools_job.cpu(8)
# mount using cloudfuse for reading input files
trtools_job.cloudfuse(f'cpg-{dataset}-main-analysis', '/vcffuse')
trtools_job.declare_resource_group(vcf_output={'vcf': '{root}.vcf','vcf.gz': '{root}.vcf.gz', 'vcf.gz.tbi': '{root}.vcf.gz.tbi'})

trtools_job.cloudfuse(f'cpg-{dataset}-test-analysis', '/vcffuse')
trtools_job.declare_resource_group(
vcf_output={
'vcf': '{root}.vcf',
'vcf.gz': '{root}.vcf.gz',
'vcf.gz.tbi': '{root}.vcf.gz.tbi',
}
)

# read in input file paths
vcffuse_path = []
Expand Down

0 comments on commit f65a8d3

Please sign in to comment.