aboutsummaryrefslogtreecommitdiff
path: root/content/2019-01-03-encoding-binary-data-into-dna-sequence.md
diff options
context:
space:
mode:
authorMitja Felicijan <mitja.felicijan@gmail.com>2019-09-23 12:01:16 +0200
committerMitja Felicijan <mitja.felicijan@gmail.com>2019-09-23 12:01:16 +0200
commita543aa89c4db8e0e5509e96540a8dc5303159148 (patch)
tree03ed6325e7ec8f432317580a14939eb1c3f42caf /content/2019-01-03-encoding-binary-data-into-dna-sequence.md
parenta5c4da8ea8bce7779bd6105d649cd1a2e67c3bfd (diff)
downloadmitjafelicijan.com-a543aa89c4db8e0e5509e96540a8dc5303159148.tar.gz
new content
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