Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
soldatmat committed Feb 21, 2024
1 parent 9229b4c commit f34a4cc
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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).
Expand Down
2 changes: 1 addition & 1 deletion src/de.jl
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions src/de_evaluation.jl
Original file line number Diff line number Diff line change
Expand Up @@ -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.
"""
Expand Down Expand Up @@ -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.
"""
Expand Down

0 comments on commit f34a4cc

Please sign in to comment.