aboutsummaryrefslogtreecommitdiff
blob: f2614551e6e7f21b536e49fea764f5255a078892 (plain)
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
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$

EAPI=5

DESCRIPTION="Pipeline to generate phylogenetic tree from SNP data"
HOMEPAGE="http://chibba.pgml.uga.edu/snphylo"
SRC_URI="http://chibba.pgml.uga.edu/snphylo/snphylo.tar.gz -> ${P}.tar.gz"
# http://github.com/thlee/SNPhylo
# http://www.biomedcentral.com/1471-2164/15/162

LICENSE="GPL-2"
SLOT="0"
KEYWORDS=""
IUSE=""

DEPEND=""
RDEPEND="${DEPEND}
	sci-biology/fastdnaml
	sci-biology/muscle
	sci-biology/phylip"
# http://chibba.pgml.uga.edu/snphylo/install_on_linux.html
# R packages (phangorn, gdsfmt, SNPRelate and getopt)
# $ apt-get -y install r-base-dev r-cran-getopt r-cran-rgl

S="${WORKDIR}"/"${PN}"

src_compile(){
	bash setup.sh || die
}

src_install(){
	dobin snphylo.sh
}