Nov 8-14: Difference between revisions

From Earlham CS Department
Jump to navigation Jump to search
Erika (talk | contribs)
No edit summary
Erika (talk | contribs)
No edit summary
 
(2 intermediate revisions by the same user not shown)
Line 6: Line 6:




To check for what is in @INC:
From the command line, check contents of @INC by typing: perl -le 'print for @INC'
 
$ perl -le 'print for @INC'
$ perl -e 'print "$_\n" for @INC'
$ perl -e 'print join"\n",@INC'
$ perl -e'$"="\n"; print"@INC\n"'

Latest revision as of 03:58, 17 November 2009

Return to Bioinformatics

Summary for Week 12

I spent this week browsing the BioPerl tutorial. I attempted to install and use the Bio::Perl module. I also learned about @INC and its use.


From the command line, check contents of @INC by typing: perl -le 'print for @INC'