Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
soldatmat authored Feb 21, 2024
1 parent c761511 commit 9229b4c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@ The `SequenceSpace` structure contains the current population of sequences as we
### Mutagenesis
Structures derived from `Mutagenesis` have to implement the following method:
`(::CustomMutagenesis)(parents::AbstractVector{Vector{Char}})`
which should return a vector of newly created sequences as a subtype of `AbstractVector{Vector{Char}}`.
which should return a vector of newly created sequences as a subtype of `AbstractVector{Vector{Char}}`.
This method should not alter `parents`!

### Screening
Structures derived from `Screening` have to implement the following method:
Expand All @@ -44,8 +45,7 @@ which should return the sequences' fitness values as a subtype of `AbstarctVecto
### SelectionStrategy
Structures derived from `SelectionStrategy` have to implement the following method:
`(::CustomSelectionStrategy)(variants::AbstractVector{Variant})`
which should return a vector of newly created sequences as a subtype of `AbstractVector{Vector{Char}}`.
This method should not alter `parents`!
which should return a vector of newly created sequences as a subtype of `AbstractVector{Vector{Char}}`.

## Examples
For example of usage with predefined modules, see
Expand Down

0 comments on commit 9229b4c

Please sign in to comment.