You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: secapr/assemble_reads.py
+12-6Lines changed: 12 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -61,8 +61,14 @@ def add_arguments(parser):
61
61
default=1,
62
62
help='For parallel processing you can set the number of cores you want to run the assembly on.'
63
63
)
64
+
parser.add_argument(
65
+
'--instances',
66
+
type=int,
67
+
default=1,
68
+
help='How many parallel assemblies to run at a time. This will multiply the cores and max_memory arguments (for each SPAdes run). For example, max_memory=4, cores=2 and instances=4 will use 8 threads and 16 GB.'
0 commit comments