From f34a4cc001b69384079cb9254bc28e5ee470ff7e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matou=C5=A1=20Sold=C3=A1t?= Date: Wed, 21 Feb 2024 20:20:22 +0100 Subject: [PATCH] Fix typo --- README.md | 2 +- src/de.jl | 2 +- src/de_evaluation.jl | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 4115d37..aca6cbf 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ Arguments Keywords - `screening::Screening`: Assigns fitness value to a sequence. - `selection_strategy::SelectionStrategy`: Defines the algorithm used to select new parents from a pool of screened variants. -- `mutagenesis:Mutagenesis`: Defines the algorithm used to create new mutants from current population. +- `mutagenesis::Mutagenesis`: Defines the algorithm used to create new mutants from current population. - `n_iterations::Integer=1`: Specifies the number of iteration of DE. Has to be greater than 0. The `SequenceSpace` structure contains the current population of sequences as well as information about the sequence space learned through previous iterations of DE. It is helpful for consecutive runs of the algorithm (possibly with different modules). diff --git a/src/de.jl b/src/de.jl index a47e5a9..91d04f6 100644 --- a/src/de.jl +++ b/src/de.jl @@ -9,7 +9,7 @@ Perform directed `n_iterations` of directed evolution and save results into `seq # Keywords - `screening::Screening`: Assigns fitness value to a sequence. - `selection_strategy::SelectionStrategy`: Defines the algorithm used to select new parents from a pool of screened variants. -- `mutagenesis:Mutagenesis`: Defines the algorithm used to create new mutants from current population. +- `mutagenesis::Mutagenesis`: Defines the algorithm used to create new mutants from current population. - `n_iterations::Integer=1`: Specifies the number of iteration of DE. Has to be greater than 0. # Examples diff --git a/src/de_evaluation.jl b/src/de_evaluation.jl index b2eaec9..1319a8a 100644 --- a/src/de_evaluation.jl +++ b/src/de_evaluation.jl @@ -11,7 +11,7 @@ Returns the top fitness obtained in each run as a `Vector{Float64}`. # Keywords - `screening::Screening`: Assigns fitness value to a sequence. - `selection_strategy::SelectionStrategy`: Defines the algorithm used to select new parents from a pool of screened variants. -- `mutagenesis:Mutagenesis`: Defines the algorithm used to create new mutants from current population. +- `mutagenesis::Mutagenesis`: Defines the algorithm used to create new mutants from current population. - `n_iterations::Integer`: Specifies the number of iteration of `de!()`. - `parallel::Bool=false`: If true, the calls of `de!()` will be run in parallel. """ @@ -47,7 +47,7 @@ Returns the top fitness obtained in each run as a `Vector{Float64}`. # Keywords - `screening::Screening`: Assigns fitness value to a sequence. - `selection_strategy::SelectionStrategy`: Defines the algorithm used to select new parents from a pool of screened variants. -- `mutagenesis:Mutagenesis`: Defines the algorithm used to create new mutants from current population. +- `mutagenesis::Mutagenesis`: Defines the algorithm used to create new mutants from current population. - `n_iterations::Integer`: Specifies the number of iteration of `de!()`. - `parallel::Bool=false`: If true, the calls of `de!()` will be run in parallel. """