Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. 1surya

    crash in python /usr/bin/python fatal error

    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
  2. 1surya

    crash in python /usr/bin/python fatal error, segmentation fault

    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
  3. 1surya

    scrollkeeper-tempfile.0

    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...
  4. 1surya

    Error while loading shared libraries:libncurses.so.4

    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...
  5. 1surya

    what's the differnce between gd module and GD module

    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
  6. 1surya

    Graphs fro redhat linux 7.3

    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...
  7. 1surya

    unabel to connect to the online database through Ftp

    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
  8. 1surya

    unabel to connect to the online database through Ftp

    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...
  9. 1surya

    plotting graph

    HI Paul I got it now. Thank you very much for your detailed explanation. 1surya
  10. 1surya

    plotting graph

    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...
  11. 1surya

    plotting graph

    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...
  12. 1surya

    how to drawing dotted plot

    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
  13. 1surya

    Please help me with this:

    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...
  14. 1surya

    how to drawing dotted plot

    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...
  15. 1surya

    adding specific line number to an array

    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...
  16. 1surya

    adding specific line number to an array

    i guess the following code will work foreach $file(@userff) { open(FILEHANDLE,$file) || die &quot;cann't open the $file!&quot;; @filearray=<FILEHANDLE>; close(FILEHANDLE); $i=0; $line32; LINE: foreach $line(@filearray) { $line32=$line; #here $line32 takes each time a new line $i++; last LINE...
  17. 1surya

    GD::Image=SCALAR(ox804b688)

    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...
  18. 1surya

    GD::Image=SCALAR(ox804b688)

    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...
  19. 1surya

    substr outside of string at &lt;file name&gt; &lt;line no&gt;

    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...
  20. 1surya

    substr outside of string at &lt;file name&gt; &lt;line no&gt;

    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...

Part and Inventory Search

Back
Top