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 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261
|
\chapter{Installation}
\hypertarget{installpage}{}\label{installpage}\index{Installation@{Installation}}
\label{installpage_md_docs_2_i_n_s_t_a_l_l_a_t_i_o_n}%
\Hypertarget{installpage_md_docs_2_i_n_s_t_a_l_l_a_t_i_o_n}%
\doxysubsection*{Dependencies}
\begin{DoxyItemize}
\item \href{http://www.htslib.org/download/}{\texttt{ HTSlib}}
\item \href{https://gcc.gnu.org/}{\texttt{ GCC}} any version after v5.\+0. Support for c++11 standard required.
\end{DoxyItemize}
Note\+:
\begin{DoxyItemize}
\item It is highly recommended that \href{https://github.com/samtools/samtools}{\texttt{ samtools}} also be installed alongside i\+Var. i\+Var uses the output of samtools mpileup to call variants and generate consensus sequences. In addition, samtools {\ttfamily sort} and {\ttfamily index} commands are very useful to setup a pipeline using i\+Var.
\end{DoxyItemize}\hypertarget{installpage_autotoc_md0}{}\doxysection{\texorpdfstring{Installing via conda}{Installing via conda}}\label{installpage_autotoc_md0}
i\+Var is available on bioconda. To install conda, please use the \href{https://conda.io/miniconda.html}{\texttt{ miniconda}} package. After intalling conda please add the following channels,
\begin{DoxyCode}{0}
\DoxyCodeLine{conda\ config\ -\/-\/add\ channels\ defaults}
\DoxyCodeLine{conda\ config\ -\/-\/add\ channels\ bioconda}
\DoxyCodeLine{conda\ config\ -\/-\/add\ channels\ conda-\/forge}
\end{DoxyCode}
To install i\+Var,
\begin{DoxyCode}{0}
\DoxyCodeLine{conda\ install\ ivar}
\end{DoxyCode}
\hypertarget{installpage_autotoc_md1}{}\doxysubsection{\texorpdfstring{Installing via homebrew}{Installing via homebrew}}\label{installpage_autotoc_md1}
i\+Var can be installed using \href{https://brew.sh/}{\texttt{ Homebrew}}.
\begin{DoxyCode}{0}
\DoxyCodeLine{brew\ install\ brewsci/bio/ivar}
\end{DoxyCode}
\hypertarget{installpage_autotoc_md2}{}\doxysection{\texorpdfstring{Installing on Mac}{Installing on Mac}}\label{installpage_autotoc_md2}
\hypertarget{installpage_autotoc_md3}{}\doxysubsection{\texorpdfstring{Installing build tools}{Installing build tools}}\label{installpage_autotoc_md3}
\href{https://developer.apple.com/xcode/}{\texttt{ Xcode}} from Apple is required to compile i\+Var (and other tools) from source. If you don\textquotesingle{}t want to install the full Xcode package from the App\+Store, you can install the Xcode command line tools,
\begin{DoxyCode}{0}
\DoxyCodeLine{xcode-\/select\ -\/-\/install}
\end{DoxyCode}
\href{https://www.gnu.org/software/automake/manual/html_node/Autotools-Introduction.html\#Autotools-Introduction}{\texttt{ GNU Autotools}} is required to compile i\+Var from source.
To install Autotools using \href{https://brew.sh/}{\texttt{ homebrew}} please use the command below,
\begin{DoxyCode}{0}
\DoxyCodeLine{brew\ install\ autoconf\ automake\ libtool}
\end{DoxyCode}
\hypertarget{installpage_autotoc_md4}{}\doxysubsection{\texorpdfstring{HTSlib installed using conda}{HTSlib installed using conda}}\label{installpage_autotoc_md4}
HTSlib can be installed with \href{https://conda.io/docs/}{\texttt{ conda}} using the command,
\begin{DoxyCode}{0}
\DoxyCodeLine{conda\ install\ -\/c\ bioconda\ htslib}
\end{DoxyCode}
The conda binary is by default installed at /opt/. You can check the installation location by running the following command,
\begin{DoxyCode}{0}
\DoxyCodeLine{which\ conda}
\end{DoxyCode}
The output of the command will be in this format -\/ /opt/conda/bin/conda or /opt/anaconda2/bin/conda or /opt/anaconda3/bin/conda depending on whether you installed miniconda or anaconda.
If the output is for example, /opt/conda/bin/conda, then you can add the path to the lib folder to \$\+LD\+\_\+\+LIBRARY\+\_\+\+PATH using the command below. You can add this to your \texorpdfstring{$\sim$}{\string~}/.bash\+\_\+profile or \texorpdfstring{$\sim$}{\string~}/.bashrc to avoid rerunning the command everytime a new bash session starts.
\begin{DoxyCode}{0}
\DoxyCodeLine{export\ LD\_LIBRARY\_PATH=\$LD\_LIBRARY\_PATH:/opt/conda/lib}
\end{DoxyCode}
\hypertarget{installpage_autotoc_md5}{}\doxysubsection{\texorpdfstring{HTSlib installed from source}{HTSlib installed from source}}\label{installpage_autotoc_md5}
Installation instructions and downloads for HTSlib can be found at \href{http://www.htslib.org/download/}{\texttt{ http\+://www.\+htslib.\+org/download/}}.
If HTSlib is installed in a non standard location, please add the following to your .bash\+\_\+profile so that i\+Var can find HTSlib dynamic libraries during runtime.
\begin{DoxyCode}{0}
\DoxyCodeLine{export\ LD\_LIBRARY\_PATH=\$LD\_LIBRARY\_PATH:/path/to/hts/lib/folder}
\end{DoxyCode}
\hypertarget{installpage_autotoc_md6}{}\doxysubsection{\texorpdfstring{Installing i\+Var}{Installing i\+Var}}\label{installpage_autotoc_md6}
To install i\+Var, run the following commands.
\begin{DoxyCode}{0}
\DoxyCodeLine{./autogen.sh}
\DoxyCodeLine{./configure}
\DoxyCodeLine{make}
\DoxyCodeLine{make\ install}
\end{DoxyCode}
If HTSlib was installed using conda, please run the following commands by supplying the prefix to the bin folder of the conda binary.
The prefix to the bin folder can be found using the command {\ttfamily which conda}. The output of the command will be in this format -\/ /opt/conda/bin/conda or /opt/anaconda2/bin/conda or /opt/anaconda3/bin/conda depending on whether you installed miniconda or anaconda. For example, if the output of the command is /opt/conda/bin/conda, the prefix to the htslib bin folder will be /opt/conda. This can be supplied to ./configure --with-\/hts=/opt/conda.
\begin{DoxyCode}{0}
\DoxyCodeLine{./autogen.sh}
\DoxyCodeLine{./configure\ -\/-\/with-\/hts=/prefix/to/bin/folder/with/HTSlib}
\DoxyCodeLine{make}
\DoxyCodeLine{make\ install}
\end{DoxyCode}
If HTSlib was installed in a non standard location, please run the following commands,
\begin{DoxyCode}{0}
\DoxyCodeLine{./autogen.sh}
\DoxyCodeLine{./configure\ -\/-\/with-\/hts=/prefix/to/bin/folder/with/HTSlib}
\DoxyCodeLine{make}
\DoxyCodeLine{make\ install}
\end{DoxyCode}
To test installation just run, {\ttfamily ivar version} and you should get the following output,
\begin{DoxyCode}{0}
\DoxyCodeLine{iVar\ version\ 1.0}
\DoxyCodeLine{}
\DoxyCodeLine{Please\ raise\ issues\ and\ bug\ reports\ at\ https://github.com/andersen-\/lab/ivar/}
\end{DoxyCode}
\hypertarget{installpage_autotoc_md7}{}\doxysection{\texorpdfstring{Installing on Linux}{Installing on Linux}}\label{installpage_autotoc_md7}
\hypertarget{installpage_autotoc_md8}{}\doxysubsection{\texorpdfstring{Installing build tools}{Installing build tools}}\label{installpage_autotoc_md8}
\href{https://www.gnu.org/software/automake/manual/html_node/Autotools-Introduction.html\#Autotools-Introduction}{\texttt{ GNU Autotools}} is required to compile i\+Var from source.
To install Autotools using \href{https://help.ubuntu.com/lts/serverguide/apt.html}{\texttt{ APT}} please use the command below,
\begin{DoxyCode}{0}
\DoxyCodeLine{apt-\/get\ install\ autotools-\/dev}
\end{DoxyCode}
\hypertarget{installpage_autotoc_md9}{}\doxysubsection{\texorpdfstring{HTSlib installed using conda}{HTSlib installed using conda}}\label{installpage_autotoc_md9}
HTSlib can be installed with \href{https://conda.io/docs/}{\texttt{ conda}} using the command,
\begin{DoxyCode}{0}
\DoxyCodeLine{conda\ install\ -\/c\ bioconda\ htslib}
\end{DoxyCode}
The conda binary is by default installed at /opt/. You can check the installation location by running the following command,
\begin{DoxyCode}{0}
\DoxyCodeLine{which\ conda}
\end{DoxyCode}
The output of the command will be in this format -\/ /opt/conda/bin/conda or /opt/anaconda2/bin/conda or /opt/anaconda3/bin/conda depending on whether you installed miniconda or anaconda.
If the output is for example, /opt/conda/bin/conda, then you can add the path to the lib folder to \$\+LD\+\_\+\+LIBRARY\+\_\+\+PATH using the command below. You can add this to your \texorpdfstring{$\sim$}{\string~}/.bash\+\_\+profile or \texorpdfstring{$\sim$}{\string~}/.bashrc to avoid rerunning the command everytime a new bash session starts.
\begin{DoxyCode}{0}
\DoxyCodeLine{export\ LD\_LIBRARY\_PATH=\$LD\_LIBRARY\_PATH:/opt/conda/lib}
\end{DoxyCode}
\hypertarget{installpage_autotoc_md10}{}\doxysubsection{\texorpdfstring{HTSlib installed from source}{HTSlib installed from source}}\label{installpage_autotoc_md10}
Installation instructions and downloads for HTSlib can be found at \href{http://www.htslib.org/download/}{\texttt{ http\+://www.\+htslib.\+org/download/}}.
If HTSlib is installed in a non standard location, please add the following to your .bash\+\_\+profile so that i\+Var can find HTSlib dynamic libraries during runtime.
\begin{DoxyCode}{0}
\DoxyCodeLine{export\ LD\_LIBRARY\_PATH=\$LD\_LIBRARY\_PATH:/path/to/hts/lib/folder}
\end{DoxyCode}
\hypertarget{installpage_autotoc_md11}{}\doxysubsection{\texorpdfstring{Installing i\+Var}{Installing i\+Var}}\label{installpage_autotoc_md11}
To install i\+Var, run the following commands.
\begin{DoxyCode}{0}
\DoxyCodeLine{./autogen.sh}
\DoxyCodeLine{./configure}
\DoxyCodeLine{make}
\DoxyCodeLine{make\ install}
\end{DoxyCode}
If HTSlib was installed using conda, please run the following commands by supplying the prefix to the bin folder of the conda binary.
The prefix to the bin folder can be found using the command {\ttfamily which conda}. The output of the command will be in this format -\/ /opt/conda/bin/conda or /opt/anaconda2/bin/conda or /opt/anaconda3/bin/conda depending on whether you installed miniconda or anaconda. For example, if the output of the command is /opt/conda/bin/conda, the prefix to the htslib bin folder will be /opt/conda. This can be supplied to ./configure --with-\/hts=/opt/conda.
\begin{DoxyCode}{0}
\DoxyCodeLine{./autogen.sh}
\DoxyCodeLine{./configure\ -\/-\/with-\/hts=/prefix/to/bin/folder/with/HTSlib}
\DoxyCodeLine{make}
\DoxyCodeLine{make\ install}
\end{DoxyCode}
If HTSlib was installed in a non standard location, please run the following commands,
\begin{DoxyCode}{0}
\DoxyCodeLine{./autogen.sh}
\DoxyCodeLine{./configure\ -\/-\/with-\/hts=/prefix/to/bin/folder/with/HTSlib}
\DoxyCodeLine{make}
\DoxyCodeLine{make\ install}
\end{DoxyCode}
To test installation just run, {\ttfamily ivar version} and you should get the following output,
\begin{DoxyCode}{0}
\DoxyCodeLine{iVar\ version\ 1.0}
\DoxyCodeLine{}
\DoxyCodeLine{Please\ raise\ issues\ and\ bug\ reports\ at\ https://github.com/andersen-\/lab/ivar/}
\end{DoxyCode}
\hypertarget{installpage_autotoc_md12}{}\doxysection{\texorpdfstring{Running from Docker}{Running from Docker}}\label{installpage_autotoc_md12}
i\+Var can also be run via \href{https://www.docker.com/}{\texttt{ Docker}}. Pull the docker image from \href{https://hub.docker.com/}{\texttt{ Docker Hub}} using the following command,
\begin{DoxyCode}{0}
\DoxyCodeLine{docker\ pull\ andersenlabapps/ivar}
\end{DoxyCode}
This docker image contains all the required dependencies to run i\+Var and the \doxysectlink{cookbookpage}{pipelines}{0} developed using i\+Var. You will have to attach a docker volume to get data into the docker container. Instructions to do so are in the \href{https://docs.docker.com/storage/volumes/}{\texttt{ Docker docs}}.
\href{https://hub.docker.com/r/andersenlabapps/ivar/}{\texttt{ i\+Var on Docker Hub}}\hypertarget{installpage_autotoc_md13}{}\doxysection{\texorpdfstring{Contact}{Contact}}\label{installpage_autotoc_md13}
For bug reports please email gkarthik\mbox{[}at\mbox{]}scripps.\+edu or raise an issue on Github.
|