StockholmAlignment 1.0.1 → 1.0.2
raw patch · 3 files changed
+7/−4 lines, 3 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- StockholmAlignment.cabal +3/−3
- changelog +2/−0
- src/Bio/StockholmParser.hs +2/−1
StockholmAlignment.cabal view
@@ -1,5 +1,5 @@ name: StockholmAlignment-version: 1.0.1+version: 1.0.2 synopsis: Libary for Stockholm aligmnent format description: Libary containing parsing and visualisation functions and datastructures for Stockholm aligmnent format license: GPL-3@@ -21,8 +21,8 @@ source-repository this type: git- location: https://github.com/eggzilla/StockholmAlignment/tree/1.0.1- tag: 1.0.1+ location: https://github.com/eggzilla/StockholmAlignment/tree/1.0.2+ tag: 1.0.2 library -- Modules exported by the library.
changelog view
@@ -1,4 +1,6 @@ -*-change-log-*-+1.0.2 Florian Eggenhofer <egg@informatik.uni-freiburg.de> 12. April 2017+ * Included additional tag characters 1.0.1 Florian Eggenhofer <egg@informatik.uni-freiburg.de> 14. January 2017 * Linted code 1.0.0 Florian Eggenhofer <egg@informatik.uni-freiburg.de> 21. December 2016
src/Bio/StockholmParser.hs view
@@ -55,6 +55,7 @@ many (try newline) _stockholmToken <- many1 genParseToken string "//\n"+ optional (try (string "\n")) return (tokenToStockholm (T.pack _version) _stockholmToken) -- | Parse the input as StockholmAlignment datatype@@ -67,7 +68,7 @@ many newline string "#=GF" char ' '- _tag <- many1 upper+ _tag <- many1 (oneOf "ABCDEFGHIJKLMNOPQRSTUVWXYZ*") many1 (char ' ') _info <- many1 (noneOf "\n") newline