Skip to main content

Perl programming #2

Hi,

Yesterday we learnt about installing perl in windows (Didn't read yesterday's post? check here Perl programming #1 )and how to ā€œprintā€ using perl!
Today, letā€™s start with the basics, how to get input using perl?


To get a text file from user using perl:
Just it is very simple, type as follows,

$variable=<STDIN>;

This will get the file name. This also works in perl,

$variable=<>;

No need to give STDIN! Just the open and closed angular brackets are itself considered as standard input.

Then, always give chomp after the standard input, this chomp is nothing but ā€œchopā€ which chops the ā€œenterā€ Ć  new line character i.e., whenever you give an input, you press ā€œenterā€ which will be considered as a new line character. In order to remove that new line character, chomp must be given.

How to use chomp? Use as follows,

$variable=<>;
chomp($variable);

Simple, this chops the new line character from your input.
Let us look at sample program for getting a text file and a word or pattern.
Program for getting a DNAFILE and printing the file content: (sample.pl)

print "enter a dna sequence file\n";
ļ»æļ»æ
$dnafile=<>;
chomp($dnafile);
unless(open(DNAFILENAME,$dnafile))
{
print "file not found\n";
}
$dnafile=<DNAFILENAME>;
$dna=join("",$dnafile);
$dna=~s/\s//g;
$dna=uc($dna);
ļ»æļ»æļ»æļ»æļ»æļ»æ
print "DNA seq. is\n",$dna;
close(DNAFILENAME);
exit;

ļ»æļ»æ
O/P of the program sample.pl
ļ»æļ»æ
Here, DNAFILENAME is the file handler. Here, we used unless for checking, whether the given file name exists or not.

For opening the file, we can give just  as,

open(DNAFILENAME,$dnafile);

donā€™t forget the semicolon.

Donā€™t forget to give the line,

 $dnafile=<DNAFILENAME>;

This assigns the content of the given dnafile to ā€œ$dnafileā€
With out assigning this if you are just proceeding, you will get the output printed as the ā€œfile nameā€ and not the file content.

ā€œjoinā€ command is given for joining the spaces in the file. This helps when you are working with DNA and protein sequences.

$dna=~s/\s//g; This is also given for removing the spaces in the file

$dna=uc($dna); This changes the content of the file into upper case(UC)

ā€œcloseā€ is used for closing the file,

print ā€“ It prints everything given within double quotes, even \n must be given within quotes, but, the variables like $dnafile must not be given within the quotes. Check the syntax given in the program.

Program for getting a pattern or word from the user and printing it (sample1.pl)

ļ»æļ»æ
print "enter a pattern\n";
$pattern=<>;
chomp($pattern);
$pattern=join("",$pattern);
$pattern=~s/\s//g;
$pattern=uc($pattern);
print "Pattern is\n",$pattern;
exit;

ļ»æ
O/P of the program sample1.pl
ļ»æ
Here, no file handlers are used. Once you try executing the programs, you could easily understand!

Try printing the output, after using ā€œjoinā€ and the line ā€œ$dna=~s/\s//gā€ for knowing their difference. Here ā€œgā€ stands for global i.e., removes the space globally.

Any doubts? Kindly comment. Iā€™ll try to clear your doubts.

:) Happy perl-ing :)



Comments

Popular posts from this blog

Lowry Assay Principle and procedure

Though there are several protein assays available, the most preferred one in many laboratories is "Lowry assay". It is effective in the concentration range of 0.01 mg/ml to 1 mg/ml. And, as an additional info, the paper published describing the procedure and principle of Lowry Assay is the most cited paper in the scientific history. (Feeling like, "Wow! I want to publish one to compete with Oliver.H. Lowry"???  :P) Why Lowry?   Though there are several other protein assays, mostly Lowry assay is used in many laboratories. The reasons for preferring Lowry are: sensitivity of the assay, highly reproducible, cost effective, easy to perform. Biuret assay is generally used for higher protein concentrations like tissue samples but, Lowry for less concentrated samples and hence used in most of the molecular biology laboratories where there will be need for assaying comparatively less concentrated protein samples (in most cases where we attempt to produce enzymes). Oth...

Sea Butterfly!

Neih hou!  Don't roll you eyes wondering what it is! "Neih hou" is how you say "hello" in Cantonese. Guess what, I am in Hong Kong and therefore the language Cantonese. I came to Hong Kong this summer as an intern before officially joining as a PhD Student. This is my second experience abroad, far away from home, new language, new culture, I expected me to have a "really" bad cultural shock, but, actually I experienced only 50% of what I expected. For a girl who have used the marina beach only for eating "sundal", bikini in beach was a shock (FEEL FREE TO JUDGE ME!). The first time, I went to the big wave beach here, I was the only one who was totally covered, when everyone was enjoying their Beer, I was slowly sipping my lemon juice (THE ODD ONE OUT!). I realized how beautifully different the world outside is! There is no single standard for right or wrong, it varies in different countries, in different regions around the world. And it ...

Fire in the lab!!! BE CAREFUL!!!! A Lesson learnt!

   That day, we were working in our lab under laminar air flow chamber. we were streaking our plates with E.coli. For sterilizing the loop, we were using 70% ethanol. We also sterilized the L rod which we used for spreading , using the same Ethanol.  One by one, we started streaking and spreading. I completed my turn, and sterilized the L rod by dipping in ethanol once and shown in flame, and placed it in a tray.Mam instructed, " Ethanol will catch fire , if you place the hot rod over it" . One of my friend, did spreading after my turn, she too dipped the rod in ethanol, flamed the rod and instead of placing in the tray she misplaced the hot rod in the ethanol plate!!!! " oooo... fire fire..." immediately ethanol caught fire..!!! My friend who misplaced., she started crying... Mam shouted, " hey girls, guys run out of the lab...," as the tube which carries LPG for the flame was very close to fire. Suddenly, our lab technician acte...