Hi,
When I shutdown my Redhat linux 7.3 system it prompts me
"crash in python /usr/bin/python fatal error
segmentation fault
submit a bug report"
I am not running any python scripts.
Can any body help me how to fix this problem.
thanks in advance
surya
Hi,
I had a problem when I am closing the my redhat 7.3 system.
It prompts me
a crash in python.
/usr/bin/python
fatal error.
can any body help me in fixing this problem.
Thanks in advance
regards
1surya
Hi,
I installed netscape7.3 on my Redhat linux 7.3 system.
I observed that there are three scrollkeeper-tempfiles in my /tmp directory.
the first day three of them are rw_r__r__ permissions.
the next day the third file scrollkeeper-tempfile0.2 permissions have changed to
rwx_r__r__.
I wonder why...
Hi There,
I wrote a script which plots data as a barchart at the gnuplot terminal on redhat linux 7.3
the command I use to plot at the gnuplot terminal is
>load "script Name"
when I call at the gnuplot terminal it works fine and gives a neat chart.
The problem is when I am calling...
Hi,
I would like to install graphics library of perl.
I am a bit confused with gd module and GD module
can any body clarify me the differnce and what module I should install for perl graphics library.
If I go through rpm do i need to install any other supporting libraries.
thanks in advance
surya
Hi
I want to represent my data as x,y graph.
I have two types of data
phi angle and psi angle.phi shoud be on x axis and psi should be on y axis.these data should be automatically load in to the graph .Earlier I used GTKgraph on Mandrake linux.Now my system crashed and I am looking for any soft...
I forgot to type this line in the earlier post
before my $ftp=Net::FTP->new($hostname)or die ("connect Failed");
($hostname, $directory,$file_name) =@ARGV;
but in my actual program I did
I download Net::FTP module of perl and its working fine
i wrote a program called ftpfile is as follws
#! /usr/bin/perl -w
#ftpfile [servername] [directory] [filename]
use strict;
use Net::FTP;
my $hostname=" ";
my $directory= " ";
my $file_name= " ";
if(scalar...
Hi HTH
My data is phi and psi anges of an amino acid residues from the database of proteins.
The values range from -180 to +180.
I don't require any correlation.
I need to represent graphically how these angles are distributed.its for visualisation purpose only.
could you give some more...
Hi
I have data with 5000 x values and 5000 y values whose range lies between -180 to +180. I want to represent them in the form of a graph with x and y coordinates.
These data I got from the database through programming in perl.
I have gone through GTK graph but it was upto 999.
My OS is linux...
Hi will
My idea is same as yours but I am not successfull in using GD module in my perl script
my script is unable to load GD::Image object.
I am not abel to fix the problem.
I will go through rrdtool .
thank you for your sujjestions
keep all the 500 file names(path) in a single file one per line.
pass the filename containing the 500 filenames as an argument to the perl script file
take the file name into a file handle
pass the file handle into an array
with the help of foreach loop open each file
read the first line and...
I have 100 amino acid residues which have phi and psi angle.These range from -180 to 180 degress.
I represented the frequencies of 100 residues in the form of a two dimentional array with the help of references.
I took a range of 10 degrees
like -180 t0 -170(total i have 36 for phi and 36 for...
each time the value of $line32 is replaced by the value of $line.As soon as the $i==31 (its $i==31 instead of $i==32)we are coming out of inner foreach loop and before that $line32 is assigned the value of $line and we are pushing the value in to the array @userii..
the outer foreach loop...
i guess the following code will work
foreach $file(@userff)
{
open(FILEHANDLE,$file) || die "cann't open the $file!";
@filearray=<FILEHANDLE>;
close(FILEHANDLE);
$i=0;
$line32;
LINE:
foreach $line(@filearray)
{
$line32=$line;
#here $line32 takes each time a new line
$i++;
last LINE...
I edited my script and included
use warnings;
I created the the image object
$im but not $Im
i mistakenly typed $Im instead of $im.
Even if I inclued
use warnings;
it doesn't prompt me any warnings.it simply printing the
hexadecemal value of the image object.
I will be very thankful if...
Hi
I am trying to draw an image i using GD module of perl on linux.
I have installed GDmodule
lippng
Zlib
my code goes as follows
use strict;
use GD;
my $Im=new GD::Image(100,100);
my $white=$im->colorAllocate(255,255,255);
my $black=$im->colorAllocate(0,0,0);
my...
Hi Derek
You are absolutely correct regarding the length of the string.
I checked my code by giving length function. there are lines which are less than than what I specified in my substr function.
By finding this I fixed my problem. Now my program is running with out warnings.
Thanks a lot for...
hi Derek
you are absolutly correct regarding the second point.
I mistakenly typed array variable.But actually both are scalar.
$pdbid=substr($output,8,3);
$accno=substr($output,36,3);
regarding the warning
I am retriving the pdb file from the database into an array.
from the array with...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.