Nov 8-14: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
| Line 8: | Line 8: | ||
To check for what is in @INC: | To check for what is in @INC: | ||
$ perl -le 'print for @INC' | $ perl -le 'print for @INC'<br> | ||
$ perl -e 'print "$_\n" for @INC' | $ perl -e 'print "$_\n" for @INC'<br> | ||
$ perl -e 'print join"\n",@INC' | $ perl -e 'print join"\n",@INC'<br> | ||
$ perl -e'$"="\n"; print"@INC\n"' | $ perl -e'$"="\n"; print"@INC\n"'<br> | ||
Revision as of 03:53, 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.
To check for what is in @INC:
$ perl -le 'print for @INC'
$ perl -e 'print "$_\n" for @INC'
$ perl -e 'print join"\n",@INC'
$ perl -e'$"="\n"; print"@INC\n"'