cobot-io 0.1.3.15 → 0.1.3.16
raw patch · 3 files changed
+8/−4 lines, 3 files
Files
- ChangeLog.md +4/−0
- cobot-io.cabal +2/−2
- src/Bio/GB/Parser.hs +2/−2
ChangeLog.md view
@@ -2,6 +2,10 @@ ## [Unreleased] +## [0.1.3.16] - 2021-02-16+### Fixed+- Bad comment in GB parser.+ ## [0.1.3.15] - 2021-02-16 ### Fixed - Unknown fields in GB.
cobot-io.cabal view
@@ -4,10 +4,10 @@ -- -- see: https://github.com/sol/hpack ----- hash: 41de9b4b3a1a9916fe78ee831e4e9811e27725529c468f9b43d3378b25a5bc5b+-- hash: 7ba9dfa6aa8de04faf5d4aa77f0afaea9f338622fe927072726a1dc5c8178f52 name: cobot-io-version: 0.1.3.15+version: 0.1.3.16 synopsis: Biological data file formats and IO description: Please see the README on GitHub at <https://github.com/biocad/cobot-io#readme> category: Bio
src/Bio/GB/Parser.hs view
@@ -105,8 +105,8 @@ -------------------------------------------------------------------------------- featuresP :: Parser [(Feature, Range)]-featuresP = manyTill (textWithSpacesP <* eolSpaceP) (string "FEATURES") *> space- -- ^ skip unknown fields and stop on line with "FEATURES"+featuresP = -- skip unknown fields and stop on line with "FEATURES" + manyTill (textWithSpacesP <* eolSpaceP) (string "FEATURES") *> space *> textWithSpacesP <* eolSpaceP *> many1' featureP