Docker Example
Running NovaScope with pre-built docker image requires a system you can run docker on. Typically you need a machine (e.g. Ubuntu Desktop or AWS EC2) you have a root access to, with >32GB memory and >64GB disk space.
It involves three main steps: (1) setting up docker in your system, (2) downloading example data and reference files, and (3) running the pipeline. We will assume that you have /path/to/working/dir
as your working directory. We will use the minimal test run data as an example, but you may replace it with other datasets.
Setting up docker in your system¶
If you are new to Docker, please refer to the Docker documentation for installation and basic usage. To ensure that Docker is installed in your system, you can run the following command:
1 2 3 4 5 |
|
If the above commands do not run, you need to install Docker in your system. Currently, our docker image is built for Intel/AMD x86_64 architecture.
Download example data and reference files¶
You may download the minimal test run data and STAR mouse reference index by running the following commands:
1 2 3 4 5 6 7 8 9 10 11 |
|
Running the NovaScope pipeline with example dataset¶
You may perform a dry-run to test whether the NovaScope pipeline with the minimal test example data is working properly.
1 2 3 4 5 6 7 |
|
If the dry-run is successful, you may run the pipeline with the following command:
1 2 3 4 5 6 7 8 |
|
The pipeline will generate the output files in the /path/to/working/dir/output
directory, typically in 10 minutes.
To run NovaScope with different datasets, you will need to modify the Configuration File yourself and specify it as --configfile
argument in the command. See detailed instructions in the Job Configuration section.