Skip to content

Commit

Permalink
Added some comments
Browse files Browse the repository at this point in the history
  • Loading branch information
jvanheld committed Aug 21, 2024
1 parent 8c1c5c8 commit d10422c
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion how-to-package-RSAT-to-conda.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,15 @@

## Conda packages

**BEWARE:** The standard `conda` installations takes hours to build the dependency tree.

Thanks to Stéphane Plaisance, who provided us with an alternative (`mamba`) that impressively accelerates the installation.


```
conda activate # Activate the default conda environment before proceeding to the packaging
conda install anaconda conda-build anaconda-client
mamba install anaconda conda-build anaconda-client
```

## Building conda packages on the local machine
Expand Down Expand Up @@ -87,6 +91,11 @@ done
## Building the conda rsat-core package

```
## FASTER ?
mamba build -c conda-forge -c bioconda -c rsat rsat-core
## Standard command (takes hours to build the dependency tree)
conda build -c conda-forge -c bioconda -c rsat rsat-core
```

Expand Down Expand Up @@ -136,6 +145,7 @@ conda activate rsat

Install rsat-core in the conda rsat environment


```
conda install -c conda-forge -c bioconda -c rsat rsat-core
```
Expand Down

0 comments on commit d10422c

Please sign in to comment.