Skip to content

Commit 28974b4

Browse files
authored
Do not suggest convert in Rosalind example (#13)
It was probably an API mistake to allow `convert`ing between mutable, heap- allocated sequences. This is because `convert` is called implicit in Julia, and converting sequences: * Is slow compared to converting integers, causing unexpected allocations * Creates a new, mutable struct with a separate object identity. This can lead to nasty bugs when mutating the original sequence suddenly seems to have no effect, because the observed sequence is actually a distinct copy.
1 parent 427d649 commit 28974b4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/src/rosalind/02-rna.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ As always, there are lots of ways you *could* do this.
5555
This function won't hanndle poorly formatted sequences,
5656
for example. Or rather, it will handle them, even though it shouldn't:
5757

58-
### Approach 2 - BioSequences `convert()`
58+
### Approach 2 - BioSequences `LongRNA`
5959

6060
As you might expect, `BioSequences.jl` has a way to do this as well.
6161
`BioSequences.jl` doesn't just use a `String` to represent sequences,
@@ -70,7 +70,7 @@ using BioSequences
7070
dna_seq = LongDNA{2}(input_dna)
7171
7272
73-
simple_transcribe(seq::LongDNA{N}) where N = convert(LongRNA{N}, seq)
73+
simple_transcribe(seq::LongDNA{N}) where N = LongRNA{N}(seq)
7474
7575
rna_seq = simple_transcribe(dna_seq)
7676
```

0 commit comments

Comments
 (0)