aboutsummaryrefslogtreecommitdiff
path: root/posts/2019-01-03-encoding-binary-data-into-dna-sequence.md
diff options
context:
space:
mode:
Diffstat (limited to 'posts/2019-01-03-encoding-binary-data-into-dna-sequence.md')
-rw-r--r--posts/2019-01-03-encoding-binary-data-into-dna-sequence.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/posts/2019-01-03-encoding-binary-data-into-dna-sequence.md b/posts/2019-01-03-encoding-binary-data-into-dna-sequence.md
index ea2bec8..6f6b3d7 100644
--- a/posts/2019-01-03-encoding-binary-data-into-dna-sequence.md
+++ b/posts/2019-01-03-encoding-binary-data-into-dna-sequence.md
@@ -174,10 +174,10 @@ FASTA format was extended by [FASTQ](https://en.wikipedia.org/wiki/FASTQ_format)
174 174
175| Nucleotides | RGB | Color name | 175| Nucleotides | RGB | Color name |
176| ------------- | ----------- | ---------- | 176| ------------- | ----------- | ---------- |
177| A -> Adenine | (0,0,255) | Blue | 177| A Adenine | (0,0,255) | Blue |
178| G -> Guanine | (0,100,0) | Green | 178| G Guanine | (0,100,0) | Green |
179| C -> Cytosine | (255,0,0) | Red | 179| C Cytosine | (255,0,0) | Red |
180| T -> Thymine | (255,255,0) | Yellow | 180| T Thymine | (255,255,0) | Yellow |
181 181
182With this in mind we can create a simple algorithm to create PNG representation of a DNA sequence. 182With this in mind we can create a simple algorithm to create PNG representation of a DNA sequence.
183 183