packages feed

slynx 0.7.0.1 → 0.7.1.0

raw patch · 10 files changed

+12/−11 lines, 10 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

ChangeLog.md view
@@ -5,6 +5,13 @@ ## Unreleased changes  +## Version 0.7.1.0++-   Be less strict with quoted identifiers/names in phylogenetic trees.+-   Be less strict with FASTA identifiers.+-   Update tooling (GHC 9.2.4).++ ## Version 0.7.0.1  -   Random 1.2: Parallel functions now require an \`IOGenM\` random number
slynx.cabal view
@@ -1,6 +1,6 @@ cabal-version:      3.0 name:               slynx-version:            0.7.0.1+version:            0.7.1.0 synopsis:           Handle molecular sequences description:   Examine, modify, and simulate molecular sequences in a reproducible way. Please see the README on GitHub at <https://github.com/dschrempf/elynx>.
src/SLynx/Concatenate/Concatenate.hs view
@@ -1,5 +1,4 @@ {-# LANGUAGE OverloadedStrings #-}-{-# LANGUAGE TemplateHaskell #-}  -- | -- Module      :  Analyze.Analyze
src/SLynx/Examine/Examine.hs view
@@ -1,5 +1,5 @@ {-# LANGUAGE OverloadedStrings #-}-{-# LANGUAGE TemplateHaskell #-}+{-# LANGUAGE TupleSections #-}  -- | --@@ -166,7 +166,7 @@ -- From https://stackoverflow.com/a/52602906/3536806. tuples :: [a] -> [(a, a)] tuples [] = []-tuples (x : xs) = map (\y -> (x, y)) xs ++ tuples xs+tuples (x : xs) = map (x,) xs ++ tuples xs  -- This is all ugly, but who cares. writeDivergenceMatrix :: Handle -> (Seq.Sequence, Seq.Sequence, MU.Matrix Int) -> IO ()@@ -183,7 +183,7 @@   let xys = tuples ss       ds = map (\(x, y) -> (x, y, either error id $ divergence x y)) xys   h <- outHandle "divergence matrices" ".div"-  sequence_ $ map (liftIO . writeDivergenceMatrix h) ds+  mapM_ (liftIO . writeDivergenceMatrix h) ds   liftIO $ hClose h  -- | Examine sequences.
src/SLynx/Examine/Options.hs view
@@ -65,4 +65,4 @@  filePathArg :: Parser FilePath filePathArg =-  strArgument $ metavar "INPUT-FILE" <> help "Read sequences from INPUT-FILE"+  strArgument $ metavar "INPUT-FILE" <> help "Read sequences from INPUT-FILE" <> action "file"
src/SLynx/Filter/Filter.hs view
@@ -1,5 +1,4 @@ {-# LANGUAGE OverloadedStrings #-}-{-# LANGUAGE TemplateHaskell #-}  -- | -- Module      :  Analyze.Analyze
src/SLynx/Simulate/Simulate.hs view
@@ -1,5 +1,4 @@ {-# LANGUAGE OverloadedStrings #-}-{-# LANGUAGE TemplateHaskell #-}  -- | -- Module      :  SLynx.Simulate.Simulate
src/SLynx/SubSample/SubSample.hs view
@@ -1,5 +1,4 @@ {-# LANGUAGE OverloadedStrings #-}-{-# LANGUAGE TemplateHaskell #-}  -- | -- Module      :  Analyze.Analyze
src/SLynx/Tools.hs view
@@ -1,5 +1,4 @@ {-# LANGUAGE OverloadedStrings #-}-{-# LANGUAGE TemplateHaskell #-}  -- | -- Module      :  SLynx.Tools
src/SLynx/Translate/Translate.hs view
@@ -1,5 +1,4 @@ {-# LANGUAGE OverloadedStrings #-}-{-# LANGUAGE TemplateHaskell #-}  -- | -- Module      :  Analyze.Analyze