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
we display 3 additional badges:
- last commit in git repo, with link
- last updated for the git repo (color-coded for freshness)
- lower snakemake version that depends on the same version of the
interface that the plugin depends on
Copy file name to clipboardExpand all lines: source/_templates/executor_plugin.rst.j2
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@
3
3
{%blocktype%}executor{%endblock%}
4
4
5
5
{%blockusage%}
6
-
In order to use the plugin, run Snakemake (>=8.0) in the folder where your workflow code and config resides (containing either ``workflow/Snakefile`` or ``Snakefile``) with the corresponding value for the executor flag::
6
+
In order to use the plugin, run Snakemake ({{ snakemake_version if snakemake_version else ">=8.0" }}) in the folder where your workflow code and config resides (containing either ``workflow/Snakefile`` or ``Snakefile``) with the corresponding value for the executor flag::
7
7
8
8
snakemake --executor {{ plugin_name }} --default-resources --jobs N ...
Copy file name to clipboardExpand all lines: source/_templates/logger_plugin.rst.j2
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -3,9 +3,9 @@
3
3
{%blocktype%}logger{%endblock%}
4
4
5
5
{%blockusage%}
6
-
In order to use the plugin, run Snakemake (>=9.0) with the corresponding value for the logger flag::
6
+
In order to use the plugin, run Snakemake ({{ snakemake_version if snakemake_version else ">=9.0" }}) with the corresponding value for the logger flag::
7
7
8
8
snakemake --logger {{ plugin_name }} ...
9
9
10
10
with ``...`` being any additional arguments you want to use.
Copy file name to clipboardExpand all lines: source/_templates/report_plugin.rst.j2
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -3,9 +3,9 @@
3
3
{%blocktype%}report{%endblock%}
4
4
5
5
{%blockusage%}
6
-
In order to use the plugin, run Snakemake (>=8.5) with the corresponding value for the reporter flag::
6
+
In order to use the plugin, run Snakemake ({{ snakemake_version if snakemake_version else ">=8.5" }}) with the corresponding value for the reporter flag::
7
7
8
8
snakemake --reporter {{ plugin_name }} ...
9
9
10
10
with ``...`` being any additional arguments you want to use.
Copy file name to clipboardExpand all lines: source/_templates/scheduler_plugin.rst.j2
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@
3
3
{%blocktype%}scheduler{%endblock%}
4
4
5
5
{%blockusage%}
6
-
In order to use the plugin, run Snakemake (>=9.0) with the corresponding value for the scheduler flag::
6
+
In order to use the plugin, run Snakemake ({{ snakemake_version if snakemake_version else ">=9.0" }}) with the corresponding value for the scheduler flag::
0 commit comments