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: README.rst
+37-35
Original file line number
Diff line number
Diff line change
@@ -61,6 +61,8 @@ You can also install the bleeding edge (i.e. less stable) version of the package
61
61
cd pySCENIC/
62
62
pip install .
63
63
64
+
**pySCENIC containers** are also available for download and immediate use. In this case, no compiling or installation is required, provided either Docker or Singularity software is installed on the user's system. Images are available from both `Docker Hub`_ and `Singularity Hub`_. Usage of the containers is shown below (`Docker and Singularity Images`_).
65
+
64
66
To successfully use this pipeline you also need **auxilliary datasets**:
65
67
66
68
1. *Databases ranking the whole genome* of your species of interest based on regulatory features (i.e. transcription factors). Ranking databases are typically stored in the feather_ format and can be downloaded from cisTargetDBs_.
@@ -290,44 +292,43 @@ Docker and Singularity Images
290
292
-----------------------------
291
293
292
294
pySCENIC is available to use with both Docker and Singularity, and tool usage from a container is similar to that of the command line interface.
293
-
Note that the feather databases, transcription factors, and motif annotation databases need to be accessible to the container.
294
-
In the below examples, separate mounts are created for the input, output, and databases directories.
295
+
Note that the feather databases, transcription factors, and motif annotation databases need to be accessible to the container via a mounted volume.
296
+
In the below examples, a single volume mount is used forsimplicity, which will contains the input, output, and databases files.
295
297
296
298
Docker
297
299
~~~~~~
298
300
299
-
Docker images are available from `Docker Hub`_.
301
+
Docker images are available from `Docker Hub`_, and can be obtained by running :code:`docker pull aertslab/pyscenic:[version]`, with the version tag as the latest release.
300
302
301
-
To run pySCENIC in Docker, use the following three steps.
303
+
To run pySCENIC using Docker, use the following three steps.
302
304
A mount point (or more than one) needs to be specified, which contains the input data and necessary resources).
@@ -336,39 +337,39 @@ A mount point (or more than one) needs to be specified, which contains the input
336
337
Singularity
337
338
~~~~~~~~~~~
338
339
339
-
Singularity images are available from `Singularity Hub`_.
340
+
Singularity images are available from `Singularity Hub`_ and can be obtained by running :code:`singularity pull shub://aertslab/pySCENIC:0.9.7` with the proper version tag.
340
341
341
-
To run pySCENIC in Singularity, use the following three steps.
342
-
Note that in Singularity 3.0+, the mount points are automatically overlaid.
342
+
To run pySCENIC with Singularity, the usage is very similar to that of Docker.
343
+
Note that in Singularity 3.0+, the mount points are automatically overlaid, but bind points can be specified similarly to Docker with :code:`--bind`/:code:`-B`.
344
+
The first step (GRN inference) is shown as an example:
0 commit comments