Skip to content

Commit

Permalink
Deployed f85babf with MkDocs version: 1.5.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Unknown committed Dec 21, 2023
1 parent b60cb88 commit 087f1ea
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 2 deletions.
30 changes: 30 additions & 0 deletions faq/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,8 @@
</li>
<li class="toctree-l2"><a class="reference internal" href="#why-am-i-getting-this-docker-permission-denied-error">Why am I getting this 'docker: Permission denied' error?</a>
</li>
<li class="toctree-l2"><a class="reference internal" href="#my-server-doesnt-have-that-much-memory-how-do-i-change-the-resource-requirements">My server doesn't have that much memory! How do I change the resource requirements?</a>
</li>
</ul>
</li>
</ul>
Expand Down Expand Up @@ -174,6 +176,34 @@ <h2 id="why-am-i-getting-this-docker-permission-denied-error">Why am I getting t
<p>If running on an HPC system, talk to your system administrator or consider running ARETE with <a href="https://beiko-lab.github.io/arete/usage/#-profile">Singularity</a>.</p>
</li>
</ul>
<h2 id="my-server-doesnt-have-that-much-memory-how-do-i-change-the-resource-requirements">My server doesn't have that much memory! How do I change the resource requirements?</h2>
<p>Just write a file called <code>nextflow.config</code> in your working directory and add the following to it:</p>
<pre><code class="language-nextflow">process {
withLabel:process_low {
cpus = 6
memory = 8.GB
time = 4.h
}
withLabel:process_medium {
cpus = 12
memory = 36.GB
time = 8.h
}
withLabel:process_high {
cpus = 16
memory = 72.GB
time = 20.h
}
withLabel:process_high_memory {
memory = 200.GB
}
withName: MOB_RECON {
cpus = 2
}
}
</code></pre>
<p>Feel free to change the values above as you wish and then add <code>-c nextflow.config</code> to your <code>nextflow run beiko-lab/ARETE</code> command.</p>
<p>You can point to general process labels, like <code>process_low</code>, or you can point directly to process names, like <code>MOB_RECON</code>. Learn more at <a href="https://beiko-lab.github.io/arete/usage/#custom-resource-requests">our usage documentation</a> or <a href="https://www.nextflow.io/docs/latest/config.html#scope-process">the official nextflow documentation</a>.</p>

</div>
</div><footer>
Expand Down
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -352,5 +352,5 @@ <h2 id="citing-arete">Citing ARETE <a name="citing"></a></h2>

<!--
MkDocs version : 1.5.3
Build Date UTC : 2023-12-09 18:35:15.862462+00:00
Build Date UTC : 2023-12-21 12:57:11.247366+00:00
-->
2 changes: 1 addition & 1 deletion search/search_index.json

Large diffs are not rendered by default.

Binary file modified sitemap.xml.gz
Binary file not shown.

0 comments on commit 087f1ea

Please sign in to comment.