elynx-tree 0.6.0.0 → 0.6.1.0
raw patch · 12 files changed
+32/−17 lines, 12 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- ChangeLog.md +7/−0
- README.md +12/−6
- bench/Bench.hs +1/−1
- elynx-tree.cabal +1/−1
- test/ELynx/Tree/BipartitionSpec.hs +1/−1
- test/ELynx/Tree/DistanceSpec.hs +2/−1
- test/ELynx/Tree/Export/NewickSpec.hs +1/−1
- test/ELynx/Tree/Export/NexusSpec.hs +1/−1
- test/ELynx/Tree/Import/NewickSpec.hs +1/−1
- test/ELynx/Tree/Import/NexusSpec.hs +1/−1
- test/ELynx/Tree/RootedSpec.hs +3/−2
- test/ELynx/Tree/SupportSpec.hs +1/−1
ChangeLog.md view
@@ -5,6 +5,13 @@ ## Unreleased changes +## Version 0.6.1.0++- Split `ELynx.Tools` into separate modules because the package will be reduced.+- Remove the following modules from `ELynx.Tools`: `Concurrent`,+ `LinearAlgebra`, `List`, `Misc`, and `Numeric`.++ ## Version 0.6.0.0 - **elynx-tree:** remove parallel folds with layers (`parBranchFoldMapWithLayer`
README.md view
@@ -69,13 +69,13 @@ # Get help -For example:-- slynx --help+ cabal exec slynx -- --help+ # OR: stack exec slynx -- --help+ # OR: slynx --help ELynx Suite version 0.6.0.0. Developed by Dominik Schrempf.- Compiled on September 3, 2021, at 20:56 pm, UTC.+ Compiled on September 4, 2021, at 12:58 pm, UTC. Usage: slynx [-v|--verbosity VALUE] [-o|--output-file-basename NAME] [-f|--force] [--no-elynx-file] COMMAND@@ -113,6 +113,7 @@ - ProteinX (amino acids; including gaps) - ProteinS (amino acids; including gaps, and translation stops) - ProteinI (amino acids; including gaps, translation stops, and IUPAC codes)+ ELynx ----- A Haskell library and tool set for computational biology. The goal of ELynx is@@ -126,6 +127,9 @@ tlynx Analyze, modify, and simulate phylogenetic trees. elynx Validate and redo past analyses. + Get help for commands:+ slynx --help+ Get help for sub commands: slynx examine --help @@ -134,11 +138,13 @@ The documentation of sub commands can be accessed separately: - slynx simulate --help+ cabal exec slynx -- simulate --help+ # OR: stack exec slynx -- simulate --help+ # OR: slynx simulate --help ELynx Suite version 0.6.0.0. Developed by Dominik Schrempf.- Compiled on September 3, 2021, at 20:56 pm, UTC.+ Compiled on September 4, 2021, at 12:58 pm, UTC. Usage: slynx simulate (-t|--tree-file Name) [-s|--substitution-model MODEL] [-m|--mixture-model MODEL] [-e|--edm-file NAME]
bench/Bench.hs view
@@ -17,7 +17,7 @@ import Criterion.Main import Data.Bifunctor import Data.Foldable-import ELynx.Tools hiding (Random)+import ELynx.Tools.InputOutput import ELynx.Tree import ELynx.Tree.Simulate.PointProcess import Length
elynx-tree.cabal view
@@ -1,6 +1,6 @@ cabal-version: 2.2 name: elynx-tree-version: 0.6.0.0+version: 0.6.1.0 synopsis: Handle phylogenetic trees description: Examine, compare, and simulate phylogenetic trees in a reproducible way. Please see the README on GitHub at <https://github.com/dschrempf/elynx>. category: Bioinformatics
test/ELynx/Tree/BipartitionSpec.hs view
@@ -19,7 +19,7 @@ import qualified Data.Map as M import Data.Set (Set) import qualified Data.Set as S-import ELynx.Tools+import ELynx.Tools.InputOutput import ELynx.Tree import Test.Hspec
test/ELynx/Tree/DistanceSpec.hs view
@@ -16,7 +16,8 @@ ) where -import ELynx.Tools+import ELynx.Tools.Equality+import ELynx.Tools.InputOutput import ELynx.Tree import ELynx.Tree.Arbitrary () import Test.Hspec
test/ELynx/Tree/Export/NewickSpec.hs view
@@ -17,7 +17,7 @@ import Data.Bifunctor import qualified Data.ByteString.Lazy.Char8 as BL-import ELynx.Tools+import ELynx.Tools.InputOutput import ELynx.Tree import ELynx.Tree.Arbitrary () import Test.Hspec
test/ELynx/Tree/Export/NexusSpec.hs view
@@ -16,7 +16,7 @@ ) where -import ELynx.Tools+import ELynx.Tools.InputOutput import ELynx.Tree import Test.Hspec
test/ELynx/Tree/Import/NewickSpec.hs view
@@ -18,7 +18,7 @@ import Data.Attoparsec.ByteString.Char8 import qualified Data.ByteString.Char8 as BS import Data.Either-import ELynx.Tools+import ELynx.Tools.InputOutput import ELynx.Tree import Test.Hspec
test/ELynx/Tree/Import/NexusSpec.hs view
@@ -16,7 +16,7 @@ ) where -import ELynx.Tools+import ELynx.Tools.InputOutput import ELynx.Tree import Test.Hspec
test/ELynx/Tree/RootedSpec.hs view
@@ -22,11 +22,12 @@ import Data.Monoid import Data.Proxy import ELynx.ClassLaws-import ELynx.Tools+-- import Test.Hspec.QuickCheck++import ELynx.Tools.InputOutput import ELynx.Tree import ELynx.Tree.Arbitrary () import Test.Hspec--- import Test.Hspec.QuickCheck import Test.QuickCheck hiding (labels) import Test.QuickCheck.Classes
test/ELynx/Tree/SupportSpec.hs view
@@ -16,7 +16,7 @@ ) where -import ELynx.Tools+import ELynx.Tools.InputOutput import ELynx.Tree import Test.Hspec