-
Notifications
You must be signed in to change notification settings - Fork 1
/
hTalos.cabal
39 lines (33 loc) · 1.61 KB
/
hTalos.cabal
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
28
29
30
31
32
33
34
35
36
37
38
name: hTalos
version: 0.2.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: [email protected]
bug-reports: mailto:[email protected]
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.9, 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.9, hTalos
main-is: test_PhiPsi.hs
Hs-source-dirs: tests/