Just a note - there is at least one established bio-perl list http://lists.perl.org/list/bioperl-l.html not that more isn't merrier ... a ... Andy Bach Systems...
27378
Noah
noah@mci.net
Aug 28, 2012 3:18 am
I want to remove elements from an array by comparing the elements for the first array to the elements of a second array. So in the example below if an element...
27379
Shlomi Fish
shlomif2
Aug 28, 2012 7:15 am
Hi Noah, On Mon, 27 Aug 2012 19:21:19 -0700 ... You should do: my %routers_lookup = (map { $_ => 1 } @ignore_routers); @devices = grep {...
27380
Alan Haggai Alavi
alan_haggai
Aug 28, 2012 7:15 am
Hello Noah, I want to remove elements from an array by comparing the elements for the ... use List::Util qw( first ); @devices = grep { my $device = $_; !first...
27381
merlyn@...
merlynstoneh...
Aug 28, 2012 9:05 am
... Noah> I want to remove elements from an array by comparing the elements for Noah> the first array to the elements of a second array. Noah> So in the...
27382
merlyn@...
merlynstoneh...
Aug 29, 2012 9:24 am
... Alan> use List::Util qw( first ); Alan> @devices = grep { Alan> my $device = $_; Alan> !first { $device eq $_ } @ignore_routers; ...
27383
perl-beginner@yahoogr...
Sep 1, 2012 8:13 am
Good day, This Perl-Beginner group was set up for people to learn about the Perl language, and how it may be used in their websites. Although there are...
27384
johnlikeglass
Sep 10, 2012 6:57 pm
Ran into this problem which caused a bit of gray hair and took about a month to resolve. Though I would pass this along. Basically, for years I have hosted...
27385
ponni
pons_84
Sep 12, 2012 6:39 am
Hi Experts, I am a beginner, i have strucked to print the alphabet letters one below one using perl. Can anybody give suggestion on this! Thanks Pon ilavarasu...
27386
David Precious
bigpresh
Sep 12, 2012 6:58 am
... print join "\n", ('a'..'z39;); '..' is the useful range operator. It works for numbers too. There are of course other ways to write the above. Another could...
27387
BhavinP
mail4bhavin
Sep 20, 2012 4:46 pm
... my @arr = (1..100); my $start = 0; my $end = 0; my $incr = 25; sub get25{ $end = $start + $incr; my @retarr = @arr[$start..$end]; $start = $end; return...
27388
Joe Pepersack
joe@...
Sep 23, 2012 6:26 pm
There are a couple problems with the solution provided by BhavinP, not the least of which is that it doesn't duplicate Jana's requirements. The subroutine is...
27389
BhavinP
mail4bhavin
Sep 24, 2012 4:03 pm
well, my code was just to point in the right direction. a module that will give you chunks of 25 elements from the array each time its invoked. the last...
27390
johnlikeglass
Sep 27, 2012 12:46 am
Take a look at the simple script below. $c should never show up, right? On FastCGI servers it often does! Try loading it, calling it, and hitting F5 enough,...
27391
Joe Pepersack
joe@...
Sep 27, 2012 1:02 am
In FastCGI, your program does not exit after it runs; the perl interpreter and your script stay in memory until the fastcgi server kills it. This is why...
27392
Joe Pepersack
joe@...
Sep 27, 2012 4:55 am
My example below may not be entirely clear. Let's modify it to be: use CGI::Fast; use CGI::Carp; $SIG{PIPE} = sub { carp "caught SIGPIPE" }; $SIG{USR1} = sub {...
27393
Shlomi Fish
shlomif2
Sep 27, 2012 9:01 am
Hi John, a few comments on your code: On Thu, 27 Sep 2012 00:46:13 -0000 ... Always add "use strict;" and "use warnings;": ...
27394
gaurav.pandey789@...
gaurav.pande...
Sep 28, 2012 8:18 am
perl code for finding the radiality centrality of a graph or a network...
27395
Joe Pepersack
joe@...
Sep 29, 2012 4:54 pm
... Your first stop for questions like this should always be CPAN. http://search.cpan.org/search?query=graph+centrality There are a few modules present which...
27396
perl-beginner@yahoogr...
Oct 1, 2012 7:57 am
Good day, This Perl-Beginner group was set up for people to learn about the Perl language, and how it may be used in their websites. Although there are...
27397
gaurav.pandey789@...
gaurav.pande...
Oct 3, 2012 6:13 am
thanks...
27398
Md. Musfique Anwar
newton897
Oct 21, 2012 11:06 am
Deal All, Hope all of you are fine. I am a beginner in Perl programming. I got this error when I tied a hash to a dbm file: sdbm store returned -1, errno 19,...
27399
Shlomi Fish
shlomif2
Oct 21, 2012 12:14 pm
Hi Musfique, On Sun, 21 Oct 2012 20:00:31 +0900 ... I believe you should not be using SDBM (which is pretty old) or the tied-hash version of accessing it. For...
27400
Shlomi Fish
shlomif2
Oct 22, 2012 8:45 am
Hi Musfique, please reply to the mailing list instead of to me in private (as I specifically note in the last line of my message). From the gmail.com ...
27401
Noah
noah@mci.net
Oct 30, 2012 3:48 am
Hi, Is there any easy way to get keys from two hashes listed a for loop? like for $sites{$hostname} and for $sites{$remote_hostname} ? How would I do that?...
27402
Shlomi Fish
shlomif2
Oct 30, 2012 8:26 am
Hi Noah, On Mon, 29 Oct 2012 20:48:14 -0700 ... You can do something like (untested: my %total_keys = (%{ $sites{$hostname } }, %{ $sites{$remote_hostname} });...
27403
Noah
noah@mci.net
Oct 30, 2012 3:56 pm
thank you...
27404
perl-beginner@yahoogr...
Nov 1, 2012 7:54 am
Good day, This Perl-Beginner group was set up for people to learn about the Perl language, and how it may be used in their websites. Although there are...
27405
Noah
noah@mci.net
Nov 7, 2012 11:09 pm
Hi there, I am hoping to make the following changes to integers. I would like to do something like the following sprintf command Below but instead of leading...
27406
Charles K. Clarkson
charlesclarkson
Nov 8, 2012 12:26 am
... You can't. Read FAQ 4: How do I pad a string with blanks or pad a number with zeroes? ...