ViennaRNAParser 1.2.7 → 1.2.8
raw patch · 3 files changed
+11/−4 lines, 3 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- ViennaRNAParser.cabal +3/−3
- changelog +2/−0
- src/Bio/RNAcodeParser.hs +6/−1
ViennaRNAParser.cabal view
@@ -5,7 +5,7 @@ -- PVP summary: +-+------- breaking API changes -- | | +----- non-breaking API additions -- | | | +--- code changes with no API change-version: 1.2.7+version: 1.2.8 synopsis: Libary for parsing ViennaRNA package output description: Currently contains parsers and datatypes for: RNAalifold, RNAcode, RNAdistance, RNAcofold, RNAfold, RNAplex, RNAup, RNAz. .@@ -30,8 +30,8 @@ source-repository this type: git- location: https://github.com/eggzilla/ViennaRNAParser/tree/1.2.7- tag: 1.2.7+ location: https://github.com/eggzilla/ViennaRNAParser/tree/1.2.8+ tag: 1.2.8 library -- Modules exported by the library.
changelog view
@@ -1,4 +1,6 @@ -*-change-log-*-+1.2.8 Florian Eggenhofer <florian.eggenhofer@univie.ac.at> 11. February 2016+ * Fixed special character parsing of identifiers in RNAcode 1.2.7 Florian Eggenhofer <florian.eggenhofer@univie.ac.at> 4. January 2016 * Added RNAcode parser * Added stackage yaml file
src/Bio/RNAcodeParser.hs view
@@ -39,6 +39,9 @@ _from <- natural haskell _to <- natural haskell _name <- identifier haskell+ --_name <- identifier haskell+ _name <- many1 (oneOf "AaBbCcDdEeFfGgHhIiJjKkLlMmNnOoPpQqRrSsTtUuVvWwXxYyZz1234567890_-")+ string ("\t") _start <- natural haskell _end <- natural haskell _score <- float haskell@@ -83,7 +86,9 @@ _length <- natural haskell _from <- natural haskell _to <- natural haskell- _name <- identifier haskell+ --_name <- identifier haskell+ _name <- many1 (oneOf "AaBbCcDdEeFfGgHhIiJjKkLlMmNnOoPpQqRrSsTtUuVvWwXxYyZz1234567890_-")+ string ("\t") _start <- natural haskell _end <- natural haskell _score <- float haskell