blob: 58372a4f01563fc6f5ae9e1f9a8874883701c601 (
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
|
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=5
DESCRIPTION="The BLAST NR database"
HOMEPAGE="http://blast.ncbi.nlm.nih.gov/Blast.cgi?CMD=Web&PAGE_TYPE=BlastDocs&DOC_TYPE=ProgSelectionGuide"
SRC_URI=""
SLOT="0"
LICENSE="all-rights-reserved"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE=""
RDEPEND=""
DEPEND="sci-biology/ncbi-tools++"
RESTRICT="binchecks strip"
src_unpack() {
if [[ -n ${ESLEEP} ]]; then
elog "Will sleep for ${ESLEEP}"
sleep ${ESLEEP}
fi
update_blastdb.pl --verbose --verbose --decompress nr || die
}
|