Kevin Wyllie Week 3
From LMU BioDB 2015
Revision as of 23:40, 19 September 2015 by Kwyllie (Talk | contribs) (Edited my screenshot and command line to show the complementary DNA sequence from 5' -> 3' direction (by adding the rev command).)
Journal Week 3
Complement of a Strand
The following command is used to open the file (using prokaryote.txt as an example),
cat prokaryote.txt
while the the following command is used to sequence the complementary strand (in the 5' -> 3' direction - thus the "rev" command):
cat prokaryote.txt | sed "y/atgc/tacg/" | rev