File tree Expand file tree Collapse file tree 2 files changed +31
-5
lines changed
Expand file tree Collapse file tree 2 files changed +31
-5
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,16 @@ A Snakemake pipeline to process ONT aa-tRNA-seq data.
88
99** [ Documentation] ( https://rnabioco.github.io/aa-tRNA-seq-pipeline ) ** | ** [ Downstream Analysis] ( https://github.com/rnabioco/aa-tRNA-seq ) **
1010
11+ ## Prerequisites
12+
13+ This pipeline uses [ Pixi] ( https://pixi.sh ) for environment management. Install it first:
14+
15+ ``` bash
16+ curl -fsSL https://pixi.sh/install.sh | sh
17+ ```
18+
19+ See the [ Pixi installation guide] ( https://pixi.prefix.dev/latest/installation/ ) for alternative methods (Homebrew, Windows, etc.).
20+
1121## Usage
1222
1323The pipeline can be configured by editing the ` config/config.yml ` file. The config file specifications will
Original file line number Diff line number Diff line change @@ -11,18 +11,34 @@ This guide covers installing the aa-tRNA-seq pipeline and its dependencies.
1111
1212## Install Pixi
1313
14- The pipeline uses [ Pixi] ( https://pixi.sh ) for environment management. Install it with:
14+ The pipeline uses [ Pixi] ( https://pixi.sh ) for environment management.
1515
16- ``` bash
17- curl -fsSL https://pixi.sh/install.sh | bash
18- ```
16+ === "Linux/macOS"
17+
18+ ```bash
19+ curl -fsSL https://pixi.sh/install.sh | sh
20+ ```
21+
22+ === "macOS (Homebrew)"
23+
24+ ```bash
25+ brew install pixi
26+ ```
27+
28+ === "Windows"
29+
30+ ```powershell
31+ powershell -ExecutionPolicy Bypass -c "irm -useb https://pixi.sh/install.ps1 | iex"
32+ ```
1933
2034After installation, restart your shell or run:
2135
2236``` bash
23- source ~ /.bashrc # or ~/.zshrc
37+ source ~ /.bashrc # or ~/.zshrc for Zsh
2438```
2539
40+ For additional installation options, see the [ official Pixi installation guide] ( https://pixi.prefix.dev/latest/installation/ ) .
41+
2642## Clone the Repository
2743
2844``` bash
You can’t perform that action at this time.
0 commit comments