Difference between revisions of "Eyanosch Week 3"
From LMU BioDB 2015
								
												
				|  (added the Journal Entry Category) |  (input of the first portion of this weeks hw, using sed in a way to replace letter by letter, not whole phrases) | ||
| Line 4: | Line 4: | ||
| + | In order to produce the complementary strands nucleotide sequence | ||
| + |  cat sequence_file | sed "y/atgc/tacg/" | ||
| + | this follows the rule of y/<original characters>/<new characters>/ | ||
| + | |||
| + | If sequence_file contains | ||
| + | |||
| + |  agcggtatac | ||
| + | |||
| + | the output would be:  | ||
| + | |||
| + |  tcgccatatg | ||
Revision as of 05:36, 22 September 2015
In order to produce the complementary strands nucleotide sequence
cat sequence_file | sed "y/atgc/tacg/"
this follows the rule of y/<original characters>/<new characters>/
If sequence_file contains
agcggtatac
the output would be:
tcgccatatg
Class Journals
Weekly Assignments
Personal Journal
Eyanosch Week 3
Electronic Notes (E-notes)
Class (personal) Notes

