modify-fasta 0.8.1.1 → 0.8.1.2
raw patch · 2 files changed
+3/−4 lines, 2 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- app/Main.hs +2/−3
- modify-fasta.cabal +1/−1
app/Main.hs view
@@ -489,9 +489,8 @@ >> yield (T.pack "\n") ) -- want that newline at the end >-> PT.toHandle hOut - -- Finish up by closing handles just in case- IO.hClose hIn- IO.hClose hOut+ -- Finish up by closing file if written+ unless (null . output $ opts) (IO.hClose hOut) -- Legacy function modifyFastaCloneMap :: Options -> IO ()
modify-fasta.cabal view
@@ -2,7 +2,7 @@ -- documentation, see http://haskell.org/cabal/users-guide/ name: modify-fasta-version: 0.8.1.1+version: 0.8.1.2 synopsis: Modify fasta (and CLIP) files in several optional ways -- description: homepage: https://github.com/GregorySchwartz/modify-fasta