Skip to content

Commit

Permalink
fix: bump time of ngs_mapping/bam_collect_doc (#394)
Browse files Browse the repository at this point in the history
  • Loading branch information
holtgrewe authored Jul 17, 2023
1 parent 6691295 commit 04551d5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion snappy_pipeline/workflows/ngs_mapping/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -1253,7 +1253,7 @@ def get_resource_usage(self, action):
self._check_action(action)
return ResourceUsage(
threads=1,
time="04:00:00",
time="24:00:00",
memory="2G",
)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -679,7 +679,7 @@ def test_generate_doc_files_step_part_run_get_log_file(ngs_mapping_workflow):

def test_generate_doc_files_step_part_get_resource(ngs_mapping_workflow):
"""Tests BamCollectDocStepPart.get_resource()"""
expected_dict = {"threads": 1, "time": "04:00:00", "memory": "2G", "partition": "medium"}
expected_dict = {"threads": 1, "time": "24:00:00", "memory": "2G", "partition": "medium"}
for resource, expected in expected_dict.items():
actual = ngs_mapping_workflow.get_resource("bam_collect_doc", "run", resource)
assert actual == expected
Expand Down

0 comments on commit 04551d5

Please sign in to comment.