Exercise 4.4

From Earlham CS Department
Revision as of 22:51, 21 September 2009 by Erika (talk | contribs) (New page: Return to Week 1 <b>Exercise 4.4 in <i>Beginning Perl for Bioinformatics</i></b> <br><br> <nowiki>#!/usr/bin/perl -w use strict;</nowiki> <nowiki>#Erika Phelps #Sept. 21, 2009 #Exerc...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Return to Week 1

Exercise 4.4 in Beginning Perl for Bioinformatics

#!/usr/bin/perl -w use strict;

#Erika Phelps #Sept. 21, 2009 #Exercise 4.4

  1. Do the same thing as Exercise 4.3, but use the string directives \u and \L
  2. for upper and lower case.
  1. The DNA (input both in upper and lower case)

my $DNA1 = 'ATGCCGGTAGAATATACCCGA'; my $DNA2 = 'cccggctaatatacgctag';

  1. Print the DNA to the screen

print "Here are the DNA sequences that have been provided:\n\n";

print "DNA1:$DNA1.\n\n";

print "DNA2: $DNA2.\n\n";

  1. Concatenating the DNA

my $DNA3 = "$DNA1$DNA2";

  1. Print the concatenated DNA all in lowercase

print "The concatenated DNA is (lowercase):\L$DNA3.\n\n";

  1. Print the concatenated DNA all in uppercase

print "The concatenated DNA is (uppercase):\U$DNA3.\n";

  1. End of program

exit;