Skip to content

Commit

Permalink
updated storage requirements for the realign_to_T2T example pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
bw2 committed Feb 7, 2024
1 parent c746b80 commit 039ae01
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/realign_to_T2T.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def main():
# step 2: convert to fastq
cpus = 1
s2 = batch_pipeline.new_step(f"fastq: {prefix}", step_number=2, arg_suffix="step2",
image=DOCKER_IMAGE, cpu=cpus, memory="standard", storage="200G", output_dir=args.output_dir)
image=DOCKER_IMAGE, cpu=cpus, memory="standard", storage="300G", output_dir=args.output_dir)
s2.switch_gcloud_auth_to_user_account()

local_bam_or_cram = s2.use_previous_step_outputs_as_inputs(s1)
Expand All @@ -77,7 +77,7 @@ def main():
# step 3: align to T2T
cpus = 8
s3 = batch_pipeline.new_step(f"bwa mem: {prefix}", step_number=3, arg_suffix="step3",
image=DOCKER_IMAGE, cpu=cpus, memory="standard", storage="200G", output_dir=args.output_dir)
image=DOCKER_IMAGE, cpu=cpus, memory="standard", storage="300G", output_dir=args.output_dir)
s3.switch_gcloud_auth_to_user_account()
local_r1_fastq, local_r2_fastq = s3.use_previous_step_outputs_as_inputs(s2, localize_by=Localize.COPY)

Expand Down

0 comments on commit 039ae01

Please sign in to comment.