4 Jan 2006 03:33
RE: loading yeast data failing...
Barry Moore <bmoore <at> genetics.utah.edu>
2006-01-04 02:33:45 GMT
2006-01-04 02:33:45 GMT
Angshu- You should read the following documents carefully before asking more questions like this one, this is yet another example that demonstrates that you ask questions before you try to solve the problem yourself. Do you have a copy of Programming Perl sitting next to you on the desk? If not you should, and it should be tattered and worn before you hit the list with basic questions like that. Now try these documents and the suggestions below, repent of you ways and good luck. http://www.catb.org/~esr/faqs/smart-questions.html http://chicago.pm.org/meetings/20031202/perl-debug.txt http://debugger.perl.org/580/perldebug.html Now to get you headed on you way for this problem, specifically, what you want to know about the perl debugger for this issue is: You can run it like this: perl -d your_script.pl You can burrow into your code to the module in question like this: c Path::To::Your::accessor::process_seq Once there you can step through code with n or s. Finally, you can look at varibles (and objects and methods called on(Continue reading)
RSS Feed