-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitpod.yml
78 lines (70 loc) · 2.58 KB
/
.gitpod.yml
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
tasks:
- name: download software/binaries
init: |
# create directory "bin" to download all your binaries
mkdir -p /workspace/bin
# enter into "bin directory"
cd /workspace/bin
################### MUSCLE
# download muscle
wget https://github.com/rcedgar/muscle/releases/download/5.1.0/muscle5.1.linux_intel64
# rename downloaded binary
mv muscle5.1.linux_intel64 muscle
# make the binary executable
chmod u+x muscle
# check if it works
./muscle
cd /workspace/bin
################### FastTree
# download FastTree
wget http://www.microbesonline.org/fasttree/FastTree
# make the binary executable
chmod u+x FastTree
# check if it works
./FastTree
cd /workspace/bin
################### Clustal Omega
# download Clustal Omega
wget http://www.clustal.org/omega/clustalo-1.2.4-Ubuntu-x86_64
# rename downloaded binary
mv clustalo-1.2.4-Ubuntu-x86_64 clustalo
# make the binary executable
chmod u+x clustalo
# check if it works
./clustalo --version
cd /workspace/bin
################### MrBayes
# mkdir -p /workspace/software
# cd /workspace/software
# wget https://github.com/NBISweden/MrBayes/releases/download/v3.2.7/mrbayes-3.2.7.tar.gz
# tar -xzf mrbayes-3.2.7.tar.gz
# cd mrbayes-3.2.7
# mkdir -p /workspace/local
# ./configure --prefix=/workspace/local --bindir=/workspace/bin
# make
# make install
# cd /workspace/bin
################## clean-up
clear
cd /workspace
vscode:
extensions:
# enable pdf files for viewing in VS Code
- anwar.papyrus-pdf
github:
prebuilds:
# enable for the master/default branch (defaults to true)
master: true
# enable for all branches in this repo (defaults to false)
branches: true
# enable for pull requests coming from this repo (defaults to true)
pullRequests: true
# enable for pull requests coming from forks (defaults to false)
pullRequestsFromForks: true
# configure whether Gitpod registers itself as a status check to pull requests
addCheck: false
# add a "Review in Gitpod" button as a comment to pull requests (defaults to true)
addComment: false
# add a "Review in Gitpod" button to pull requests (defaults to false)
addBadge: true
workspaceLocation: "/workspace"