I am trying to write a script which elinates repeated fasta DNA sequences.
format
>descripttion
AGTG...
>descripttion
AGTG...
I need to get rid of the second sequence and print everything else out.
Any Advice?
Victor
___
Perl-Unix-Users mailing list
[E
I can't solve your problem but I hope your not passing
in user input into the system function without
checking them. That would be bad. :)
--- "Scott, Joshua" <[EMAIL PROTECTED]> wrote:
> I'm new to Perl programming. I'm trying to launch a
> process from within a
> CGI script and then continue
Scott, Joshua wrote:
> I'm new to Perl programming. I'm trying to launch a process from within
> a CGI script and then continue running the script to complete the web
> page. Here is what I'm trying to run.
>
> $status=system("/usr/bin/program -x -x -x &");
>
> Whenever this is executed, t
Title: Message
I'm new to Perl
programming. I'm trying to launch a process from within a CGI script and
then continue running the script to complete the web page. Here is
what I'm trying to run.
$status=system("/usr/bin/program -x -x -x &");
Whenever this is
executed, the script goes i
Try the following Code Snip:
my @cmd = `java SSLTest`;
my %hash;
chomp @cmd;
foreach (@cmd) {
if (/ - /) {
($key, $value) = split(/ - /);
$hash{$key} = $value;
}
if (/: /) {
($key, $value) = split(/: /);
Hi
There is a function called str2time in HTTP::Date which will convert this
date format to epoch, I believe it can handle the TZ as well.
Also, you may want to look at the C app called mergelog which chrono sorts
multiple logfiles,
Regards
Matt
-Original Message-
From: [EMAIL PROTECTE