hPDB 1.1.1 → 1.1.2
raw patch · 4 files changed
+9/−2 lines, 4 files
Files
- Bio/PDB/EventParser/PDBEventParser.hs +1/−0
- README.md +3/−1
- changelog +4/−0
- hPDB.cabal +1/−1
Bio/PDB/EventParser/PDBEventParser.hs view
@@ -1,4 +1,5 @@ {-# LANGUAGE ScopedTypeVariables, OverloadedStrings, BangPatterns, NoMonomorphismRestriction #-}+{-# OPTIONS_GHC -fno-spec-constr #-} -- workaround for GHC 7.8.0 bug #8960 -- | Low-level event-based parser interface. module Bio.PDB.EventParser.PDBEventParser(parsePDBRecords) where
README.md view
@@ -3,7 +3,9 @@ Haskell PDB file format parser. [](https://travis-ci.org/BioHaskell/hPDB)+[](https://hackage.haskell.org/package/hPDB) + Protein Data Bank file format is a most popular format for holding biomolecule data. This is a very fast parser:@@ -14,6 +16,6 @@ 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. -Details on official releases are on [Hackage](http://hackage.haskell.org/package/hPDB).+Details on official releases are on [Hackage](https://hackage.haskell.org/package/hPDB) This package is also a part of [Stackage](http://daniel-diaz.github.io/stackagelist/) - a stable subset of Hackage.
changelog view
@@ -1,5 +1,9 @@ -*-Changelog-*- +1.1.2 Apr 2014+ * Workaround GHC 7.8 SpecConstr bug: #8960. SpecConstr disabled in+ Bio.PDB.EventParser.PDBEventParser.+ 1.1.1 Jan 2014 * Exposed PDBWritable class for all objects that can be written to PDB file.
hPDB.cabal view
@@ -1,5 +1,5 @@ name: hPDB-version: 1.1.1+version: 1.1.2 synopsis: Protein Databank file format library homepage: https://github.com/BioHaskell/hPDB stability: stable