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: docs/cheaha/software/software.md
+13-13Lines changed: 13 additions & 13 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -70,19 +70,19 @@ Cell Ranger is a proprietary software developed by [10x Genomics](https://www.10
70
70
71
71
-[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).
72
72
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.
74
74
75
75
- Next, extract the Cell Ranger package using the command below. In this example, version 9.0.1 is used:
76
76
77
77
```bash
78
-
$tar -zxvf cellranger-9.0.1.tar.gz
78
+
tar -zxvf cellranger-9.0.1.tar.gz
79
79
```
80
80
81
81
- After the extraction is complete, navigate to the cellranger directory’s bin folder and print its path using the `pwd` command, as shown below:
82
82
83
83
```bash
84
-
$cd cellranger-9.0.1/bin
85
-
$pwd
84
+
cd cellranger-9.0.1/bin
85
+
pwd
86
86
```
87
87
88
88
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
94
94
The actual path may vary depending on where the folder is located in your account.
95
95
<!-- markdownlint-enable MD046 -->
96
96
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.
0 commit comments