Gentoo Archives: gentoo-commits

From: Nicolas Bock <nicolasbock@×××××.com>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/sci:master commit in: sci-chemistry/panav/
Date: Wed, 31 Jul 2013 16:45:44
Message-Id: 1375178545.e778add7c5e5b9a163df522b00ac5fe85bef0d77.nicolasbock@gentoo
1 commit: e778add7c5e5b9a163df522b00ac5fe85bef0d77
2 Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jul 30 10:02:25 2013 +0000
4 Commit: Nicolas Bock <nicolasbock <AT> gmail <DOT> com>
5 CommitDate: Tue Jul 30 10:02:25 2013 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=e778add7
7
8 sci-chemistry/panav: New addition written by me
9
10 Package-Manager: portage-2.2.0_alpha190
11
12 ---
13 sci-chemistry/panav/ChangeLog | 10 +++++++++
14 sci-chemistry/panav/metadata.xml | 30 +++++++++++++++++++++++++
15 sci-chemistry/panav/panav-0.20130730.ebuild | 34 +++++++++++++++++++++++++++++
16 3 files changed, 74 insertions(+)
17
18 diff --git a/sci-chemistry/panav/ChangeLog b/sci-chemistry/panav/ChangeLog
19 new file mode 100644
20 index 0000000..f6add7e
21 --- /dev/null
22 +++ b/sci-chemistry/panav/ChangeLog
23 @@ -0,0 +1,10 @@
24 +# ChangeLog for sci-chemistry/panav
25 +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
26 +# $Header: $
27 +
28 +*panav-0.20130730 (30 Jul 2013)
29 +
30 + 30 Jul 2013; Justin Lecher <jlec@g.o> +panav-0.20130730.ebuild,
31 + +metadata.xml:
32 + New addition written by me
33 +
34
35 diff --git a/sci-chemistry/panav/metadata.xml b/sci-chemistry/panav/metadata.xml
36 new file mode 100644
37 index 0000000..3eacfae
38 --- /dev/null
39 +++ b/sci-chemistry/panav/metadata.xml
40 @@ -0,0 +1,30 @@
41 +<?xml version="1.0" encoding="UTF-8"?>
42 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
43 +<pkgmetadata>
44 + <herd>sci-chemistry</herd>
45 + <maintainer>
46 + <email>jlec@g.o</email>
47 + </maintainer>
48 + <longdescription>
49 +It has been estimated that more than 20% of the proteins in the BMRB are
50 +improperly referenced and that about 1% of all chemical shift assignments are
51 +mis-assigned. These statistics also reflect the likelihood that any newly
52 +assigned protein will have shift assignment or shift referencing errors. The
53 +relatively high frequency of these errors continues to be a concern for the
54 +biomolecular NMR community. While several programs do exist to detect and/or
55 +correct chemical shift mis-referencing or chemical shift mis-assignments, most
56 +can only do one, or the other. The one program (SHIFTCOR) that is capable of
57 +handling both chemical shift mis-referencing and mis-assignments, requires the
58 +3D structure coordinates of the target protein. Given that chemical shift
59 +mis-assignments and chemical shift re-referencing issues should ideally be
60 +addressed prior to 3D structure determination, there is a clear need to develop
61 +a structure-independent approach. Here, we present a new structure-independent
62 +protocol, which is based on using residue-specific and secondary
63 +structure-specific chemical shift distributions calculated over
64 +small (3–6 residue) fragments to identify mis-assigned resonances. The method
65 +is also able to identify and re-reference mis-referenced chemical shift
66 + assignments. Comparisons against existing re-referencing or mis-assignment
67 + detection programs show that the method is as good or superior to existing
68 + approaches.
69 +</longdescription>
70 +</pkgmetadata>
71
72 diff --git a/sci-chemistry/panav/panav-0.20130730.ebuild b/sci-chemistry/panav/panav-0.20130730.ebuild
73 new file mode 100644
74 index 0000000..bc3d32c
75 --- /dev/null
76 +++ b/sci-chemistry/panav/panav-0.20130730.ebuild
77 @@ -0,0 +1,34 @@
78 +# Copyright 1999-2013 Gentoo Foundation
79 +# Distributed under the terms of the GNU General Public License v2
80 +# $Header: $
81 +
82 +EAPI=5
83 +
84 +inherit java-pkg-2
85 +
86 +MY_PN="PANAV"
87 +
88 +DESCRIPTION="Probabilistic approach for validating protein NMR chemical shift assignments"
89 +HOMEPAGE="http://link.springer.com/article/10.1007%2Fs10858-010-9407-y/fulltext.html"
90 +SRC_URI="http://www.wishartlab.com/download/${MY_PN}.zip -> ${P}.zip"
91 +
92 +SLOT="0"
93 +LICENSE="all-rights-reserved"
94 +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
95 +IUSE=""
96 +
97 +RDEPEND="
98 + dev-java/cos
99 + >=virtual/jre-1.6"
100 +DEPEND="${RDEPEND}"
101 +
102 +S="${WORKDIR}"/${MY_PN}
103 +
104 +src_compile() { :; }
105 +
106 +src_install() {
107 + java-pkg_newjar ${MY_PN}.jar ${PN}.jar
108 + java-pkg_dolauncher
109 + java-pkg_regjar "${EPREFIX}"/usr/share/cos/lib/cos.jar
110 + dodoc README
111 +}