-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
tweak documentation, create doc folder
- Loading branch information
Showing
3 changed files
with
23 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
### our paralellism strategy: | ||
|
||
*subject to change* | ||
|
||
use nextflow processes (dataflow) to use multinode+multiprocessing parallelise concurrently across samples/files | ||
|
||
we work to enable multinode, but for now we just use 1 node | ||
|
||
for now, we avoid splitting files for more parallelism | ||
|
||
instead we use tool-level threading | ||
|
||
so we run multiple nf-processes | ||
|
||
each nf-process runs a single tool process | ||
|
||
each tool process runs the tool with the tools parallelism option | ||
|
||
|
||
with the current filesize to count ratio: 1GB to 5 GB per file and about 5-50 files per workflow on ~100 cores this works pretty well | ||
|
||
and most importantly it is quite simple to reason about |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters