-
Notifications
You must be signed in to change notification settings - Fork 47
/
install_VIPlight.macOS.sh
executable file
·90 lines (80 loc) · 3.97 KB
/
install_VIPlight.macOS.sh
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
#!/usr/bin/env bash
# CLT will not be available for this installation
# Please provide the destnation conda env path (--prefix)
echo -e "\n\n*** Warning: If the user directly install/update cellxgene, the VIP will be removed! ***\n\n"
appPATH="~/.conda/envs/VIP"
set -e
exePath=$(dirname $(readlink -f $0))
echo $exePath
condaPath=$(which conda)
if [[ ${#condaPath} -lt 3 ]]; then
echo "Missing conda"
echo "Please install conda and add it into PATH"
exit
else
echo "conda in $condaPath"
fi
condaPath=$(dirname $(dirname $condaPath))
source $condaPath/etc/profile.d/conda.sh
## create conda env
conda env remove -p $appPATH
conda create -y -p $appPATH
source $condaPath/etc/profile.d/conda.sh
conda activate $appPATH
if [[ $(uname -m) == "arm64" ]] && [[ -z "${PUPPETEER_EXECUTABLE_PATH}" ]]; then
echo -e "\n=== M1/M2 Mac processer, set up osx-64 achitect for conda ===\n"
conda config --env --set subdir osx-64
fi
conda install -y -c conda-forge python=3.8.15 mamba=0.15.3 git=2.39.1 jq=1.6 nodejs=18.12.1 r-base=4.2.3
pip install --force-reinstall flask==2.2.3 flask-cors==3.0.10 flask-restful==0.3.9 flask-talisman==1.0.0 werkzeug==2.2.3 anndata==0.8.0 h5py==3.8.0 pandas==1.5.3 numpy==1.22.0
## config the env with cellxgene
rm -fr cellxgene
git clone https://github.com/chanzuckerberg/cellxgene.git
cd cellxgene
git checkout f48d06fb9043771d7370ee9ac0dc9de8ae6ad888 # v1.1.1 tested
## build the cellxgene and install -----------
## update the client-side source code of cellxgene for VIP
echo -e "\nwindow.store = store;" >> client/src/reducers/index.js
sed -i .bak "s|<div id=\"root\"></div>|$(sed -e 's/[&\\/]/\\&/g; s/|/\\|/g; s/$/\\/;' -e '$s/\\$//' ../index_template.insert)\n&|" "client/index_template.html"
sed -i .bak "s|logoRelatedPadding = 50|logoRelatedPadding = 60|" "client/src/components/leftSidebar/index.js"
## update the cellxgene title to cellxgene VIP
sed -i .bak "s|title=\"cellxgene\"|title=\"cellxgene VIP\"|" "client/src/components/app.js"
## modify zoom/pan default
sed -i .bak "s|const *scaleMax *= *[0-9\.]\+|const scaleMax = 50000|; s|const *scaleMin *= *[0-9\.]\+|const scaleMin = 0.1|; s|const *panBound *= *[0-9\.]\+|const panBound = 80|" "client/src/util/camera.js"
## update the server-side source code of cellxgene for VIP
echo '
from server.app.VIPInterface import route
@webbp.route("/VIP", methods=["POST"])
def VIP():
return route(request.data,current_app.app_config)' >> server/app/app.py
## install cellxgene
if [[ -z $(which xcode-select) ]] || [[ -z $(xcode-select -p) ]] || [[ $(xcode-select -p) == *"error"* ]]; then
xcode-select --install
fi
if [[ $(uname -m) == "arm64" ]] && [[ -z "${PUPPETEER_EXECUTABLE_PATH}" ]]; then
echo -e "\n=== M1/M2 Mac processer, installing Chromium by Homebrew ===\n"
brew install chromium --no-quarantine
echo -e "export PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=true\nexport PUPPETEER_EXECUTABLE_PATH='which chromium'" >> ~/.zprofile
source ~/.zprofile
fi
echo "cellxgene compiling ..."
make pydist
echo "cellxgene installing ..."
make install-dist
cd ..
# install the rest of packages
which mamba
mamba env update -f $exePath/env_yml/VIPlight.macOS.yml
# bioconda not supporting apple chip yet: https://github.com/conda/conda/issues/11216
R -q -e 'BiocManager::install("rtracklayer",update=F);BiocManager::install("complexHeatmap",update=F);BiocManager::install("fgsea",update=F)'
# update the VIP
$exePath/update.VIPInterface.sh all
# setup the update
echo -e "#"'!'"/usr/bin/env bash\nsource $condaPath/etc/profile.d/conda.sh\nconda activate $appPATH\ncd $exePath\ngit pull\n./update.VIPInterface.sh all\n" > $exePath/update
chmod a+x "$exePath/update"
# setup the VIPlight
echo -e "#"'!'"/usr/bin/env bash\nexport PYTHONNOUSERSITE=1\nsource $condaPath/etc/profile.d/conda.sh\nconda activate $appPATH\ncellxgene \"\$@\"" > $exePath/VIPlight
chmod a+x "$exePath/VIPlight"
echo
echo "Updating: use '$exePath/update'"
echo "Please considering using '$exePath/VIPlight' (same usage as cellxgene) which auto activate the conda env for you"