Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 8 additions & 6 deletions rosalind/10-cons.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ rss_descr = "Solving Rosalind problem CONS — finding a consensus string from a
> Of course, there may be more than one most common symbol,
> leading to multiple possible consensus strings.
>
> ### DNA Strings
> **DNA Strings**
> ```
> A T C C A G C T
> G G G C A A C T
Expand All @@ -41,17 +41,19 @@ rss_descr = "Solving Rosalind problem CONS — finding a consensus string from a
> A T G G C A C T
> ```
>
> ### Profile
> **Profile**
> ```
> A 5 1 0 0 5 5 0 0
> C 0 0 1 4 2 0 6 1
> G 1 1 6 3 0 1 0 0
> T 1 5 0 0 0 1 1 6
> ```
>
> ### Consensus
> ```A T G C A A C T```
Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This was leading to the error

>
> **Consensus**
> `
> A T G C A A C T
> `
>
> **Given:**
> A collection of at most 10 DNA strings of equal length (at most 1 kbp) in FASTA format.
>
Expand All @@ -60,7 +62,7 @@ rss_descr = "Solving Rosalind problem CONS — finding a consensus string from a
> (If several possible consensus strings exist,
> then you may return any one of them.)
>
> **Sample Dataset***
> **Sample Dataset**
>
> ```
> >Rosalind_1
Expand Down
Loading