-
Notifications
You must be signed in to change notification settings - Fork 13
/
install.sh
executable file
·785 lines (615 loc) · 19.5 KB
/
install.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
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
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
#!/usr/bin/env bash
# References
# http://kvz.io/blog/2013/11/21/bash-best-practices/
# http://jvns.ca/blog/2017/03/26/bash-quirks/
# exit when a command fails
set -o errexit
# exit if any pipe commands fail
set -o pipefail
# exit when your script tries to use undeclared variables
#set -o nounset
# trace what gets executed
set -o xtrace
# Bash traps
# http://aplawrence.com/Basics/trapping_errors.html
# https://stelfox.net/blog/2013/11/fail-fast-in-bash-scripts/
set -o errtrace
SCRIPT_NAME="$0"
SCRIPT_PARAMS="$@"
error_handler() {
echo
echo " ########################################################## "
echo
echo " An error occurred in:"
echo
echo " - line number: ${1}"
shift
echo " - exit status: ${1}"
shift
echo " - command: ${@}"
echo
echo " The script will abort now. User input was: "
echo
echo " ${SCRIPT_NAME} ${SCRIPT_PARAMS}"
echo
echo " Please copy and paste this error and report it via Git Hub: "
echo " https://github.com/cgat-developers/cgat-core/issues "
print_env_vars
echo " ########################################################## "
}
trap 'error_handler ${LINENO} $? ${BASH_COMMAND}' ERR INT TERM
# log installation information
log() {
echo "# install-CGAT-tools.sh log | `hostname` | `date` | $1 "
}
# report error and exit
report_error() {
echo
echo $1
echo
echo "Aborting."
echo
exit 1
}
# detect CGAT installation
detect_cgat_installation() {
if [[ -z "$CGAT_HOME" ]] ; then
if [[ -d "$HOME/cgat-install/conda-install" ]] ; then
UNINSTALL_DIR="$HOME/cgat-install"
fi
else
if [[ -d "$CGAT_HOME/conda-install" ]] ; then
UNINSTALL_DIR="$CGAT_HOME"
fi
fi
} # detect_cgat_installation
# configure environment variables
# set: CGAT_HOME, CONDA_INSTALL_DIR, CONDA_INSTALL_TYPE
get_cgat_env() {
if [[ $TRAVIS_INSTALL ]] ; then
CGAT_HOME=$TRAVIS_BUILD_DIR
CONDA_INSTALL_TYPE="cgat-core.yml"
elif [[ $JENKINS_INSTALL ]] ; then
CGAT_HOME=$WORKSPACE
CONDA_INSTALL_TYPE="cgat-core.yml"
else
if [[ -z $CGAT_HOME ]] ; then
CGAT_HOME=$HOME/cgat-install
fi
CONDA_INSTALL_TYPE="cgat-core.yml"
fi # if travis install
CONDA_INSTALL_DIR=$CGAT_HOME/conda-install
CONDA_INSTALL_ENV="cgat-core"
} # get_cgat_env
# setup environment variables
setup_env_vars() {
export CFLAGS=$CFLAGS" -I$CONDA_INSTALL_DIR/envs/$CONDA_INSTALL_ENV/include -L$CONDA_INSTALL_DIR/envs/$CONDA_INSTALL_ENV/lib"
export CPATH=$CPATH" -I$CONDA_INSTALL_DIR/envs/$CONDA_INSTALL_ENV/include -L$CONDA_INSTALL_DIR/envs/$CONDA_INSTALL_ENV/lib"
export C_INCLUDE_PATH=$C_INCLUDE_PATH:$CONDA_INSTALL_DIR/envs/$CONDA_INSTALL_ENV/include
export CPLUS_INCLUDE_PATH=$CPLUS_INCLUDE_PATH:$CONDA_INSTALL_DIR/envs/$CONDA_INSTALL_ENV/include
export LIBRARY_PATH=$LIBRARY_PATH:$CONDA_INSTALL_DIR/envs/$CONDA_INSTALL_ENV/lib
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$CONDA_INSTALL_DIR/envs/$CONDA_INSTALL_ENV/lib:$CONDA_INSTALL_DIR/envs/$CONDA_INSTALL_ENV/lib/R/lib
} # setup_env_vars
# print related environment variables
print_env_vars() {
echo
echo " Debugging: "
echo " CFLAGS: "$CFLAGS
echo " CPATH: "$CPATH
echo " C_INCLUDE_PATH: "$C_INCLUDE_PATH
echo " CPLUS_INCLUDE_PATH: "$CPLUS_INCLUDE_PATH
echo " LIBRARY_PATH: "$LIBRARY_PATH
echo " LD_LIBRARY_PATH: "$LD_LIBRARY_PATH
echo " CGAT_HOME: "$CGAT_HOME
echo " CONDA_INSTALL_DIR: "$CONDA_INSTALL_DIR
echo " CONDA_INSTALL_TYPE: "$CONDA_INSTALL_TYPE
echo " CONDA_INSTALL_ENV: "$CONDA_INSTALL_ENV
echo " PYTHONPATH: "$PYTHONPATH
[[ ! $INSTALL_TEST ]] && echo " INSTALL_BRANCH: "$INSTALL_BRANCH
[[ ! $INSTALL_TEST ]] && echo " RELEASE: "$RELEASE
[[ ! $INSTALL_TEST ]] && echo " CODE_DOWNLOAD_TYPE: "$CODE_DOWNLOAD_TYPE
echo
} # print_env_vars
# Travis installations are running out of RAM
# with large conda installations. Issue has been submitted here:
# https://github.com/conda/conda/issues/1197
# While we wait for a response, we'll try to clean up the conda
# installation folder as much as possible
conda_cleanup() {
conda clean --index-cache
conda clean --lock
conda clean --tarballs -y
conda clean --packages -y
}
# proceed with conda installation
conda_install() {
log "installing conda"
detect_cgat_installation
if [[ -n "$UNINSTALL_DIR" ]] ; then
echo
echo " An installation of the CGAT code was found in: $UNINSTALL_DIR"
echo " Please use --location to install CGAT code in a different location "
echo " or uninstall the current version before proceeding."
echo
echo " Installation is aborted."
echo
exit 1
fi
# get environment variables: CGAT_HOME, CONDA_INSTALL_DIR, CONDA_INSTALL_TYPE
get_cgat_env
mkdir -p $CGAT_HOME
cd $CGAT_HOME
# select Miniconda bootstrap script depending on Operating System
MINICONDA=
if [[ `uname` == "Linux" ]] ; then
# Conda 4.4 breaks everything again!
# Conda 4.5 looks better
MINICONDA="Miniconda3-latest-Linux-x86_64.sh"
#MINICONDA="Miniconda3-4.3.31-Linux-x86_64.sh"
elif [[ `uname` == "Darwin" ]] ; then
# Conda 4.4 breaks everything again!
# Conda 4.5 looks better
MINICONDA="Miniconda3-latest-MacOSX-x86_64.sh"
#MINICONDA="Miniconda3-4.3.31-MacOSX-x86_64.sh"
else
echo
echo " Unsupported operating system detected. "
echo
echo " Aborting installation... "
echo
exit 1
fi
log "downloading miniconda"
# download and install conda
curl -O https://repo.anaconda.com/miniconda/${MINICONDA}
log "installing miniconda"
bash ${MINICONDA} -b -p $CONDA_INSTALL_DIR
source ${CONDA_INSTALL_DIR}/bin/activate
hash -r
# install cgat environment
log "updating conda environment"
# Conda 4.4 breaks everything again!
# Conda 4.5 looks better
# conda install --quiet --yes 'conda=4.3.33'
conda update --all --yes
conda info -a
log "installing CGAT environment"
# Now using conda environment files:
# https://conda.io/docs/using/envs.html#use-environment-from-file
[[ -z ${TRAVIS_BRANCH} ]] && TRAVIS_BRANCH=${INSTALL_BRANCH}
curl -o env.yml -O https://raw.githubusercontent.com/cgat-developers/cgat-core/${TRAVIS_BRANCH}/conda/environments/${CONDA_INSTALL_TYPE}
conda env create --quiet --file env.yml
conda env export --name ${CONDA_INSTALL_ENV}
# activate cgat environment
log "activating environment"
source $CONDA_INSTALL_DIR/bin/activate $CONDA_INSTALL_ENV
log "installing CGAT code into conda environment"
# if installation is 'devel' (outside of travis), checkout latest version from github
if [[ -z ${TRAVIS_INSTALL} ]] ; then
DEV_RESULT=0
if [[ $INSTALL_DEVEL ]] || [[ $JENKINS_INSTALL ]] ; then
# download the code out of jenkins
if [[ -z ${JENKINS_INSTALL} ]] ; then
# make sure you are in the CGAT_HOME folder
cd $CGAT_HOME
if [[ $CODE_DOWNLOAD_TYPE -eq 0 ]] ; then
# get the latest version from Git Hub in zip format
curl -LOk https://github.com/cgat-developers/cgat-core/archive/$INSTALL_BRANCH.zip
unzip $INSTALL_BRANCH.zip
rm $INSTALL_BRANCH.zip
if [[ ${RELEASE} ]] ; then
NEW_NAME=`echo $INSTALL_BRANCH | sed 's/^v//g'`
mv cgat-core-$NEW_NAME/ cgat-core/
else
mv cgat-core-$INSTALL_BRANCH/ cgat-core/
fi
elif [[ $CODE_DOWNLOAD_TYPE -eq 1 ]] ; then
# get latest version from Git Hub with git clone
git clone --branch=$INSTALL_BRANCH https://github.com/cgat-developers/cgat-core.git
elif [[ $CODE_DOWNLOAD_TYPE -eq 2 ]] ; then
# get latest version from Git Hub with git clone
git clone --branch=$INSTALL_BRANCH [email protected]:cgat-developers/cgat-core.git
else
report_error " Unknown download type for CGAT code... "
fi
# make sure you are in the CGAT_HOME/cgat-core folder
cd $CGAT_HOME/cgat-core
fi
# Set up other environment variables
setup_env_vars
# Python preparation
# remove install_requires (no longer required with conda package)
sed -i'' -e '/REPO_REQUIREMENT/,/pass/d' setup.py
sed -i'' -e '/# dependencies/,/dependency_links=dependency_links,/d' setup.py
log "installing cgat-core repo"
python setup.py develop
if [[ $? -ne 0 ]] ; then
echo
echo " There was a problem doing: 'python setup.py develop' "
echo " Installation did not finish properly. "
echo
echo " Please submit this issue via Git Hub: "
echo " https://github.com/cgat-developers/cgat-core/issues "
echo
print_env_vars
fi # if-$?
# revert setup.py if downloaded with git
[[ $CODE_DOWNLOAD_TYPE -ge 1 ]] && git checkout -- setup.py
# environment pinning
# python scripts/conda.py
fi # if INSTALL_DEVEL
# check whether conda create went fine
if [[ $DEV_RESULT -ne 0 ]] ; then
echo
echo " There was a problem installing the code with conda. "
echo " Installation did not finish properly. "
echo
echo " Please submit this issue via Git Hub: "
echo " https://github.com/cgat-developers/cgat-core/issues "
echo
print_env_vars
else
clear
echo
echo " The code was successfully installed!"
echo
echo " To activate the CGAT environment type: "
echo " $ source $CONDA_INSTALL_DIR/etc/profile.d/conda.sh"
echo " $ conda activate base"
echo " $ conda activate $CONDA_INSTALL_ENV"
echo
echo " To deactivate the environment, use:"
echo " $ conda deactivate"
echo
fi # if-$ conda create
fi # if travis install
} # conda install
# test code with conda install
conda_test() {
log "starting conda_test"
# get environment variables: CGAT_HOME, CONDA_INSTALL_DIR, CONDA_INSTALL_TYPE
get_cgat_env
setup_env_vars
# setup environment and run tests
if [[ $TRAVIS_INSTALL ]] || [[ $JENKINS_INSTALL ]] ; then
# enable Conda env
log "activating CGAT conda environment"
source $CONDA_INSTALL_DIR/bin/activate $CONDA_INSTALL_ENV
# show conda environment used for testing
conda env export
# python preparation
log "install CGAT code into conda environment"
cd $CGAT_HOME
# remove install_requires (no longer required with conda package)
sed -i'' -e '/REPO_REQUIREMENT/,/pass/d' setup.py
sed -i'' -e '/# dependencies/,/dependency_links=dependency_links,/d' setup.py
python setup.py develop
# run tests
log "running tests..."
if [[ $TEST_ALL ]] ; then
pytest --pep8 tests
elif [[ $TEST_IMPORT ]] ; then
pytest tests/test_import.py ;
elif [[ $TEST_STYLE ]] ; then
pytest --pep8 -m pep8
fi
else
source $CONDA_INSTALL_DIR/bin/activate $CONDA_INSTALL_ENV
RET=$( (conda list | grep cgat-scripts) || true )
if [[ -z "${RET}" ]] ; then
# this is "cgat-devel" so tests can be run
# make sure you are in the CGAT_HOME/cgat-core folder
cd $CGAT_HOME/cgat-core
# remove install_requires (no longer required with conda package)
sed -i'' -e '/REPO_REQUIREMENT/,/pass/d' setup.py
sed -i'' -e '/# dependencies/,/dependency_links=dependency_links,/d' setup.py
python setup.py develop
OUTPUT_DIR=`pwd`
# run tests
log "running tests..."
pytest tests >& tests.output
if [[ $? -eq 0 ]] ; then
echo
echo " tests passed successfully! "
echo
else
echo
echo " tests failed. Please see $OUTPUT_DIR/tests.output file for detailed output. "
echo
print_env_vars
fi
else
# in this case a production installation was found so no need to run tests
echo
echo " You installed the production release, which has been properly tested before. "
echo " No need to test. Exiting now... "
echo
exit 0
fi
fi # if travis or jenkins
} # conda_test
# update conda installation
conda_update() {
# get environment variables: CGAT_HOME, CONDA_INSTALL_DIR, CONDA_INSTALL_TYPE
get_cgat_env
source $CONDA_INSTALL_DIR/bin/activate $CONDA_INSTALL_ENV
conda update --all
if [[ ! $? -eq 0 ]] ; then
echo
echo " There was a problem updating the installation. "
echo
echo " Please submit this issue via Git Hub: "
echo " https://github.com/cgat-developers/cgat-core/issues "
echo
else
echo
echo " All packages were succesfully updated. "
echo
fi
} # conda_update
# unistall CGAT code collection
uninstall() {
detect_cgat_installation
if [[ -z "$UNINSTALL_DIR" ]] ; then
echo
echo " The location of the CGAT code was not found. "
echo " Please uninstall manually."
echo
exit 1
else
rm -rf $UNINSTALL_DIR
if [[ $? -eq 0 ]] ; then
echo
echo " CGAT code successfully uninstalled."
echo
exit 0
else
echo
echo " There was a problem uninstalling the CGAT code."
echo " Please uninstall manually."
echo
exit 1
fi
fi
}
# test whether --git and --git-ssh download is doable
test_git() {
git --version >& /dev/null || GIT_AVAIL=$?
if [[ $GIT_AVAIL -ne 0 ]] ; then
echo
echo " Git is not available but --git or --git-ssh option was given."
echo " Please rerun this script on a computer with git installed "
echo " or try again without --git or --git-ssh"
report_error " "
fi
}
# test whether --git-ssh download is doable
test_git_ssh() {
ssh-add -L >& /dev/null || SSH_KEYS_LOADED=$?
if [[ $SSH_KEYS_LOADED -ne 0 ]] ; then
echo
echo " Please load your ssh keys for GitHub before proceeding!"
echo
echo " Try: "
echo " 1. eval \$(ssh-agent)"
echo " 2. ssh-add ~/.ssh/id_rsa # or the file where your private key is"
report_error " and run this script again. "
fi
}
# don't mix branch and release options together
test_mix_branch_release() {
# don't mix branch and release options together
if [[ $RELEASE ]] ; then
if [[ "$INSTALL_BRANCH" != "master" ]] ; then
echo
echo " You cannot mix git branches and releases for the installation."
echo
echo " Your input was: "$SCRIPT_PARAMS
report_error " Please either use branches or releases but not both."
fi
fi
}
# test whether a branch exists in the cgat-core repository
# https://stackoverflow.com/questions/12199059/how-to-check-if-an-url-exists-with-the-shell-and-probably-curl
test_core_branch() {
RELEASE_TEST=0
curl --output /dev/null --silent --head --fail https://raw.githubusercontent.com/cgat-developers/cgat-core/${INSTALL_BRANCH}/README.rst || RELEASE_TEST=$?
if [[ ${RELEASE_TEST} -ne 0 ]] ; then
echo
echo " The branch provided for cgat-core does not exist: ${INSTALL_BRANCH}"
echo
echo " Please have a look at valid branches here: "
echo " https://github.com/cgat-developers/cgat-core/branches"
echo
report_error " Please use a valid branch and try again."
fi
}
# test whether a release exists or not
# https://stackoverflow.com/questions/12199059/how-to-check-if-an-url-exists-with-the-shell-and-probably-curl
test_release() {
RELEASE_TEST=0
curl --output /dev/null --silent --head --fail https://raw.githubusercontent.com/cgat-developers/cgat-core/${RELEASE}/README.rst || RELEASE_TEST=$?
if [[ ${RELEASE_TEST} -ne 0 ]] ; then
echo
echo " The release number provided does not exist: ${RELEASE}"
echo
echo " Please have a look at valid releases here: "
echo " https://github.com/cgat-developers/cgat-core/releases"
echo
echo " An example of valid release is: --release v0.4.0"
report_error " Please use a valid release and try again."
fi
}
# clean up environment
# deliberately use brute force
cleanup_env() {
set +e
source deactivate >& /dev/null || true
source deactivate >& /dev/null || true
unset -f conda || true
unset PYTHONPATH || true
# Next actions disabled. Please see:
# https://github.com/cgat-developers/cgat-core/issues/44
#module purge >& /dev/null || true
#mymodule purge >& /dev/null || true
set -e
}
# function to display help message
help_message() {
echo
echo " This script uses Conda to install cgat-core. To proceed, please type:"
echo " ./install.sh [--location </full/path/to/folder/without/trailing/slash>]"
echo
echo " The default install folder will be: $HOME/cgat-install"
echo
echo " It will create a new Conda environment ready to run the CGAT code."
echo
echo " By default the master branch will be installed:"
echo " https://github.com/cgat-developers/cgat-core"
echo
echo " Change that with:"
echo " ./install.sh --branch <name-of-branch>"
echo
echo " To test the installation:"
echo " ./install.sh --test [--location </full/path/to/folder/without/trailing/slash>]"
echo
echo " To update the Conda packages:"
echo " ./install.sh --update [--location </full/path/to/folder/without/trailing/slash>]"
echo
echo " To uninstall the CGAT code:"
echo " ./install.sh --uninstall [--location </full/path/to/folder/without/trailing/slash>]"
echo
echo " Please submit any issues via Git Hub:"
echo " https://github.com/cgat-developers/cgat-core/issues"
echo
exit 1
} # help_message
# the script starts here
cleanup_env
if [[ $# -eq 0 ]] ; then
help_message
fi
# travis execution
TRAVIS_INSTALL=
# jenkins testing
JENKINS_INSTALL=
# conda installation type
INSTALL_DEVEL=
# test current installation
INSTALL_TEST=
# update current installation
INSTALL_UPDATE=
# uninstall CGAT code
UNINSTALL=
UNINSTALL_DIR=
# where to install CGAT code
CGAT_HOME=
# how to download CGAT code:
# 0 = as zip (default)
# 1 = git clone with https
# 2 = git clone with ssh
CODE_DOWNLOAD_TYPE=0
# which github branch to use (default: master)
INSTALL_BRANCH="master"
# Install a released version?
RELEASE=
# parse input parameters
# https://stackoverflow.com/questions/402377/using-getopts-in-bash-shell-script-to-get-long-and-short-command-line-options
# https://stackoverflow.com/questions/192249/how-do-i-parse-command-line-arguments-in-bash
while [[ $# -gt 0 ]]
do
key="$1"
case $key in
--help)
help_message
;;
--install-repo)
INSTALL_DEVEL=1
shift
;;
--travis)
TRAVIS_INSTALL=1
shift # past argument
;;
--jenkins)
JENKINS_INSTALL=1
shift # past argument
;;
--zip)
CODE_DOWNLOAD_TYPE=0
shift
;;
--git)
CODE_DOWNLOAD_TYPE=1
shift
test_git
;;
--git-ssh)
CODE_DOWNLOAD_TYPE=2
shift
test_git
test_git_ssh
;;
--test)
INSTALL_TEST=1
shift
;;
--update)
INSTALL_UPDATE=1
shift
;;
--uninstall)
UNINSTALL=1
shift
;;
--location)
CGAT_HOME="$2"
shift 2
;;
--branch)
INSTALL_BRANCH="$2"
test_mix_branch_release
shift 2
;;
--release)
RELEASE="$2"
test_mix_branch_release
test_release
INSTALL_BRANCH="$2"
shift 2
;;
*)
help_message
;;
esac
done
# sanity check 2: make sure one installation option is selected
if [[ -z $INSTALL_TEST ]] && \
[[ -z $INSTALL_DEVEL ]] && \
[[ -z $TRAVIS_INSTALL ]] && \
[[ -z $JENKINS_INSTALL ]] ; then
report_error " You need to select either --devel or --production. "
fi
# sanity check 3: make sure there is space available in the destination folder (10 GB) in 512-byte blocks
[[ -z ${TRAVIS_INSTALL} ]] && \
mkdir -p ${CGAT_HOME} && \
[[ `df -P ${CGAT_HOME} | awk '/\// {print $4}'` -lt 20971520 ]] && \
report_error " Not enough disk space available on the installation folder: "$CGAT_HOME
# perform actions according to the input parameters processed
if [[ $TRAVIS_INSTALL ]] || [[ $JENKINS_INSTALL ]] ; then
conda_install
conda_test
else
if [[ $INSTALL_DEVEL ]] ; then
conda_install
fi
if [[ $INSTALL_TEST ]] ; then
conda_test
fi
if [[ $INSTALL_UPDATE ]] ; then
conda_update
fi
if [[ $UNINSTALL ]] ; then
uninstall
fi
fi # if-variables