-
What is the |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
The snakemake syntax |
Beta Was this translation helpful? Give feedback.
-
What is the |
Beta Was this translation helpful? Give feedback.
-
The snakemake syntax |
Beta Was this translation helpful? Give feedback.
The snakemake syntax
--cores
,--jobs
,-j
are used to specify the number of cores available to run the job. You can specifyall
as the argument to indicate the use of all available CPU cores. However, a word of caution on using this option when operating on a shared resource such as a HPC system. To find out how many cores are available to you, you can uselscpu
to list the configuration. In the recent versions of Snakemake (v6.0+), it is necessary to specify the-j
parameter when running snakemake. Find more about the different snakemake parameters in their documentation.