Skip to content

Is it possible to run this with 8 GB memory on Mac? #147

Answered by nebfield
Fiwx asked this question in Q&A
Discussion options

You must be logged in to vote

You could try 😅 It depends on the size and complexity of your target genomes and scoring files.

First you'd need to increase the amount of memory / CPU in Docker Desktop. The default limits are quite low.

Then just follow the instructions here to change pipeline resources (although instead of using more resources, you want to use less). As a quick example, make a new text file that contains:

process {
    executor = 'local'

    withLabel:process_low {
        cpus   = 1
        memory = 8.GB
        time   = 1.h
    }
    withLabel:process_medium {
        cpus   = 2
        memory = 8.GB
        time   = 4.h
    }
    withLabel:process_high_memory {
        cpus   = 2
        memory = 8…

Replies: 1 comment 1 reply

Comment options

You must be logged in to vote
1 reply
@smlmbrt
Comment options

Answer selected by Fiwx
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
3 participants