debian/ 0000755 0000000 0000000 00000000000 12232157073 007170 5 ustar debian/psize.1.xml 0000644 0000000 0000000 00000011467 11363556231 011217 0 ustar
psize">
]>
PDB2PQR Manual
2008-06-04
psize
ManuelPrinz
Wrote this manpage for the Debian System.
debian@pinguinkiste.de
2008Manuel Prinz
psize
1
psize
Get dimensions and other information from PQR files
psize
psize
DESCRIPTION
&psize; derives information from PQR files to preprare the models of proteins and chemicals for electrostatics calculations. The tool calculates dimensions for coarse and fine grids, grid spacings, box size and estimates the memory required to perform an electrostatics calculation.
The calculation of this information can be influenced by giving constraints to &psize; as parameters.
OPTIONS
&psize; accepts the following options:
Print a help message and exit.
Factor by which to expand the molecule dimensions to get the coarse grid dimensions
Amount to add to the molecule dimensions to get the fine grid dimensions.
Desired fine mesh resolution.
Number of bytes per grid point required for sequential MG calculation.
Maximum MB allowed for sequential MG calculation. Adjust this to force the script to perform faster calculations (which require more parallelism).
Overlap factor between mesh partitions.
Maximum factor by which a domain dimension can be reduced during focusing.
SEE ALSO
apbs1, pdb2pqr1
debian/control 0000644 0000000 0000000 00000004376 12232147005 010577 0 ustar Source: pdb2pqr
Maintainer: Debian Med
Uploaders: Steffen Moeller ,
Manuel Prinz ,
Andreas Tille
Section: science
Priority: optional
Build-Depends: debhelper (>= 9),
gfortran,
swig,
xmlto,
openbabel,
autoconf,
automake,
libtool,
autotools-dev,
python-dev,
python-numpy
Standards-Version: 3.9.4
XS-Python-Version: 2.7
Vcs-Browser: http://anonscm.debian.org/viewvc/debian-med/trunk/packages/pdb2pqr/trunk/
Vcs-Svn: svn://anonscm.debian.org/debian-med/trunk/packages/pdb2pqr/trunk/
Homepage: http://pdb2pqr.poissonboltzmann.org/pdb2pqr/
Package: pdb2pqr
XB-Python-Version: ${python:Versions}
Architecture: any
Depends: ${shlibs:Depends},
${misc:Depends},
${python:Depends},
python-numpy
Suggests: apbs
Enhances: autodocktools
Conflicts: propka
Provides: propka
Replaces: propka
Description: Preparation of protein structures for electrostatics calculations
PDB2PQR is a Python software package that automates many of the common
tasks of preparing structures for continuum electrostatics calculations.
It thus provides a platform-independent utility for converting protein files
in PDB format to PQR format. These tasks include:
* Adding a limited number of missing heavy atoms to biomolecular structures
* Determining side-chain pKas
* Placing missing hydrogens
* Optimizing the protein for favorable hydrogen bonding
* Assigning charge and radius parameters from a variety of force fields
.
This package also includes PropKa, a tool to modify the protonation state of
protein structures in the Protein Data Bank (PDB) format to match a given pKa
value. It can also be used to refine NMR structures, which often yield
inaccurate pKa values for some residues.
Package: pdb2pqr-doc
Architecture: all
Section: doc
Depends: ${misc:Depends}
Recommends: pdb2pqr
Description: example files accompanying pdb2pqr
Files containing protein structures tend to become large very quickly and
most users of this package will refrain from their installation, particularly
on larger clusters.
debian/pdb2pqr-doc.docs 0000644 0000000 0000000 00000000103 11024213155 012141 0 ustar doc/userguide.html
doc/programmerguide.html
doc/images/
doc/pydoc/
debian/wrapper.sh 0000644 0000000 0000000 00000000147 11017563377 011216 0 ustar #!/bin/sh
app=@SCRIPT@
if [ -x $app ]; then
$app $*
else
echo "No executable at '$app'."
exit -1
fi
debian/rules 0000755 0000000 0000000 00000005536 12232155411 010253 0 ustar #!/usr/bin/make -f
# -*- mode: makefile; coding: utf-8 -*-
PACKAGE := $(firstword $(shell dh_listpackages))
VERSION := $(shell dpkg-parsechangelog | awk '/^Version:/ { print $$2 }')
UPSTREAM := $(shell echo "$(VERSION)" | sed 's/-.\+$$//')
# Compile with -fPIC on all platforms (fix for #636204, #654240)
export DEB_CFLAGS_MAINT_APPEND = -fPIC -I/usr/share/pyshared/numpy/core/include/numpy
export DEB_CPPFLAGS_MAINT_APPEND = -fPIC -I/usr/share/pyshared/numpy/core/include/numpy
export DEB_CXXFLAGS_MAINT_APPEND = -fPIC -I/usr/share/pyshared/numpy/core/include/numpy
export DEB_FFLAGS_MAINT_APPEND = -fPIC
%:
dh $@ --with python2 --with autotools_dev
override_dh_auto_clean:
( cd pdb2pka && \
if [ -e pMC_mult_wrap.cpp.saved ]; then mv pMC_mult_wrap.cpp.saved pMC_mult_wrap.cpp; fi && \
if [ -e pMC_mult.py.saved ]; then mv pMC_mult.py.saved pMC_mult.py; fi )
dh_auto_clean
override_dh_auto_configure:
dh_auto_configure
( cd pdb2pka && \
cp -a pMC_mult_wrap.cpp pMC_mult_wrap.cpp.saved && \
cp -a pMC_mult.py pMC_mult.py.saved && \
swig -c++ -python -o pMC_mult_wrap.cpp pMC_mult.i )
# Disable tests, as they need an internet connection to download files
override_dh_auto_test:
override_dh_auto_install:
# Install Debian-provided stuff
# Install wrappers
for app in /usr/share/pdb2pqr/pdb2pqr.py /usr/share/pdb2pqr/src/psize.py; do \
sed -e "s,@SCRIPT@,$${app}," debian/wrapper.sh \
>debian/pdb2pqr/usr/bin/$$(basename $${app} .py) && \
chmod 0755 debian/pdb2pqr/usr/bin/$$(basename $${app} .py); \
done
for app in /usr/share/pdb2pqr/propka30/propka.py; do \
sed -e "s,@SCRIPT@,$${app}," debian/wrapper.sh \
>debian/pdb2pqr/usr/bin/$$(basename $${app} .py) && \
chmod 0755 debian/pdb2pqr/usr/bin/$$(basename $${app} .py); \
done
# Install man pages
xmlto -o debian/pdb2pqr/usr/share/man/man1/ man debian/pdb2pqr.1.xml
xmlto -o debian/pdb2pqr/usr/share/man/man1/ man debian/psize.1.xml
xmlto -o debian/pdb2pqr/usr/share/man/man1/ man debian/propka.1.xml
# dh_auto_install
override_dh_fixperms:
dh_fixperms
chmod 0644 debian/pdb2pqr/usr/share/pdb2pqr/main.py
chmod 0644 debian/pdb2pqr/usr/share/pdb2pqr/main_cgi.py
chmod 0644 debian/pdb2pqr/usr/share/pdb2pqr/pdb2pka/ligandclean/__init__.py
chmod 0644 debian/pdb2pqr/usr/share/pdb2pqr/pdb2pka/pka_routines.py
chmod 0644 debian/pdb2pqr/usr/share/pdb2pqr/pdb2pka/pKaIO_compat.py
chmod 0644 debian/pdb2pqr/usr/share/pdb2pqr/pdb2pka/pKa_utility_functions_compat.py
chmod 0755 debian/pdb2pqr/usr/share/pdb2pqr/propka30/propka.py
# Remark: The following uscan command requires devscripts > 2.12.4 which is not
# yet released at the time of this package release. The code can be obtained
# via
# git clone git://tille@git.debian.org/git/users/tille/devscripts.git
# and then use scripts/uscan.pl
get-orig-source:
uscan --verbose --force-download --repack-compression xz
debian/pdb2pqr.links 0000644 0000000 0000000 00000000375 11770626763 011626 0 ustar usr/lib/pdb2pqr/pdb2pka/_pMC_mult.so usr/share/pdb2pqr/pdb2pka/_pMC_mult.so
usr/lib/pdb2pqr/pdb2pka/substruct/Algorithms.so usr/share/pdb2pqr/pdb2pka/substruct/Algorithms.so
#usr/lib/pdb2pqr/propka/_propkalib.so usr/share/pdb2pqr/propka/_propkalib.so
debian/watch 0000644 0000000 0000000 00000000141 12232152264 010212 0 ustar version=3
opts=dversionmangle=s/[~+]dfsg[0-9]*// \
http://sf.net/pdb2pqr/pdb2pqr-(.*)\.tar\.gz
debian/pdb2pqr.docs 0000644 0000000 0000000 00000000036 11521107747 011416 0 ustar AUTHORS
ChangeLog
NEWS
README
debian/pdb2pqr-doc.doc-base 0000644 0000000 0000000 00000000410 11521113111 012660 0 ustar Document: pdb2pqr
Title: PDB2PQR User Guide
Author: Nathan Baker and others
Abstract: This guide explains the use of PDB2PQR
Section: Science/Chemistry
Format: HTML
Index: /usr/share/doc/pdb2pqr-doc/userguide.html
Files: /usr/share/doc/pdb2pqr-doc/userguide.html
debian/upstream 0000644 0000000 0000000 00000003131 11757452051 010756 0 ustar Name: PDB2PQR
Homepage: http://www.poissonboltzmann.org/pdb2pqr
Registration: http://spreadsheets.google.com/viewform?hl=en&formkey=dHFpa3Nvcnl0cjR1U3g3UTdSYU1pWWc6MA..
Reference:
- Author: Todd J Dolinsky and Paul Czodrowski and Hui Li and Jens E Nielsen and Jan H Jensen and Gerhard Klebe and Nathan A Baker
Title: "PDB2PQR: Expanding and upgrading automated preparation of biomolecular structures for molecular simulations"
Journal: Nucleic Acids Research
Year: 2007
Volume: 35
Pages: W522-5
DOI: 10.1093/nar/gkm276
PMID: 17488841
URL: http://nar.oxfordjournals.org/content/35/suppl_2/W522
eprint: http://nar.oxfordjournals.org/content/35/suppl_2/W522.full.pdf+html
- Author: Todd J Dolinsky and Jens E Nielsen and J Andrew McCammon and Nathan A Baker
Title: "PDB2PQR: an automated pipeline for the setup, execution, and analysis of Poisson-Boltzmann electrostatics calculations"
Journal: Nucleic Acids Research
Year: 2004
Volume: 32
Pages: W665-W667
DOI: 10.1093/nar/gkh381
PMID: 15215472
URL: http://nar.oxfordjournals.org/content/32/suppl_2/W665.abstract
eprint: http://nar.oxfordjournals.org/content/32/suppl_2/W665.full.pdf+html
- Debian-Package: propka
Author: Hui Li and Andrew D Robertson and Jan H Jensen
Title: Very fast empirical prediction and rationalization of protein pKa values
Journal: Proteins
Year: 2005
Volume: 61
Number: 4
Pages: 704-21
DOI: 10.1002/prot.20660
PMID: 16231289
URL: http://onlinelibrary.wiley.com/doi/10.1002/prot.20660/abstract
eprint: http://onlinelibrary.wiley.com/doi/10.1002/prot.20660/pdf
debian/copyright 0000644 0000000 0000000 00000012066 12232151601 011117 0 ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: pdb2pqr
Source: http://sourceforge.net/projects/pdb2pqr/
Files-Excluded:
contrib/
jmol/
Files: *
Copyright: © 2002-2010 Nathan A. Baker
© 2009 Tommy Carstensen
© 2004 becker
© 2006 Mike Bradley
© 1999-2004 Cambridge Crystallographic Data Centre
© 2009 Tommy Carstensen
© 2002-2010 Paul Czodrowski
© 2005-2010 Todd Dolinsky
© 2000 EMBL
© 1992-2008 Free Software Foundation, Inc.
© 1993 Noah Friedman
© 2010 Wes Goodman
© David J. Heisterberg
© 1994-2000 Michael Holst
© 2007-2010 Yong Huang
© 2004-2005 Hui Li
© 2005,2010 Jan H. Jensen
© 2000-2010 Gerhard Klebe
© 2000-2004 Daniel Kuhn
© 2010 Predrag Kukic (kukaq)
© 2006 Jan Labanowski
© 1991 Massachusetts Institute of Technology
© 2007 Julie C. Mitchell
© 2002-2010 Jens Erik Nielsen
© The Ohio Supercomputer Center, Columbus
© 2004 Philipps-University, Marburg
© J. Ren
© 2000-2004 Stefan Schmitt
© 2008 Dave Sept
© 2002-2003 UCSD/HHMI
© 2003-2008 University College Dublin
© 2007-2010 Samir Unni
© 2004-2007 Washington University St. Louis
© 2004 Nils Weskamp
License: BSD3-clause
All rights reserved.
.
Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:
.
* Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
* Neither the names of University College Dublin, Washington University in
St. Louis, or University of Marburg nor the names of its contributors may
be used to endorse or promote products derived from this software without
specific prior written permission.
.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
OF THE POSSIBILITY OF SUCH DAMAGE.
Files: propka30/*
Copyright: © 2011-2012 Mats H. M. Olsson
© 2011-2012 Chresten R. Sondergard
License: LGPL2.1+
This library is free software; you can redistribute it and/or modify it
under the terms of the GNU Lesser General Public License as published by the
Free Software Foundation; either version 2.1 of the License, or (at your
option) any later version.
.
This library is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
for more details.
.
On Debian systems, you can find a copy of the LGPL license in
/usr/share/common-licenses/LGPL-2.1.
Files: pdb2pka/substruct/clique/*
Copyright: © 2010-2011 Andrew Dalke
License: GPL2+
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
.
On Debian systems, the complete text of the GNU Library General Public License
can be found in /usr/share/common-licenses/GPL-2.
Files: debian/*
Copyright: © 2007-2010 Steffen Moeller
© 2010-2012 Manuel Prinz
© 2013 Andreas Tille
License: GPL
You can find a copy of the GPL text at
`/usr/share/common-licenses/GPL'.
debian/pdb2pqr.1.xml 0000644 0000000 0000000 00000021462 11260414455 011430 0 ustar
pdb2pqr">
]>
PDB2PQR Manual
2008-06-04
pdb2pqr
ManuelPrinz
Wrote this manpage for the Debian System.
debian@pinguinkiste.de
2008Manuel Prinz
pdb2pqr
1
pdb2pqr
Generate PQR files for use in electrostatics calculations
pdb2pqr
pdb2pqr
DESCRIPTION
&pdb2pqr; automates many of the common tasks of preparing structures for continuum electrostatics calculations, providing a utility for converting protein files in PDB format (path) to PQR format (output-path). These tasks include:
Adding a limited number of missing heavy atoms to biomolecular structures
Determining side-chain pKas
Placing missing hydrogens
Optimizing the protein for favorable hydrogen bonding
Assigning charge and radius parameters from a variety of force fields
OPTIONS
&pdb2pqr; accepts the following options:
The forcefield to use. Current values are , , and .
Print a help message and exit.
Do not perform debumping operation.
Do not perform hydrogen optimization.
Keep the chain ID in the output PQR file.
Only assigns charges to add atoms, debump, or optimize.
Do no optimization, atom addition, or parameter assignment, just return
the original PDB file in alligned format.
Instead of using the standard caninical naming scheme for
residue and atom names, use the names from the given forcefield.
Use propka to calculate pKas and apply
them to the molecule given the pH value. Actual PropKa results will
be output to output-path.propka.
Create an APBS input file based on the generated
PQR file. Also create a Python pickle for using these
parameters in other programs.
Calculate the parameters for the ligand in MOL2 format at
the given path. Pdb2pka must be compiled.
Print additional information to screen.
EXTENSIONS
Extensions add functionality to PDB2PQR and are called by passing a parameter
to &pdb2pqr;. They put their results into files located in output-path.
The following extensions can be used by &pdb2pqr;:
Print the per-residue backbone phi angle to
output-path.phi.
Print the per-residue backbone psi angle to
output-path.phi.
Print a list of hygrogen bonds to
output-path.hbond.
Print the per-residue backbone chi angle to
output-path.chi.
Print a list of contacts to
output-path.con.
Print a list of hydrogen bonds to
output-path.hbo.
Print a list of salt bridges to
output-path.salt.
Print the per-residue phi and psi angles to
outpath-path.rama.
CITING PDB2PQR
Please acknowledge your use of &pdb2pqr; by citing:
Dolinsky TJ, Nielsen JE, McCammon JA, Baker NA. PDB2PQR: an automated pipeline for the setup, execution, and analysis of Poisson-Boltzmann electrostatics calculations. Nucleic Acids Research, 32, W665-W667 (2004).
SEE ALSO
psize1
debian/source/ 0000755 0000000 0000000 00000000000 11770632246 010476 5 ustar debian/source/format 0000644 0000000 0000000 00000000014 11363557767 011720 0 ustar 3.0 (quilt)
debian/README.Debian 0000644 0000000 0000000 00000000751 11770626763 011251 0 ustar PROPKA
======
PDB2PQR can use PROPKA to protonate the structure it converts. PROPKA is
packaged along with the PDB2PQR in this package.
-- Manuel Prinz Thu, 21 Jun 2012 15:57:01 +0200
Web Service
===========
The Debian package of PDB2PQR currently does not provide the parts that are
necessary to run PDB2PQR as a web service. If you think that the PDB2PQR
web service should be available as a package, please file a wishlist bug.
-- Manuel Prinz Sat, 29 Jan 2011 22:53:19 +0100
debian/pdb2pqr-doc.examples 0000644 0000000 0000000 00000000013 11023001605 013021 0 ustar examples/*
debian/changelog 0000644 0000000 0000000 00000003352 12232156733 011047 0 ustar pdb2pqr (1.8+dfsg-1) unstable; urgency=low
[ Manuel Prinz ]
* Fixed build issues on HURD. Thanks to Barry deFreese for the patch!
Closes: 674976.
* Pass hardening flags to linker. Added fix-hardening.patch, changed
debian/rules.
[ Andreas Tille ]
* Use '+dfsg' appendix to mark repackaged upstream source (adapted
debian/watch)
* debian/rules:
- repackaging is done using enhanced uscan
- s/autotools-dev/autotools_dev/
Closes: #727491
* debian/control:
- cme fix dpkg-control
- canonical Vcs fields
* debian/copyright: DEP5
-- Andreas Tille Thu, 24 Oct 2013 09:34:23 +0200
pdb2pqr (1.8-1) unstable; urgency=low
[ Andreas Tille ]
* debian/upstream: Add publication information
[ Manuel Prinz ]
* New upstream version. Updated debian/copyright.
* Updated Standards-Version to 3.9.3. No changes needed.
* Changed Maintainer to Debian Med team.
* Pass -fPIC to CXXFLAGS. Thanks to Konstantinos Margaritis for the patch!
Closes: 654240. LP: 935357.
* Updated PROPKA packaging to new version. (It's written in Python now.)
* Added fix-hashbangs.patch.
* Merged pdb2pqr and propka packages as they are more interconnected since
this upstream version. Updated README.Debian accordingly.
-- Manuel Prinz Thu, 21 Jun 2012 16:21:50 +0200
pdb2pqr (1.7-2) unstable; urgency=low
* Pass -fPIC to compiler on all architectures. Closes: 636204. LP: 791313.
* Bumped Standards-Version to 3.9.2. No changes needed.
-- Manuel Prinz Wed, 31 Aug 2011 00:22:15 +0200
pdb2pqr (1.7-1) unstable; urgency=low
* New upstream release. Closes: #416269, #420734.
-- Manuel Prinz Sun, 30 Jan 2011 11:53:54 +0100
debian/pdb2pqr.install 0000644 0000000 0000000 00000001030 11770626763 012141 0 ustar pdb2pqr.py usr/share/pdb2pqr/
main.py usr/share/pdb2pqr/
main_cgi.py usr/share/pdb2pqr/
dat/* usr/share/pdb2pqr/dat/
extensions/* usr/share/pdb2pqr/extensions/
src/* usr/share/pdb2pqr/src/
pdb2pka/*.py usr/share/pdb2pqr/pdb2pka
pdb2pka/ligandclean/*.py usr/share/pdb2pqr/pdb2pka/ligandclean
pdb2pka/substruct/*.py usr/share/pdb2pqr/pdb2pka/substruct
propka30/* usr/share/pdb2pqr/propka30/
# Binary parts
pdb2pka/_pMC_mult.so usr/lib/pdb2pqr/pdb2pka
pdb2pka/substruct/Algorithms.so usr/lib/pdb2pqr/pdb2pka/substruct
debian/patches/ 0000755 0000000 0000000 00000000000 12232146060 010611 5 ustar debian/patches/fix-hashbangs.patch 0000644 0000000 0000000 00000001564 11770624213 014371 0 ustar Subject: Fixes "broken" hashbangs
From: Manuel Prinz
Last-Update: 2012-06-21
--- pdb2pqr-1.8.repack.orig/pdb2pka/inputgen_pKa.py
+++ pdb2pqr-1.8.repack/pdb2pka/inputgen_pKa.py
@@ -1,4 +1,4 @@
-#!/bin/env python
+#!/usr/bin/python
#
# $Id: inputgen_pKa.py 974 2011-06-30 14:58:03Z jens_nielsen $
#
--- pdb2pqr-1.8.repack.orig/propka30/Source/corresponding_atoms.py
+++ pdb2pqr-1.8.repack/propka30/Source/corresponding_atoms.py
@@ -1,4 +1,4 @@
-#!/usr/local/bin/python3.0
+#!/usr/bin/python
#
# * This library is free software; you can redistribute it and/or
--- pdb2pqr-1.8.repack.orig/propka30/Source/rotate.py
+++ pdb2pqr-1.8.repack/propka30/Source/rotate.py
@@ -1,4 +1,4 @@
-#!/usr/local/bin/python3.0
+#!/usr/bin/python
#
# * This library is free software; you can redistribute it and/or
# * modify it under the terms of the GNU Lesser General Public
debian/patches/fix-hurd.patch 0000644 0000000 0000000 00000000605 12214301110 013346 0 ustar Subject: Fix build issues on HURD
From: Barry deFreese
Last-Update: 2012-05-29
--- pdb2pqr-1.8.repack.orig/configure
+++ pdb2pqr-1.8.repack/configure
@@ -3297,6 +3297,8 @@
PY_LDFLAGS="-lF77 -lm -lM77 -lsunmath";;
darwin*)
PY_LDFLAGS="${LDFLAGS} -Wl,-framework -Wl,Python -bundle";;
+ gnu*)
+ PY_SHARED="-shared";;
esac
case $host_cpu in
debian/patches/fix-includes.patch 0000644 0000000 0000000 00000000736 11521241022 014224 0 ustar Subject: Fixes a build issue due to a wrong #include directive
From: Manuel Prinz
Last-Update: 2011-01-30
--- a/pdb2pka/substruct/Algorithms.cpp
+++ b/pdb2pka/substruct/Algorithms.cpp
@@ -40,7 +40,7 @@
#include "Python.h"
#include "clique/bk.h"
#include "clique/util.h"
-#include "arrayobject.h"
+#include "numpy/arrayobject.h"
//#include "smiles.h"
/*----------------------------------------------------------------------------*/
using namespace std;
debian/patches/series 0000644 0000000 0000000 00000000112 12214301110 012005 0 ustar fix-includes.patch
fix-hashbangs.patch
fix-hurd.patch
fix-hardening.patch
debian/patches/fix-hardening.patch 0000644 0000000 0000000 00000000426 12214301110 014344 0 ustar Subject: Pass LDFLAGS to the linker for hardening
From: Manuel Prinz
Last-Update: 2012-06-22
--- a/configure
+++ b/configure
@@ -3308,7 +3308,7 @@
PY_SHARED=$PY_SHARED
-PY_LDFLAGS=$PY_LDFLAGS
+PY_LDFLAGS="$PY_LDFLAGS $LDFLAGS"
PY_HEADER=$PY_HEADER
debian/compat 0000644 0000000 0000000 00000000002 11770626763 010403 0 ustar 9
debian/propka.1.xml 0000644 0000000 0000000 00000004665 11025265612 011356 0 ustar
propka">
]>
PROPKA Manual
2008-06-15
propka
ManuelPrinz
Wrote this manpage for the Debian System.
debian@pinguinkiste.de
2008Manuel Prinz
propka
1
propka
Protonate PDB files based on pKa
propka
DESCRIPTION
&propka; automates the protonation (positioning of hydrogen ions) to a structure in PDB format for any given pKa value. The file to use has to be named PROPKATMP1 in the directory where propka is run.
&propka; will generate two output files named PROPKATMP2 and PROPKATMP3. PROPKATMP2 contains the resulting structure in PDB format. PROPKATMP3 contains a summary of the &propka; run.
CITING PROPKA
Please acknowledge your use of &propka; by citing:
Hui Li, Andrew D. Robertson, and Jan H. Jensen: Very Fast Empirical Prediction and Interpretation of Protein pKa Values, Proteins, 2005, 61, 704-721.
WEB SERVICE
PropKa can be used via a web interface at http://propka.ki.ku.dk/.
SEE ALSO
pdb2pqr1
debian/pdb2pqr.dirs 0000644 0000000 0000000 00000000413 11770626763 011440 0 ustar /usr/bin
/usr/lib/pdb2pqr/pdb2pka/substruct
/usr/share/doc/pdb2pqr
/usr/share/man/man1
/usr/share/pdb2pqr/dat
/usr/share/pdb2pqr/extensions
/usr/share/pdb2pqr/pdb2pka/ligandclean
/usr/share/pdb2pqr/pdb2pka/substruct
/usr/share/pdb2pqr/propka30
/usr/share/pdb2pqr/src
debian/pycompat 0000644 0000000 0000000 00000000002 10734326726 010747 0 ustar 2