diff --git a/ChangeLog.md b/ChangeLog.md
--- a/ChangeLog.md
+++ b/ChangeLog.md
@@ -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`
diff --git a/README.md b/README.md
--- a/README.md
+++ b/README.md
@@ -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] 
diff --git a/elynx-seq.cabal b/elynx-seq.cabal
--- a/elynx-seq.cabal
+++ b/elynx-seq.cabal
@@ -1,6 +1,6 @@
 cabal-version:  2.2
 name:           elynx-seq
-version:        0.6.0.0
+version:        0.6.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>.
 category:       Bioinformatics
diff --git a/test/ELynx/Data/Alphabet/DistributionDiversitySpec.hs b/test/ELynx/Data/Alphabet/DistributionDiversitySpec.hs
--- a/test/ELynx/Data/Alphabet/DistributionDiversitySpec.hs
+++ b/test/ELynx/Data/Alphabet/DistributionDiversitySpec.hs
@@ -15,7 +15,7 @@
 
 import qualified Data.Vector.Unboxed as V
 import ELynx.Data.Alphabet.DistributionDiversity
-import ELynx.Tools
+import ELynx.Tools.Equality
 import Test.Hspec
 
 testArr1 :: V.Vector Double
diff --git a/test/ELynx/Data/Sequence/AlignmentSpec.hs b/test/ELynx/Data/Sequence/AlignmentSpec.hs
--- a/test/ELynx/Data/Sequence/AlignmentSpec.hs
+++ b/test/ELynx/Data/Sequence/AlignmentSpec.hs
@@ -19,7 +19,7 @@
 import ELynx.Data.Alphabet.Character
 import ELynx.Data.Sequence.Alignment
 import ELynx.Import.Sequence.Fasta
-import ELynx.Tools
+import ELynx.Tools.InputOutput
 import Test.Hspec
 
 fastaNucleotideIUPACFN :: FilePath
diff --git a/test/ELynx/Data/Sequence/SequenceSpec.hs b/test/ELynx/Data/Sequence/SequenceSpec.hs
--- a/test/ELynx/Data/Sequence/SequenceSpec.hs
+++ b/test/ELynx/Data/Sequence/SequenceSpec.hs
@@ -17,7 +17,7 @@
 import ELynx.Data.Alphabet.Alphabet
 import ELynx.Data.Sequence.Sequence
 import ELynx.Import.Sequence.Fasta
-import ELynx.Tools
+import ELynx.Tools.InputOutput
 import Test.Hspec
 
 fastaDifferentLengthFN :: FilePath
diff --git a/test/ELynx/Data/Sequence/TranslateSpec.hs b/test/ELynx/Data/Sequence/TranslateSpec.hs
--- a/test/ELynx/Data/Sequence/TranslateSpec.hs
+++ b/test/ELynx/Data/Sequence/TranslateSpec.hs
@@ -17,7 +17,7 @@
 import ELynx.Data.Character.Codon
 import ELynx.Data.Sequence.Translate
 import ELynx.Import.Sequence.Fasta
-import ELynx.Tools
+import ELynx.Tools.InputOutput
 import Test.Hspec
 
 fastaTranslateDNAFN :: FilePath
diff --git a/test/ELynx/Export/Sequence/FastaSpec.hs b/test/ELynx/Export/Sequence/FastaSpec.hs
--- a/test/ELynx/Export/Sequence/FastaSpec.hs
+++ b/test/ELynx/Export/Sequence/FastaSpec.hs
@@ -16,7 +16,7 @@
 import ELynx.Data.Alphabet.Alphabet
 import ELynx.Export.Sequence.Fasta
 import ELynx.Import.Sequence.Fasta
-import ELynx.Tools
+import ELynx.Tools.InputOutput
 import Test.Hspec
 
 fastaNucleotideIUPACFN :: FilePath
diff --git a/test/ELynx/Import/Sequence/FastaSpec.hs b/test/ELynx/Import/Sequence/FastaSpec.hs
--- a/test/ELynx/Import/Sequence/FastaSpec.hs
+++ b/test/ELynx/Import/Sequence/FastaSpec.hs
@@ -17,7 +17,7 @@
 import ELynx.Data.Alphabet.Alphabet
 import qualified ELynx.Data.Sequence.Alignment as M
 import ELynx.Import.Sequence.Fasta
-import ELynx.Tools
+import ELynx.Tools.InputOutput
 import Test.Hspec
 
 fastaNucleotideFN :: FilePath
