Difference between revisions of "Nov 8-14"
Jump to navigation
Jump to search
(New page: Return to Bioinformatics <b>Summary for Week 12</b> I spent this week browsing the BioPerl tutorial. I attempted to install and use the Bio::Perl module. I also learned about @INC an...) |
|||
Line 4: | Line 4: | ||
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. | 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"' |
Revision as of 22:53, 16 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"'