aboutsummaryrefslogtreecommitdiff
blob: 2fb312332cb36f4d88a0dd9ae2c41ebd5d15122f (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
36
37
38
39
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$

EAPI=5

PYTHON_COMPAT=( python2_7 )

inherit distutils-r1

DESCRIPTION="Check de novo assembly for chimeric contigs/transcripts"
HOMEPAGE="http://www.bcgsc.ca/platform/bioinfo/software/barnacle"
#SRC_URI="http://www.bcgsc.ca/platform/bioinfo/software/barnacle/releases/1.0.0/"${P}".tar.gz"
SRC_URI="http://www.bcgsc.ca/platform/bioinfo/software/barnacle/releases/${PV}/${P}.tar.gz"
# ftp://ftp.bcgsc.ca/supplementary/Barnacle_BMC_Genomics/aml_data.tar.gz
# http://www.bcgsc.ca/platform/bioinfo/software/barnacle/releases/1.0.3

LICENSE="bcca_2010"
SLOT="0"
KEYWORDS=""
IUSE=""

DEPEND=""
RDEPEND="${DEPEND}"

S="${S}"

# follow README.txt
src_compile(){
	cd src || die
	# Run setup.py to compile the portions of Barnacle that require compilation, and download and setup the default annotations
	./setup.py || die
}

src_install(){
	dodoc README.txt
	cd src || die
	# do something
}