Skip to content

Commit

Permalink
Merge pull request #1261 from reid-wagner/fragpipe_high_mem
Browse files Browse the repository at this point in the history
Utilize a high_memory Option in FragPipe Tool
  • Loading branch information
bgruening authored Jul 24, 2024
2 parents ddead68 + 55f6949 commit 8b03fef
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 0 deletions.
13 changes: 13 additions & 0 deletions files/galaxy-test/tpv/tools.yml
Original file line number Diff line number Diff line change
Expand Up @@ -815,3 +815,16 @@ tools:
require:
- singularity
- conda

toolshed.g2.bx.psu.edu/repos/galaxyp/fragpipe/fragpipe/.*:
cores: 8
mem: 56
rules:
- id: fragpipe_memory
if: |
parameters = {p.name: p.value for p in job.parameters}
parameters = tool.params_from_strings(parameters, app)
high_memory = parameters.get("high_memory", False)
high_memory
mem: 256
cores: 12
9 changes: 9 additions & 0 deletions files/galaxy/tpv/tools.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1444,3 +1444,12 @@ tools:
toolshed.g2.bx.psu.edu/repos/galaxyp/fragpipe/fragpipe/.*:
cores: 8
mem: 56
rules:
- id: fragpipe_memory
if: |
parameters = {p.name: p.value for p in job.parameters}
parameters = tool.params_from_strings(parameters, app)
high_memory = parameters.get("high_memory", False)
high_memory
mem: 256
cores: 12

0 comments on commit 8b03fef

Please sign in to comment.