Skip to content

Commit fc10344

Browse files
authored
Merge pull request #1077 from Premas/fix-cellranger
Fixed Cell Ranger Section
2 parents 15372ef + 027619e commit fc10344

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

docs/cheaha/software/software.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -70,19 +70,19 @@ Cell Ranger is a proprietary software developed by [10x Genomics](https://www.10
7070

7171
- [Register](https://www.10xgenomics.com/products/cell-ranger/downloads/eula?closeUrl=%2Fsupport%2Fsoftware%2Fcell-ranger%2Fdownloads%23download-links&redirectUrl=%2Fsupport%2Fsoftware%2Fcell-ranger%2Fdownloads%23download-links%3Fstart%3Dcellranger-9.0.1.tar.gz) and download the desired version of `Cell Ranger` from the [10X Genomics site](https://www.10xgenomics.com/support/software/cell-ranger/downloads).
7272

73-
- Once registration is complete, you will be redirected to the download page with installation instructions. To begin, use the `curl` or `wget` command to download the `.tar.gz` package.
73+
- Once registration is complete, you will be redirected to the download page with installation instructions. To begin, use the `curl` or `wget` command to download the `.tar.gz` package as directed in the instructions.
7474

7575
- Next, extract the Cell Ranger package using the command below. In this example, version 9.0.1 is used:
7676

7777
```bash
78-
$tar -zxvf cellranger-9.0.1.tar.gz
78+
tar -zxvf cellranger-9.0.1.tar.gz
7979
```
8080

8181
- After the extraction is complete, navigate to the cellranger directory’s bin folder and print its path using the `pwd` command, as shown below:
8282

8383
```bash
84-
$cd cellranger-9.0.1/bin
85-
$pwd
84+
cd cellranger-9.0.1/bin
85+
pwd
8686
```
8787

8888
The `pwd` command will display the full path to the `bin` directory. For example:
@@ -94,40 +94,40 @@ Cell Ranger is a proprietary software developed by [10x Genomics](https://www.10
9494
The actual path may vary depending on where the folder is located in your account.
9595
<!-- markdownlint-enable MD046 -->
9696

97-
- To add the above path to your .bashrc file, run the following command,
97+
- To add the above path to your .bashrc file, run the following command. This will append the export line to the end of your `$HOME/.bashrc` file.
9898

9999
```bash
100-
$echo "export PATH=\$PATH:/home/$USER/cellranger-9.0.1/bin" >> $HOME/.bashrc
100+
echo "export PATH=\$PATH:/home/$USER/cellranger-9.0.1/bin" >> $HOME/.bashrc
101101
```
102102

103-
This will append the export line to the end of your .bashrc file. You should see an entry similar to the following:
103+
You can verify the addition by running:
104104

105105
```bash
106-
$export PATH=$PATH:/home/$USER/cellranger-9.0.1/bin
106+
cat $HOME/.bashrc
107107
```
108108

109-
You can verify the addition by running:
109+
You should see an entry similar to the following in your `$HOME/.bashrc` file:
110110

111111
```bash
112-
$cat $HOME/.bashrc
112+
export PATH=$PATH:/home/$USER/cellranger-9.0.1/bin
113113
```
114114

115115
- To apply the changes, either close the terminal and open a new one, or run the following command:
116116

117117
```bash
118-
$source ~/.bashrc
118+
source ~/.bashrc
119119
```
120120

121121
- Then, verify that Cell Ranger 9.0.1 is correctly installed by running:
122122

123123
```bash
124-
$cellranger --version.
124+
cellranger --version
125125
```
126126

127127
You should see an output like:
128128

129129
```bash
130-
$cellranger cellranger-9.0.1
130+
cellranger cellranger-9.0.1
131131
```
132132

133133
## Singularity Containers

0 commit comments

Comments
 (0)