Re: only first checked item passed

2003-08-22 Thread Prachi Shah
So, any other ideas? Original Message Follows From: [EMAIL PROTECTED] (Randal L. Schwartz) To: [EMAIL PROTECTED] Subject: Re: only first checked item passed Date: 22 Aug 2003 07:12:24 -0700 > "Nyimi" == Nyimi Jose <[EMAIL PROTECTED]> writes: Nyimi> Try Nyimi> (@rows)=$sth->fetchrow_

only first checked item passed

2003-08-21 Thread Prachi Shah
Hi all, I have a CGI script which does a select on a database and builds a checkbox group iterating through the result of the select. The problem is when a user submits the form, only the first checked item in the checkbox group is passed. Below is the snippet of the perl code that generates th

Re: Install Mod as NON-Root

2003-02-10 Thread Prachi Shah
check this out: http://www.rcbowen.com/imho/perl/modules.html#perl_Makefile_PL_make_make_tes This way works for me. Prachi. Original Message Follows From: Jeff Westman <[EMAIL PROTECTED]> To: beginners <[EMAIL PROTECTED]> Subject: Install Mod as NON-Root Date: Mon, 10 Feb 2003 13:19

run UNIX commands from windows using Perl

2003-02-10 Thread Prachi Shah
Hi All! Is there a way to login to a UNIX system, run an application and retrieve a file written by that application using Perl from a Windows system? thanks, Prachi. _ The new MSN 8: smart spam protection and 2 months FREE* h

load modules not in @INC

2003-01-31 Thread Prachi Shah
Hi, I have been using perl on Win32 ssytems so far but now am switching to Unix. But, I do not have root permissins on the machine I am using and I am installing modules in my home directory. I use the PREFIX with the perl Makefile.pl command and everything installs fine. So far so good. But, h

problem with bioperl

2003-01-30 Thread Prachi Shah
Hi Everyone! Is anyone familiar with Bio::Perl? I just started using it and my first little 'Hello world' quality script failed with the following error: Can't locate object method "new" via package "Bio::DB::Query::GenBank" (perhaps you forgot to load "Bio::DB::Query::GenBank"?) at C:\tryBioP

Re: how can i get rid of these new line characters?

2002-10-04 Thread Prachi Shah
Hmmm. One way of doing it could be to read each sequence in the file, reading the header and the actual sequence in different variables. And then, format the sequence variable to remove all newlines using a regular expression. And then write them back to another file. Hope this helps. Prachi.

Re: can someone explain this?

2002-09-03 Thread Prachi Shah
Here's what the main function looks likeit has more subroutines below, but I guess this might be enough for you guys to look at. I also realise that there is a right curly parentheses at the end which does not have a starting left parentheses. So, maybe this code is full of syntax errors.

can someone explain this?

2002-09-03 Thread Prachi Shah
Hi! I have this code written by someone and there's no documentation to it. I am trying to figure what and how it works. There is this line right at the beginning of the code that baffles me. Does someone have a clue as to what this means? $Explanation = < ) ); thanks, Prachi.