packages feed

PDBtools-0.0.1: PDBtools.cabal

Name:                PDBtools
Version:             0.0.1
License:             GPL-3
License-file:        LICENSE
Cabal-Version:       >= 1.6
Author:              Grant Rotskoff
Maintainer:          gmr1887@gmail.com

Category:            Bioinformatics
Synopsis:            A library for analysis of 3-D protein coordinates
Description:         This is a collection of modules for the analysis of protein
                     coordinates. The suite allows efficient computation on a large 
		     data set of RCSB protein data bank files. Parsing returns both
		     protein and ligand coordinates. All of the information in ATOM
		     and HETATM records of a PDB file is preserved.
         
Homepage:            http://www.github.com/rotskoff
Build-type:	     Simple
Stability:	     Experiemental

extra-source-files: README

flag tests
  default: False


library
  build-depends:
    base >3 && <5,
    bytestring,
    containers

  exposed-modules:
    PDBtools.PDBparse
    PDBtools.PDButil

  ghc-options:

executable Test
  build-depends:
  main-is:
    Tests/Test.hs
  ghc-options:
    -O2 -funbox-strict-fields -rtsopts
  if flag(tests)
    buildable:
      True
  else
    buildable:
      False

source-repository head
  type: git
  location: git://github.com/rotskoff/Haskell-PDB-Utilities