aboutsummaryrefslogtreecommitdiff
path: root/content/2019-01-03-encoding-binary-data-into-dna-sequence.md
diff options
context:
space:
mode:
Diffstat (limited to 'content/2019-01-03-encoding-binary-data-into-dna-sequence.md')
-rw-r--r--content/2019-01-03-encoding-binary-data-into-dna-sequence.md12
1 files changed, 6 insertions, 6 deletions
diff --git a/content/2019-01-03-encoding-binary-data-into-dna-sequence.md b/content/2019-01-03-encoding-binary-data-into-dna-sequence.md
index a3bca72..d3c1396 100644
--- a/content/2019-01-03-encoding-binary-data-into-dna-sequence.md
+++ b/content/2019-01-03-encoding-binary-data-into-dna-sequence.md
@@ -190,12 +190,12 @@ FASTA format was extended by [FASTQ](https://en.wikipedia.org/wiki/FASTQ_format)
190 190
191### PNG encoded DNA sequence 191### PNG encoded DNA sequence
192 192
193| Nucleotides | RGB | Color name | 193| Nucleotides | RGB | Color name |
194| ------------ | ----------- | ---------- | 194| ------------- | ----------- | ---------- |
195| A (Adenine) | (0,0,255) | Blue | 195| A -> Adenine | (0,0,255) | Blue |
196| G (Guanine) | (0,100,0) | Green | 196| G -> Guanine | (0,100,0) | Green |
197| C (Cytosine) | (255,0,0) | Red | 197| C -> Cytosine | (255,0,0) | Red |
198| T (Thymine) | (255,255,0) | Yellow | 198| T -> Thymine | (255,255,0) | Yellow |
199 199
200With this in mind we can create a simple algorithm to create PNG representation of a DNA sequence. 200With this in mind we can create a simple algorithm to create PNG representation of a DNA sequence.
201 201