aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMitja Felicijan <mitja.felicijan@gmail.com>2019-01-10 03:12:22 +0100
committerMitja Felicijan <mitja.felicijan@gmail.com>2019-01-10 03:12:22 +0100
commit591a568ab2223f8ed79c50b53f3533858fe2e68e (patch)
tree25877db93e1346258f09d3f4553d13c46d2fc33a
parent6db3e7455ca74d08253840878e132ba7d5f545c2 (diff)
downloadmitjafelicijan.com-591a568ab2223f8ed79c50b53f3533858fe2e68e.tar.gz
fix post
-rw-r--r--_posts/2019-01-03-encoding-binary-data-into-dna-sequence.md12
1 files changed, 6 insertions, 6 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 8bfe5f2..abd0164 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
@@ -189,12 +189,12 @@ FASTA format was extended by [FASTQ](https://en.wikipedia.org/wiki/FASTQ_format)
189 189
190### PNG encoded DNA sequence 190### PNG encoded DNA sequence
191 191
192| Nucleotides | RGB | Color | 192| Nucleotides | RGB | Color name |
193| ------------ | ----------- | ------ | 193| ------------ | ----------- | ----------- |
194| A (Adenine) | (0,0,255) | Blue | 194| A (Adenine) | (0,0,255) | Blue |
195| G (Guanine) | (0,100,0) | Green | 195| G (Guanine) | (0,100,0) | Green |
196| C (Cytosine) | (255,0,0) | Red | 196| C (Cytosine) | (255,0,0) | Red |
197| T (Thymine) | (255,255,0) | Yellow | 197| T (Thymine) | (255,255,0) | Yellow |
198 198
199With this in mind we can create a simple algorithm to create PNG representation of a DNA sequence. 199With this in mind we can create a simple algorithm to create PNG representation of a DNA sequence.
200 200