aboutsummaryrefslogtreecommitdiff
path: root/posts/2019-01-03-encoding-binary-data-into-dna-sequence.md
diff options
context:
space:
mode:
authorMitja Felicijan <mitja.felicijan@gmail.com>2021-12-07 16:41:32 +0100
committerMitja Felicijan <mitja.felicijan@gmail.com>2021-12-07 16:41:32 +0100
commitaa37cb8ec0e1694228a4f3082aebd1e3ee2526d0 (patch)
tree99ac03086c411cb7e7f1c4c6d55840ba571aa4fa /posts/2019-01-03-encoding-binary-data-into-dna-sequence.md
parent70e1bde5b2c3e326b4b240cac7cb3d0619764bc9 (diff)
downloadmitjafelicijan.com-aa37cb8ec0e1694228a4f3082aebd1e3ee2526d0.tar.gz
Move back to Times font and cleanup
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