forked from google/nucleus
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinstall.sh
More file actions
executable file
·222 lines (183 loc) · 8.17 KB
/
install.sh
File metadata and controls
executable file
·222 lines (183 loc) · 8.17 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
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
#!/bin/bash
#
# Copyright 2018 Google Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# Usage: source install.sh
#
# This script installs all the packages required to build Nucleus, and
# then builds Nucleus. If the flag "--prereqs_only" is passed, only
# the prereqs will be installed and the nucleus build will be skipped.
#
# This script will run as-is on Ubuntu 14, Ubuntu 16, and Debian 9 systems.
# On all other systems, you will need to first install CLIF by following the
# instructions at https://github.com/google/clif#installation
#
# We also assume that apt-get is already installed and available.
#
# You have some options about how to (or whether to) install TensorFlow.
# If you care about that, you can read the pip_install_tensorflow function
# below, comment out the default option, and uncomment ONE of the other
# choices.
# ------------------------------------------------------------------------------
# Global setting for nucleus builds
# ------------------------------------------------------------------------------
NUCLEUS_BAZEL_VERSION="0.16.0"
NUCLEUS_TENSORFLOW_VERSION="1.7.1"
# ------------------------------------------------------------------------------
function pip_install_tensorflow {
# Please uncomment ONE of the following options for installing TensorFlow.
# 1) Do nothing; use a pre-installed version of TensorFlow.
# The true is necessary; bash doesn't like empty functions.
# true
# 2) Install a GPU-enabled version.
# pip install --user --upgrade tensorflow-gpu==${NUCLEUS_TENSORFLOW_VERSION}
# 3) Install a CPU-enabled version. This is the default option.
pip install --user --upgrade tensorflow==${NUCLEUS_TENSORFLOW_VERSION}
# 4) Install a Google Cloud Platform optimized CPU-only version of TensorFlow.
# For TensorFlow 1.7.1, this wheel file doesn't actually exist yet.
# TODO(thomaswc): Create the wheel file for TF 1.7.1.
# curl https://storage.googleapis.com/deepvariant/packages/tensorflow/tensorflow-${NUCLEUS_TENSORFLOW_VERSION}.deepvariant_gcp-cp27-none-linux_x86_64.whl > /tmp/my.whl && pip install --user --upgrade /tmp/my.whl
}
function note_build_stage {
echo "========== [$(date)] Stage '${1}' starting"
}
# Update package list
################################################################################
note_build_stage "Update package list"
sudo -H apt-get -qq -y update
# Install generic dependencies
################################################################################
note_build_stage "Update misc. dependencies"
sudo -H apt-get -y install pkg-config zip g++ zlib1g-dev unzip curl git lsb-release
# Install htslib dependencies
################################################################################
note_build_stage "Install htslib dependencies"
sudo -H apt-get -y install libssl-dev libcurl4-openssl-dev liblz-dev libbz2-dev liblzma-dev
# Install pip
################################################################################
note_build_stage "Update pip"
sudo -H apt-get -y install python-dev python-pip python-wheel
# pip 10.0 is broken, see https://github.com/pypa/pip/issues/5240
pip install --user --upgrade 'pip==9.0.3'
# Install python packages used by Nucleus
################################################################################
pip install --user contextlib2
# sortedcontainers>=2.0.0 breaks intervaltree=2.1.0
# Remove this when https://github.com/chaimleib/intervaltree/pull/69
# is resolved. Tracked internally at b/80085543.
pip install --user 'sortedcontainers==1.5.3'
pip install --user intervaltree
pip install --user 'mock>=2.0.0'
pip install --user 'numpy==1.14'
pip install --user 'scipy==1.0'
pip install --user 'six>=1.11.0'
# Install Java (required for Bazel)
################################################################################
note_build_stage "Install Java and friends"
# Java is available on Kokoro, so we add this cutout.
if ! java -version 2>&1 | fgrep "1.8"; then
echo "No Java 8, will install."
sudo -H apt-get install -y software-properties-common debconf-utils
# Debian needs authentication.
# (http://www.webupd8.org/2014/03/how-to-install-oracle-java-8-in-debian.html)
[[ $(lsb_release -d | grep 'Debian') ]] && \
sudo -H apt-get install -y gnupg dirmngr && \
sudo -H apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys EEA14886
sudo add-apt-repository -y ppa:webupd8team/java
sudo -H apt-get -qq -y update
echo "oracle-java8-installer shared/accepted-oracle-license-v1-1 select true" | sudo debconf-set-selections
sudo -H apt-get install -y oracle-java8-installer
sudo -H apt-get -y install ca-certificates-java
sudo update-ca-certificates -f
else
echo "Java 8 found, will not reinstall."
fi
# Install Bazel
################################################################################
note_build_stage "Install bazel"
function ensure_wanted_bazel_version {
local wanted_bazel_version=$1
rm -rf ~/bazel
mkdir ~/bazel
if
v=$(bazel --bazelrc=/dev/null --nomaster_bazelrc version) &&
echo "$v" | awk -v b="$wanted_bazel_version" '/Build label/ { exit ($3 != b)}'
then
echo "Bazel ${wanted_bazel_version} already installed on the machine, not reinstalling"
else
pushd ~/bazel
curl -L -O https://github.com/bazelbuild/bazel/releases/download/"${wanted_bazel_version}"/bazel-"${wanted_bazel_version}"-installer-linux-x86_64.sh
chmod +x bazel-*.sh
./bazel-"${wanted_bazel_version}"-installer-linux-x86_64.sh --user
rm bazel-"${wanted_bazel_version}"-installer-linux-x86_64.sh
popd
fi
PATH="$HOME/bin:$PATH"
}
ensure_wanted_bazel_version "${NUCLEUS_BAZEL_VERSION}"
# Install CLIF
################################################################################
note_build_stage "Install CLIF binary"
if [[ -e /usr/local/clif/bin/pyclif ]];
then
echo "CLIF already installed."
else
# Figure out which linux installation we are on to fetch an appropriate
# version of the pre-built CLIF binary. Note that we only support now Ubuntu
# 14, Ubuntu 16, and Debian 9.
case "$(lsb_release -d)" in
*Ubuntu*16.*.*) PLATFORM="ubuntu-16" ;;
*Ubuntu*14.*.*) PLATFORM="ubuntu-14" ;;
*Debian*9.*) PLATFORM="debian" ;;
*Debian*rodete*) PLATFORM="debian" ;;
*) echo "CLIF is not installed on this machine and a prebuilt binary is not
unavailable for this platform. Please install CLIF at
https://github.com/google/clif before continuing."
exit 1
esac
PACKAGE_CURL_PATH="https://storage.googleapis.com/deepvariant/packages"
OSS_CLIF_CURL_ROOT="${PACKAGE_CURL_PATH}/oss_clif"
OSS_CLIF_PKG="oss_clif.${PLATFORM}.latest.tgz"
if [[ ! -f "/tmp/${OSS_CLIF_PKG}" ]]; then
curl "${OSS_CLIF_CURL_ROOT}/${OSS_CLIF_PKG}" > /tmp/${OSS_CLIF_PKG}
fi
(cd / && sudo tar xzf "/tmp/${OSS_CLIF_PKG}")
sudo ldconfig # Reload shared libraries.
fi
# Download and build TensorFlow
################################################################################
note_build_stage "Download and build TensorFlow"
if [[ ! -d ../tensorflow ]]; then
note_build_stage "Cloning TensorFlow from github as ../tensorflow doesn't exist"
(cd .. &&
git clone https://github.com/tensorflow/tensorflow)
fi
(cd ../tensorflow &&
git checkout v${NUCLEUS_TENSORFLOW_VERSION} &&
echo | ./configure &&
pip_install_tensorflow
)
echo "Done installing prereqs at $(date)!"
if [[ "$1" != "--prereqs_only" ]]; then
# Build Nucleus
################################################################################
note_build_stage "Building Nucleus"
COPT_FLAGS="--copt=-msse4.1 --copt=-msse4.2 --copt=-mavx --copt=-O3"
bazel build -c opt ${COPT_FLAGS} nucleus/...
bazel build :licenses_zip
fi
# Done!
################################################################################
echo "Installation complete at $(date)!"