Skip to content

Commit

Permalink
clarified readme install instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
saramonzon committed Jun 7, 2024
1 parent 60146f9 commit e9edd5d
Showing 1 changed file with 21 additions and 10 deletions.
31 changes: 21 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,8 @@ BU-ISCIII provides a serie or services in its portfolio for supporting bioinform

- [buisciii-tools](#buisciii-tools)
- [Installation](#installation)
- [Bioconda](#bioconda)
- [Pip](#pip)
- [Development version](#development-version)
- [Micromamba and pip](#micromamba-and-pip)
- [Dev version](#dev-version)
- [Usage](#usage)
- [Command-line](#command-line)
- [list](#list)
Expand All @@ -26,30 +25,42 @@ BU-ISCIII provides a serie or services in its portfolio for supporting bioinform

## Installation

### Bioconda
### Micromamba and pip

```bash
conda create -n buisciii-tools pip
conda activate
conda env update --file environment.yml
micromamba create -n buisciii -f environment.yml
micromamba activate buisciii
pip install --force-reinstall --upgrade git+https://github.com/bu-isciii/buisciii-tools.git@main
```

### Pip
or

```bash
git checkout main
conda create -n buisciii -f environment.yml
conda activate
pip install .
```

### Development version
### Dev version

If you want to install the latest code in the repository:

```bash
conda create -n buisciii_dev pip
micromamba create -n buisciii_dev -f environment.yml
micromamba activate buisciii_dev
pip install --force-reinstall --upgrade git+https://github.com/bu-isciii/buisciii-tools.git@develop
```

or locally:

```bash
git checkout develop
micromamba create -n buisciii_dev -f environment.yml
micromamba activate buisciii_dev
pip install .
```

## Usage

### Command-line
Expand Down

0 comments on commit e9edd5d

Please sign in to comment.