Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix slurm install instructions #294

Merged
merged 1 commit into from
Aug 14, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 10 additions & 9 deletions docs/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -165,33 +165,34 @@ docker run -v $DATA_FOLDER:/app/data/ --rm alphadia-docker

### 1. Set up environment
Check if conda is available on your cluster. If not, install it, or, if provided, load the corresponding module, e.g.
`module load anaconda/3/2023.03`.
`module load anaconda/3/2023.03`. You might be asked to run `conda init bash` to initialize conda.

Create and activate a new conda environment
```bash
conda create -n alphadia python=3.11
conda create -n alphadia -y
conda activate alphadia
```
### 2. Installing mono
Install mono to support reading proprietary vendor formats like Thermo `.raw` files.

Please make sure you include the conda-forge channel

Install python into your new environment
```bash
conda install python=3.11 -c conda-forge
conda install python=3.11 -y
```
Then install mono by
```bash
conda install mono -c conda-forge
conda install mono=6.12.0.182 -c anaconda -y
```

Make sure mono is installed by running
Test that mono is correctly installed by running
```bash
mono --version
```

Make sure the output looks something like this:
The output should look something like this:
```
Mono JIT compiler version 6.12.0.90 (tarball Fri Mar 5 04:37:13 UTC 2021)
Mono JIT compiler version 6.12.0.182 (tarball Mon Jun 26 17:39:19 UTC 2023)
Copyright (C) 2002-2014 Novell, Inc, Xamarin Inc and Contributors. www.mono-project.com
TLS: __thread
SIGSEGV: altstack
Expand All @@ -212,7 +213,7 @@ Install alphaDIA using pip:
```bash
pip install "alphadia[stable]"
```
Afterwards, verify the alphaDIA installation by running:
Afterward, verify the alphaDIA installation by running:
`alphadia --version` which should output the current version.

### Notes on running alphaDIA as part of automated workflows
Expand Down
Loading