Skip to content

Commit

Permalink
fastqc min instance to be t2.micro
Browse files Browse the repository at this point in the history
  • Loading branch information
SooLee committed Sep 16, 2017
1 parent 703db56 commit 99fe33b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion Benchmark/Benchmark.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,11 @@ def fastqc_0_11_4_1(input_json):

input_in_bytes = input_json.get('input_size_in_bytes').get('input_fastq')
input_size = input_in_bytes / GB_IN_BYTES * 2 + 3
mem = 300 * nthreads
if mem < 1024:
mem = 1024
r = BenchmarkResult(size=input_size,
mem=300 * nthreads,
mem=mem,
cpu=nthreads)

return(r.as_dict())
Expand Down
2 changes: 1 addition & 1 deletion Benchmark/_version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Version information."""

# The following line *must* be the last in the module, exactly as formatted:
__version__ = "0.1.7"
__version__ = "0.1.8"

0 comments on commit 99fe33b

Please sign in to comment.