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
{{ message }}
This repository was archived by the owner on Aug 14, 2024. It is now read-only.
Copy file name to clipboardExpand all lines: reference.md
+18-4Lines changed: 18 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -14,8 +14,10 @@ frequent word, etc.: the rank-frequency distribution is an inverse relation
14
14
(source: [Wikipedia][zipf]).
15
15
16
16
Build File
17
-
: A build file describes all the steps required to execute or build your code or data.
18
-
The format of the build file depends on the build system being used. Snakemake build files are called Snakefiles, and use Python 3 as the definition language.
17
+
: A build file describes all the steps required to execute or build your code
18
+
or data. The format of the build file depends on the build system being used.
19
+
Snakemake build files are called Snakefiles, and use Python 3 as the
20
+
definition language.
19
21
20
22
Dependency
21
23
: A file that is needed to build a target. In Snakemake, dependencies are
@@ -26,8 +28,10 @@ Target
26
28
27
29
Rule
28
30
: Describes how to create outputs from inputs. Dependencies between rules are handled
29
-
implicitly by matching filenames of inputs to outputs. A rule can also contain no inputs or outputs, in which case it simply specifies a command that can be run manually.
30
-
Snakemake rules are composed of inputs, outputs, and an action.
31
+
implicitly by matching filenames of inputs to outputs. A rule can also
32
+
contain no inputs or outputs, in which case it simply specifies a command
33
+
that can be run manually. Snakemake rules are composed of inputs, outputs,
34
+
and an action.
31
35
32
36
Default Target
33
37
: The first rule in a Snakefile defines the *default target*. This is the target
@@ -56,7 +60,17 @@ Wildcard
56
60
Snakemake matches each wildcard to the regular expression `.+`, although additional
57
61
constraints can be specified. See [the documentation][docs-wildcard] for details.
58
62
63
+
HPC Cluster
64
+
: An HPC cluster is a collection of many separate servers (computers), called
65
+
nodes, which are connected via a fast interconnect.
66
+
67
+
Scheduler
68
+
: A job scheduler is a computer application for controlling unattended
0 commit comments