Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
titlerun-structure-isabella.sge
#$ -N structure
#$ -pe *mpisingle 8
#$ -cwd
#$ -q test.q

module load bioinfo/structure_threader/1.3.10

str_bin=$(which structure)
structure_threader_exec=$(which structure_threader)

#$ -N structure_threader
#$ -pe *mpisingle 8
#$ -cwd

module load bioinfo/structure_threader/1.3.7

str_bin=$(which structure)
structure_threader_exec=$(which structure_threader)

${structure_threader_exec} run -i smalldata/Reduced_dataset.structure -o results -st ${str_bin} -K 3 -t $NSLOTS -R 5 --params smalldata/mainparams

...

Tip
titleNapomena

Aplikacija je instalirana i konfigurirana u Python virtualnom okruženju kojeg korisnik može proširiti sa svojim proizvoljnim Python aplikacijama. Nakon učitavanja modula, korisnik dodatne aplikacije instalira s:


Infocode
titlepip install
pip3 install --prefix $LOCALPKGS potrebni-python-pkg


Instalacija

structure_threader je Python wrapper koji sa sobom donosi glavne aplikacije pa njih nije potrebno posebno instalirati. Distribuira se kroz Python paketni sustav PyPI.  Na klasteru je instaliran u zasebnom Python virtual environmentu.

...

Code Block
titleNaredbe instalacije
python3 -m venv /apps/virtenv/structure_threader1.3.10
source /apps/virtenv/structure_threader1.3.10/bin/activate
pip3 install -U pip
pip3 install structure_threader

...