Versionen im Vergleich

Schlüssel

  • Diese Zeile wurde hinzugefügt.
  • Diese Zeile wurde entfernt.
  • Formatierung wurde geändert.

...

Info
titlemodules

There are currently four different conda modules.

For normal usage utilize `MinicondaMiniconda/3`3. If you want to use conda within snakemake or have other specific needs you can try `MinicondaMiniconda/3_noInit` noInit or `MinicondaMiniconda/3_snakemake`snakemake.


Info
titleHinweis

If activating your conda environment works for you in interactive mode but not in batch mode, then you might need to source your files .bashrc and .bash_profile. This is because in interactive mode you'll get a login shell but in batch mode not. In your jobscript such a solution could look as follows:

Codeblock
#!/bin/bash
#PBS -l select=1:ncpus=X:mem=XGB
#PBS -l walltime=X:00:00
#PBS -A 'XXX'

# source bash
source $HOME/.bashrc
source $HOME/.bash_profile
conda activate SOME_ENV


...