-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathemwrap.bashrc
More file actions
executable file
·48 lines (34 loc) · 1.18 KB
/
emwrap.bashrc
File metadata and controls
executable file
·48 lines (34 loc) · 1.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#!/bin/bash
# Get the directory of the current script
export ROOT="$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )"
# Load the required Python environment, either a conda or virtualenv
. ${ROOT}/../bashrc
export SCRIPTS=$ROOT/scripts
# emwrap config
export EMCONFIG_FOLDER=$ROOT
# Motioncor
export MOTIONCOR_PATH=$SCRIPTS/motioncor3.sh
export MOTIONCOR_VERSION=3
# Ctffind
export CTFFIND_PATH=/usr/local/em/ctffind-5.0/bin/ctffind
export CTFFIND_VERSION=5
# AreTomo
export ARETOMO_PATH=$SCRIPTS/aretomo3.sh
export ARETOMO_VERSION=3
export ARETOMO2=$SCRIPTS/aretomo2.sh
# CryoCare
#export CRYOCARE_PATH=$ROOT/cryocare.sh
export CRYOCARE_TRAIN=$SCRIPTS/cryocare_train.sh
export CRYOCARE_DENOISE=$SCRIPTS/cryocare_denoise.sh
# WarpTools
export WARP_LAUNCHER=$SCRIPTS/warp_launcher.sh
# PyTOM
export PYTOM_LAUNCHER=$SCRIPTS/pytom_launcher.sh
# Relion
export RELION_LAUNCHER=$SCRIPTS/relion_launcher.sh
# Shortcut to PurifiedApoF benchmark
alias bench='python -m emwrap.tests.benchmark_apof_purified'
alias emw-relion='python -m emwrap.relion'
alias emw-otf='python -m emwrap.mix.otf'
alias emw-pytom='python -m emwrap.pytom.pytom_pipeline'
alias emw-warp='python -m emwrap.warp'