Skip to content

Commit

Permalink
Remove default ref file size
Browse files Browse the repository at this point in the history
  • Loading branch information
jpfeil committed Dec 1, 2016
1 parent a38f759 commit 86fabdc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 1 addition & 3 deletions src/toil_scripts/gatk_germline/germline.py
Original file line number Diff line number Diff line change
Expand Up @@ -447,9 +447,7 @@ def download_shared_files(job, config):
setattr(config, name, job.addChildJobFn(download_url_job,
url,
name=name,
s3_key_path=config.ssec,
disk='15G' # Estimated reference file size
).rv())
s3_key_path=config.ssec).rv())
finally:
if getattr(config, name, None) is None and name not in nonessential_files:
raise ValueError("Necessary configuration parameter is missing:\n{}".format(name))
Expand Down
1 change: 1 addition & 0 deletions src/toil_scripts/gatk_germline/test/test_germline.py
Original file line number Diff line number Diff line change
Expand Up @@ -215,6 +215,7 @@ def _get_default_inputs(self):
inputs.sorted = False
inputs.cores = 4
inputs.xmx = '8G'
inputs.file_size = '1G'
inputs.output_dir = self.workdir
inputs.suffix = ''
inputs.unsafe_mode = False
Expand Down

0 comments on commit 86fabdc

Please sign in to comment.