elynx-tools 0.2.1 → 0.2.2
raw patch · 5 files changed
+18/−19 lines, 5 files
Files
- ChangeLog.md +1/−1
- README.md +14/−14
- elynx-tools.cabal +1/−1
- src/ELynx/Tools/ByteString.hs +0/−1
- src/ELynx/Tools/Definitions.hs +2/−2
ChangeLog.md view
@@ -2,7 +2,7 @@ # Changelog for ELynx -## Version 0.2.1+## Version 0.2.2 - Validation and repetition of previous analyses is finally possible with the new `elynx` binary.
README.md view
@@ -2,7 +2,7 @@ # The ELynx Suite -Version: 0.2.1.+Version: 0.2.2. Reproducible evolution made easy. A Haskell library and tool set for computational biology. The goal of ELynx is@@ -70,7 +70,7 @@ ELynx Suite version 0.2.1. Developed by Dominik Schrempf.- Compiled on April 27, 2020, at 06:31 am, UTC.+ Compiled on April 27, 2020, at 12:08 pm, UTC. Usage: slynx [-v|--verbosity VALUE] [-o|--output-file-basename NAME] [-f|--force] COMMAND@@ -132,7 +132,7 @@ ELynx Suite version 0.2.1. Developed by Dominik Schrempf.- Compiled on April 27, 2020, at 06:31 am, UTC.+ Compiled on April 27, 2020, at 12:08 pm, UTC. Usage: slynx concatenate (-a|--alphabet NAME) INPUT-FILE Concatenate sequences found in input files.@@ -170,7 +170,7 @@ ELynx Suite version 0.2.1. Developed by Dominik Schrempf.- Compiled on April 27, 2020, at 06:31 am, UTC.+ Compiled on April 27, 2020, at 12:08 pm, UTC. Usage: slynx examine (-a|--alphabet NAME) INPUT-FILE [--per-site] Examine sequences. If data is a multi sequence alignment, additionally analyze columns.@@ -209,7 +209,7 @@ ELynx Suite version 0.2.1. Developed by Dominik Schrempf.- Compiled on April 27, 2020, at 06:31 am, UTC.+ Compiled on April 27, 2020, at 12:08 pm, UTC. Usage: slynx filter-rows (-a|--alphabet NAME) INPUT-FILE [--longer-than LENGTH] [--shorter-than LENGTH] [--standard-characters]@@ -249,7 +249,7 @@ ELynx Suite version 0.2.1. Developed by Dominik Schrempf.- Compiled on April 27, 2020, at 06:31 am, UTC.+ Compiled on April 27, 2020, at 12:08 pm, UTC. Usage: slynx filter-columns (-a|--alphabet NAME) INPUT-FILE [--standard-chars DOUBLE]@@ -290,7 +290,7 @@ ELynx Suite version 0.2.1. Developed by Dominik Schrempf.- Compiled on April 27, 2020, at 06:31 am, UTC.+ Compiled on April 27, 2020, at 12:08 pm, UTC. Usage: slynx simulate (-t|--tree-file Name) [-s|--substitution-model MODEL] [-m|--mixture-model MODEL] [-e|--edm-file NAME] @@ -383,7 +383,7 @@ ELynx Suite version 0.2.1. Developed by Dominik Schrempf.- Compiled on April 27, 2020, at 06:31 am, UTC.+ Compiled on April 27, 2020, at 12:08 pm, UTC. Usage: slynx sub-sample (-a|--alphabet NAME) INPUT-FILE (-n|--number-of-sites INT)@@ -429,7 +429,7 @@ ELynx Suite version 0.2.1. Developed by Dominik Schrempf.- Compiled on April 27, 2020, at 06:31 am, UTC.+ Compiled on April 27, 2020, at 12:08 pm, UTC. Usage: slynx translate (-a|--alphabet NAME) INPUT-FILE (-r|--reading-frame INT) (-u|--universal-code CODE)@@ -471,7 +471,7 @@ ELynx Suite version 0.2.1. Developed by Dominik Schrempf.- Compiled on April 27, 2020, at 06:31 am, UTC.+ Compiled on April 27, 2020, at 12:08 pm, UTC. Usage: tlynx [-v|--verbosity VALUE] [-o|--output-file-basename NAME] [-f|--force] COMMAND@@ -526,7 +526,7 @@ ELynx Suite version 0.2.1. Developed by Dominik Schrempf.- Compiled on April 27, 2020, at 06:31 am, UTC.+ Compiled on April 27, 2020, at 12:08 pm, UTC. Usage: tlynx compare [-n|--normalize] [-b|--bipartitions] [-t|--intersect] [-f|--newick-format FORMAT] NAME@@ -571,7 +571,7 @@ ELynx Suite version 0.2.1. Developed by Dominik Schrempf.- Compiled on April 27, 2020, at 06:31 am, UTC.+ Compiled on April 27, 2020, at 12:08 pm, UTC. Usage: tlynx examine INPUT-FILE [-f|--newick-format FORMAT] Compute summary statistics of phylogenetic trees.@@ -611,7 +611,7 @@ ELynx Suite version 0.2.1. Developed by Dominik Schrempf.- Compiled on April 27, 2020, at 06:31 am, UTC.+ Compiled on April 27, 2020, at 12:08 pm, UTC. Usage: tlynx simulate [-t|--nTrees INT] [-n|--nLeaves INT] [-H|--height DOUBLE] [-M|--condition-on-mrca] [-l|--lambda DOUBLE] @@ -666,7 +666,7 @@ ELynx Suite version 0.2.1. Developed by Dominik Schrempf.- Compiled on April 27, 2020, at 06:31 am, UTC.+ Compiled on April 27, 2020, at 12:08 pm, UTC. Usage: elynx COMMAND Validate and redo past ELynx analyses
elynx-tools.cabal view
@@ -1,6 +1,6 @@ cabal-version: 1.12 name: elynx-tools-version: 0.2.1+version: 0.2.2 license: GPL-3 license-file: LICENSE copyright: Dominik Schrempf (2020)
src/ELynx/Tools/ByteString.hs view
@@ -56,7 +56,6 @@ alignLeft :: Int -> L.ByteString -> L.ByteString alignLeft = alignLeftWith ' ' - -- | If a string is longer than a given value, trim it and add some dots. summarizeByteString :: Int -> L.ByteString -> L.ByteString summarizeByteString l s
src/ELynx/Tools/Definitions.hs view
@@ -22,7 +22,7 @@ ) where -import Data.Version+import Data.Version -- XXX: Manually handled, because automatic handling with @Paths_...@ modules -- results in errors during source tarball creation and upload.@@ -32,7 +32,7 @@ -- | ELynx version. version :: Version-version = read "0.2.1"+version = makeVersion [0, 2, 2] -- | Required precision when comparing 'Double' values. eps :: Double