-
Notifications
You must be signed in to change notification settings - Fork 1
/
Makefile
45 lines (34 loc) · 856 Bytes
/
Makefile
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
.PHONY : help
help :
echo usage: make [tool]
.PHONY : probcons
probcons :
conda install -c bioconda -c conda-forge probcons
.PHONY : mafft
mafft :
conda install -c bioconda -c conda-forge mafft
.PHONY : tcoffee
tcoffee :
conda install -c bioconda -c conda-forge t_coffee
.PHONY : muscle
muscle :
conda install -c bioconda -c conda-forge muscle
.PHONY : clustalw
clustalw :
conda install -c bioconda -c conda-forge clustalw
.PHONY : clustalo
clustalo :
conda install -c bioconda -c conda-forge clustalo
.PHONY : msaprobs
msaprobs :
conda install -c bioconda -c conda-forge msaprobs
.PHONY : disembl
disembl :
conda install -c mmwarowny -c conda-forge disembl
.PHONY : globplot
globplot :
conda install -c mmwarowny -c conda-forge globplot
.PHONY : iupred
iupred : bin/iupred/iupred
bin/iupred/iupred :
$(MAKE) -C bin/iupred GPP=$(CC)