packages feed

ViennaRNAParser 1.2.0 → 1.2.1

raw patch · 3 files changed

+7/−3 lines, 3 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

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.0+version:             1.2.1 synopsis:            Libary for parsing ViennaRNA package output description:         Currently contains parsers and datatypes for: RNAalifold, RNAdistance, RNAcofold, RNAfold, RNAplex, RNAup, RNAz. 		     .@@ -30,8 +30,8 @@  source-repository this   type:     git-  location: https://github.com/eggzilla/ViennaRNAParser/tree/1.2.0-  tag:      1.2.0+  location: https://github.com/eggzilla/ViennaRNAParser/tree/1.2.1+  tag:      1.2.1  library   -- Modules exported by the library.
changelog view
@@ -1,4 +1,6 @@ -*-change-log-*-+1.2.1 Florian Eggenhofer <florian.eggenhofer@univie.ac.at> 3. July 2015+        * Included parsing of warning field in RNAz output 1.2.0 Florian Eggenhofer <florian.eggenhofer@univie.ac.at> 1. July 2015 	* Added Hspec test-suite 	* Added RNAcofold parser
src/Bio/RNAzParser.hs view
@@ -56,6 +56,8 @@   _svmDecisionValue <-  parseRNAzDoubleField "SVM decision value:"   _svmRNAClassProbability <- parseRNAzDoubleField "SVM RNA-class probability:"   _prediction <- parseRNAzStringField "Prediction:"+  optional (try (string " WARNING: Mean z-score out of range."))+  optional (try newline)   newline   many1 (char '#')    newline