We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4e5ae14 commit 9bfbfd8Copy full SHA for 9bfbfd8
1 file changed
docs/src/rosalind/06-hamm.md
@@ -171,11 +171,11 @@ testseq1 = string(randdnaseq(100_000)) # this is defined in BioSequences
171
testseq2 = string(randdnaseq(100_000))
172
173
174
-@benchmark hamming($testseq1, $testseq2)
+@benchmark hamming(\$testseq1, \$testseq2)
175
176
-@benchmark BioAlignments.hamming_distance(Int64, $testseq1, $testseq2)
+@benchmark BioAlignments.hamming_distance(Int64, \$testseq1, \$testseq2)
177
178
-@benchmark Distances.hamming($testseq1, $testseq2)
+@benchmark Distances.hamming(\$testseq1, \$testseq2)
179
```
180
181
The BioAlignments method takes up a much larger amount of memory,
0 commit comments