name:                hTalos
version:             0.2
stability:           alpha
homepage:            https://github.com/mgajda/hTalos
package-url:         http://hackage.haskell.org/package/hTalos
synopsis:            Parser, print and manipulate structures in PDB file format.
description:         Protein Data Bank file format is a most popular format for holding biomolecule data. This is a very fast parser (below 7s for the largest entry in PDB - 1HTQ which is over 70MB - as compared with 11s of RASMOL 2.7.5, or 2m15s of BioPython with Python 2.6 interpreter.) It is aimed to not only deliver event-based interface, but also a high-level data structure for manipulating data in spirit of BioPython's PDB parser. 
category:            Bioinformatics 
license:             BSD3
license-file:        LICENSE

author:              Michal J. Gajda
copyright:           Copyright by MPIBPC, Michal J. Gajda '2013
maintainer:          mjgajda@googlemail.com
bug-reports:         mailto:mjgajda@googlemail.com

build-type:          Simple
cabal-version:       >=1.8
tested-with:         GHC==7.4.2
data-files:          README.md

source-repository head
  type:     git
  location: git://github.com:mgajda/hpdb.git

Library
  ghc-options:      -fspec-constr-count=4 -O3 
  build-depends:    base>=4.0, base <4.7, bytestring
  other-extensions:       ScopedTypeVariables OverloadedStrings
  other-modules:    
  exposed-modules:  Bio.Talos.PhiPsi
  exposed:          True

Test-suite          test_PhiPsi
  type:             exitcode-stdio-1.0
  build-depends:    base>=4.0, base <4.7, hTalos
  main-is:          test_PhiPsi.hs
  Hs-source-dirs:   tests/