Sponsored Content
Top Forums Shell Programming and Scripting Loop Forever Script Strangely Exiting Post 302440063 by marvinwright on Monday 26th of July 2010 04:43:06 AM
Old 07-26-2010
Hi,

Yes I inspected the core file and it was the child process SCF that had coredumped.

Core was generated by `./SCF scf.conf'.
Program terminated with signal 11, Segmentation fault.

I dont understand how it can make the parent shell program exit too ?

Marvin
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Bash: Exiting while true loop when terminal is not the focus window

I am running an Ubuntu Gutsy laptop with Advanced Compiz fusion options enabled. I am using xdotool to simulate keyboard input in order to rotate through multiple desktops. I am looking for a way to kill a while true loop when the Enter key (or Control+C if it is easier) is pushed when the... (2 Replies)
Discussion started by: acclaypool
2 Replies

2. Shell Programming and Scripting

Else Loop Exiting Early

All, I'm having a problem w/this function. Specifically, I want to call another function (get_stats) when the process in the else completes (the initial if and the elsif seem to work fine). But what's happening is the get_stats function call is running after the else runs only once, NOT when it... (8 Replies)
Discussion started by: GregWold
8 Replies

3. IP Networking

valid_lft forever preferred_lft forever <-- what does this mean?

Just looking at my ethernet interface.. I see this response... what does this mean...? ipconfig... lo: <LOOPBACK,UP,LOWER_UP> mtu 16436 qdisc noqueue link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00 inet 127.0.0.1/8 scope host lo inet6 ::1/128 scope host valid_lft... (0 Replies)
Discussion started by: jimmyc
0 Replies

4. Shell Programming and Scripting

exiting from a loop

I wonder if someone could help me here. I am trying to find a way of exiting from a loop but not exiting me from the script for example #!/bin/ksh # ************* FUNCTIONS ****************** function1() { #ping test ping $1 2 > /dev/null if ; then ... (13 Replies)
Discussion started by: hcclnoodles
13 Replies

5. UNIX for Advanced & Expert Users

"while read ..." loop exiting after reading only one record

Greeting, The following script completes after reading only one record from the input file that contains many records. I commented out the "ssh" and get what I expect, an echo of all the records in the input.txt file. Is ssh killing the file handle? On the box "uname -a" gives "SunOS... (2 Replies)
Discussion started by: twk
2 Replies

6. Shell Programming and Scripting

Problem in exiting a loop

Hi my code looks like: if test $STEP -le 10 then . . ls -1d AM*-OUT|while read MYDIR do cd $MYDIR ls |tail -n1| while read MYFILE do . . if test -s $MYFILE then sqlldr .... rc=$? if test $rc -ne 0 (3 Replies)
Discussion started by: anijan
3 Replies

7. Shell Programming and Scripting

Problem exiting a WHILE loop in ksh

Hi I am having a problem exiting a WHILE loop. I am on a Sun server using ksh. I am running a Veritas Cluster Software (High Availablity) command to obtain a group status and grepping the command output for status "G" which means that the filesystem is frozen and therefore not available to... (3 Replies)
Discussion started by: bigbuk
3 Replies

8. Red Hat

Failed dependencies loop forever

Hello All, I was trying to install one rpm and it failed due to missing dependencies, when I try to look at the dependencies and try to install them it is asking for 100+ dependencies, did any one ever face this problem? how can we fix this? rpm -ivh /var/tmp/erlang-R15B-02.1.el6.x86_64.rpm... (0 Replies)
Discussion started by: lovesaikrishna
0 Replies

9. Shell Programming and Scripting

While Loop Exiting

We are trying to design a flow so that an ETL job shouldn't start until the previous job completes. The script we have written is while ; do sleep 2; done The loop however exits even when the process is actually running. Why could this be happening? (12 Replies)
Discussion started by: jerome_rajan
12 Replies

10. Shell Programming and Scripting

For loop exiting

Hi , I am processing some files using below shell script the problem for loop exit after processing some files even though it exist.After modifying file.txt and rerunning the script and its running .Any Advise for i in `cat /xx/file.txt |tr -s "," '\n' ` ; do echo $i... (3 Replies)
Discussion started by: mohan705
3 Replies
SCF(3pm)						User Contributed Perl Documentation						  SCF(3pm)

NAME
Bio::SCF - Perl extension for reading and writting SCF sequence files SYNOPSIS
use Bio::SCF; # tied interface tie %hash,'Bio::SCF','my_scf_file.scf'; my $sequence_length = $hash{bases_length}; my $chromatogram_sample_length = $hash{samples_length}; my $third_base = $hash{bases}[2]; my $quality_score = $hash{$third_base}[2]; my $sample_A_at_time_1400 = $hash{samples}{A}[1400]; # change the third base and write out new file $hash{bases}[2] = 'C'; tied (%hash)->write('new.scf'); # object-oriented interface my $scf = Bio::SCF->new('my_scf_file.scf'); my $sequence_length = $scf->bases_length; my $chromatogram_sample_length = $scf->samples_length; my $third_base = $scf->bases(2); my $quality_score = $scf->score(2); my $sample_A_at_time_1400 = $scf->sample('A',1400); # change the third base and write out new file $scf->bases(2,'C'); $scf->write('new.scf'); DESCRIPTION
This module provides a perl interface to SCF DNA sequencing files. It has both tied hash and an object-oriented interfaces. It provides the ability to read fields from SCF files and limited ability to modify them and write them back. Tied Methods $obj = tie %hash,'Bio::SCF',$filename_or_handle Tie the Bio::SCF module to a filename or filehandle. If successful, tie() will return the object. $value = $hash{'key'} Fetch a field from the SCF file. Valid keys are as follows: Key Value --- ----- bases_length Number of called bases in the sequence (read-only) samples_length Number of samples in the file (read-only) version SCF version (read-only) code_set Code set used to code bases (read-only) comments Structured comments (read-only) bases Array reference to a list of the base calls index Array reference to a list of the sample position for each of the base calls (e.g. the position of the base calling peak) A An array reference that can be used to determine the probability that the base in position $i is an "A". G An array reference that can be used to determine the probability that the base in position $i is a "G". C An array reference that can be used to determine the probability that the base in position $i is a "C". T An array reference that can be used to determine the probability that the base in position $i is a "T". samples A hash reference with keys "A", "C", "G" and "T". The value of each hash is an array reference to the list of intensity values for each sample. To get the length of the called sequence: $scf{bases_length} To get the value of the called sequence at position 3: $scf{bases}[3] To get the sample position at which base 3 was called: $scf{index}[3] To get the value of the "C" curve under base 3: $scf{samples}{C}[$scf{index}[3]] To get the probability that base 3 is a "C": $scf{C}[3] To print out the chromatogram as a four-column list: my $samples = $scf{samples}; for (my $i = 0; $i<$scf{samples_length}; $i++) { print join " ",$samples->{C}[$i],$samples->{G}[$i], $samples->{A}[$i],$samples->{T}[$i]," "; } $scf{bases}[$index] = $new_value The base call probability scores, base call values, base call positions, and sample values are all read/write, so that you can change them: $samples->{C}[500] = 0; each %scf Will return keys and values for the tied object. delete $scf{$key} %scf = () These operations are not supported and will return a run-time error Object Methods $scf = Bio::SCF->new($scf_file_or_filehandle) Create a new Bio::SCF object. The single argument is the name of a file or a previously-opened filehandle. If successful, new() returns the Bio::SCF object. $length = $scf->bases_length Return the length of the called sequence. $samples = $scf->samples_length Return the length of the list of chromatogram samples in the file. There are four sample series, one for each base. $sample_size = $scf->sample_size Returns the size of each sample (bytes). $code_set = $scf->code_set Return the code set used for base calling. $base = $scf->base($base_no [,$new_base]) Get the base call at the indicated position. If a new value is provided, will change the base call to the indicated base. $index = $scf->index($base_no [,$new_index]) Translates the indicated base position into the sample index for that called base. Here is how to fetch the intensity values at base number 5: my $sample_index = $scf->index(5); my ($g,$a,$t,$c) = map { $scf->sample($_,$sample_index) } qw(G A T C); If you provide a new value for the sample index, it will be updated. $base_score = $scf->base_score($base,$base_no [,$new_score]) Get the probability that the indicated base occurs at position $base_no. Here is how to fetch the probabilities for the four bases at base position 5: my ($g,$a,$t,$c) = map { $scf->base_score($_,5) } qw(G A T C); If you provide a new value for the base probability score, it will be updated. $score = $scf->score($base_no) Get the quality score for the called base at the indicated position. $intensity = $scf->sample($base,$sample_index [,$new_value]) Get the intensity value for the channel corresponding to the indicated base at the indicated sample index. You may update the intensity by providing a new value. $scf->write('file_path') Write the updated SCF file to the indicated file path. $scf->fwrite($file_handle) Write the updated SCF file to the indicated filehandle. The file must previously have been opened for writing. The filehandle is actually reopened in append mode, so you can call fwrite() multiple times and interperse your own record separators. EXAMPLES
Reading information from a preexisting file: tie %scf, 'Bio::SCF', "data.scf"; print "Base calls: "; for ( my $i=0; $i<$scf{bases}; $i++ ){ print "$scf{base}[$i] "; } print " "; print "Intensity values for the A curve "; for ( my $i=0; $i<$scf{samples}; $i++ ){ print "$scf{sample}{A}[$i]; } print " "; Another example, where we set all bases to "A", indexes to 10 and write the file back: my $obj = tie %scf,'Bio::SCF','data.scf'; for (0...@{$scf{bases}}-1){ $scf{base}[$_] = "A"; $obj->set('index', $_, 10); } $obj->write('data.scf'); AUTHOR
Dmitri Priimak, priimak@cshl.org(1999) with some cleanups by Lincoln Stein, lstein@cshl.edu(2006) This package and its accompanying libraries is free software; you can redistribute it and/or modify it under the terms of the GPL (either version 1, or at your option, any later version) or the Artistic License 2.0. Refer to LICENSE for the full license text. In addition, please see DISCLAIMER for disclaimers of warranty. SEE ALSO
perl(1). perl v5.14.2 2009-08-17 SCF(3pm)
All times are GMT -4. The time now is 08:16 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy