Skip to content

Commit 4c87925

Browse files
remove comment
1 parent f4cb9c9 commit 4c87925

1 file changed

Lines changed: 0 additions & 3 deletions

File tree

docs/src/rosalind/10-cons.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -148,9 +148,6 @@ function consensus(fasta_string)
148148
data_matrix = reduce(vcat, permutedims.(collect.(data_vector)))
149149

150150
# make profile matrix
151-
152-
## Is it possible to do this in a more efficient vectorized way? I wanted to see if we could do countmap() for each column in a simple way that would involve looping over each column. I think this ended up being more efficient since we are just looping over each of the nucleotides
153-
154151
consensus_matrix_list = Vector{Int64}[]
155152
for nuc in ['A', 'C', 'G', 'T']
156153
nuc_count = vec(sum(x->x==nuc, data_matrix, dims=1))

0 commit comments

Comments
 (0)