-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathsetup-mac.sh
More file actions
executable file
·38 lines (27 loc) · 900 Bytes
/
setup-mac.sh
File metadata and controls
executable file
·38 lines (27 loc) · 900 Bytes
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
#!/usr/bin/env bash
# Homebrew
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
# python
brew install python
# pip
curl -O http://python-distribute.org/distribute_setup.py
python distribute_setup.py
curl -O https://raw.github.com/pypa/pip/master/contrib/get-pip.py
python get-pip.py
# wget
brew install wget
# clean after installation
rm -t tmp
# Install pysam library
pip install pysam
# Install Bio Python
pip install biopython
# install bedtools
brew install homebrew/science/bedtools
# install ART
mkdir cnvsim/ART
wget -O cnvsim/ART/art.tgz http://www.niehs.nih.gov/research/resources/assets/docs/artsrcgreatsmokymountains041716macostgz.tgz
tar -xvzf cnvsim/ART/art.tgz -C cnvsim/ART
rm cnvsim/ART/art.tgz
mv cnvsim/ART/art_src_GreatSmokyMountains_MacOS/art_illumina cnvsim/ART/art_illumina
rm -rf cnvsim/ART/art_src_GreatSmokyMountains_MacOS