Re: error messege: "subroutine Cwd::fastcwd redefined"

2006-03-03 Thread Frank Lee
ed is the file created by perlbug. Wish it helpful. -F Tom Phoenix wrote: On 2/27/06, Frank Lee <[EMAIL PROTECTED]> wrote: subroutine Cwd::fastcwd redefined" at C:/per/lib/Cwd.pm line 700 subroutine Cwd::getcwd redefined at C:/per/lib/Cwd.pm line 700 subroutine Cwd::abs_path redefine

Re: error messege: "subroutine Cwd::fastcwd redefined"

2006-02-28 Thread Frank Lee
Chas Owens wrote: On 2/28/06, Frank Lee <[EMAIL PROTECTED]> wrote: Chas Owens wrote: On 2/27/06, Frank Lee <[EMAIL PROTECTED]> wrote: When I add "use Bio:Perl" in my script and run it in windows XP, it complains: subroutine Cwd::fastcwd redefined"

Re: error messege: "subroutine Cwd::fastcwd redefined"

2006-02-28 Thread Frank Lee
Chas Owens wrote: On 2/27/06, Frank Lee <[EMAIL PROTECTED]> wrote: When I add "use Bio:Perl" in my script and run it in windows XP, it complains: subroutine Cwd::fastcwd redefined" at C:/per/lib/Cwd.pm line 700 subroutine Cwd::getcwd redefined at C:/per/lib/Cwd.pm li

error messege: "subroutine Cwd::fastcwd redefined"

2006-02-27 Thread Frank Lee
When I add "use Bio:Perl" in my script and run it in windows XP, it complains: subroutine Cwd::fastcwd redefined" at C:/per/lib/Cwd.pm line 700 subroutine Cwd::getcwd redefined at C:/per/lib/Cwd.pm line 700 subroutine Cwd::abs_path redefined at C:/per/lib/Cwd.pm line 700 The script can still wo

Re: how to use perl module to do Z-scores test (Say, Wilcoxon)

2005-06-06 Thread Frank Lee
Hi, Chris, That's very nice! It is very helpful for me. I can use the Z-test in the Mastering Algorithms with Perl. Thanks very much! Frank On 6/7/05, Chris Devers <[EMAIL PROTECTED]> wrote: > On Tue, 7 Jun 2005, Frank Lee wrote: > > > Can anybody give me some idea

how to use perl module to do Z-scores test (Say, Wilcoxon)

2005-06-06 Thread Frank Lee
Can anybody give me some ideas about how to use perl module to do Z-scores test (Say, Wilcoxon).? Thanks very much! -- Do not guess who I am. I am not Bush in BlackHouse -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] <

Re: Problem with Foreach in If Statement...

2005-06-04 Thread Frank Lee
please try this one: #tested in linux #!/usr/bin/perl -w use strict; my @names = qw( fred barney betty wilma dino ); print "Enter some numbers 1 to 5, one per line, then press ctrl D:\n"; chomp (my @numbers = ); foreach (@numbers){ if ($_ < 6){ print "$names[$_ - 1]\n"; }else{