Cell Ranger Installation 安装

今天开始涉及上游
逆流而上

Cell Ranger Installation

Cell Ranger is delivered as a single, self-contained tar file that can be unpacked anywhere on your system. It bundles all of its required software dependencies, which are pre-compiled to run on a wide range of Linux distributions.

For convenience, the reference data package required for Cell Ranger is provided as a separate download.

Download and Install

Step 1 – Download and unpack the Cell Ranger file in any location. In this example we use /opt.

cd /opt
[ download file from downloads page ]
$ tar -xzvf cellranger-6.0.1.tar.gz

This unpacks Cell Ranger, its dependencies, and the cellranger script into a new directory called cellranger-6.0.1.

Step 2 – Download and unpack any of the reference data files in a convenient location:

[ download file from downloads page ]*
$ tar -xzvf refdata-gex-GRCh38-2020-A.tar.gz

This creates a new directory called refdata-gex-GRCh38-2020-A that contains a single reference (in this case, GRCh38). Each reference contains a set of pre-generated indices and other data required by Cell Ranger.

Step 3 – Prepend the Cell Ranger directory to your $PATH. This will allow you to invoke the cellranger command.

If you unpacked both Cell Ranger and the reference data into /opt, then you would run the following command:

PATH

You may wish to add this command to your .bashrc for convenience.

Site Check Script

Next, please run the bundled site check script and send the output to 10x. If requested, we will review the information to ensure that Cell Ranger will run smoothly once you have generated your own Chromium data. Assuming you have installed Cell Ranger as described above, please run the following commands:

cellranger upload [email protected] sitecheck.txt

If you plan to run Cell Ranger on a cluster, please run and send us the output twice, once on a submit host and once on a cluster node.

If your system does not have direct Internet connectivity, please send the output files as attachments to [email protected].

Verify Installation

To ensure that the cellranger pipeline is installed correctly, run cellranger testrun. Assuming you have installed Cell Ranger into /opt, the command to run the test would look like:

PATH
$ cellranger testrun --id=tiny

Running Cell Ranger in test mode...

Martian Runtime - v4.0.3

...

Pipestance completed successfully!

yyyy-mm-dd hh:mm:ss Shutting down.
Saving pipestance info to "tiny/tiny.mri.tgz"

Whether the test pipestance succeeds or fails, you will then see:

Saving pipestance info to "tiny/tiny.mri.tgz"

This tiny.mri.tgz file contains diagnostic information 10x can use to help resolve any problems, so it is generated whether the pipeline succeeds or fails. If the pipeline fails and you need troubleshooting assistance, you can send this file directly to us from the command line:

$ cellranger upload [email protected] tiny/tiny.mri.tgz

If your system does not have direct Internet connectivity, you can also send the file as an attachment to [email protected].

你可能感兴趣的:(Cell Ranger Installation 安装)