Sponsored Content
Full Discussion: are you alive
The Lounge What is on Your Mind? Chat with iBot - Our RSS Robot Girl are you alive Post 66793 by reborg on Wednesday 16th of March 2005 09:34:24 PM
Old 03-16-2005
I do not believe it, therefore it is not true a priori for me.

Convince me that the universe is yellow.
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

help to ping a host, is it alive or not ...

hello to everyone, i was wondering if you could help me with a script im working on, it's kind of simple but i dont have a lot experience on unix comands: well, here it is: you might apreciate the infinite while loop :D, it is supossed to be running on the server all day scaning it every 5... (12 Replies)
Discussion started by: sx3v1l_1n51de
12 Replies

2. UNIX for Dummies Questions & Answers

Check whether a process is alive or not

Hi Everybody I have small requirement that needs to be implemented in shell script. Currently i have shell script which invokes a java process say "Process A" which runs in background. If some one tries to invoke again the same shell script , then there should be some mechanism inside the... (23 Replies)
Discussion started by: appleforme1415
23 Replies

3. Shell Programming and Scripting

How to check if a pid is alive?

I want to do some operations provided the pid is active. (6 Replies)
Discussion started by: ScriptDummy
6 Replies

4. UNIX for Dummies Questions & Answers

Socket still alive!!

Hi, I'm investigate about a problem regarding a connection between two server (S1 and S2). A client software on S1 made a pool of connections on S2; for some reason some connections end but sockets still alive on S2 and not on S1. I always knew about sockets as a pair of processes; is it... (1 Reply)
Discussion started by: grado
1 Replies

5. Shell Programming and Scripting

Can we keep our script alive while logging out.

Hi I want to keep my script running even when i am logged off from the box. can we run the script in background which can automatically run every hour? Please advise. Thank you (1 Reply)
Discussion started by: Prateek007
1 Replies

6. UNIX for Dummies Questions & Answers

How to find the server ip is alive ?

How to write a shell script to find ports are open for the server. Thanks in advance. regards krackjack (4 Replies)
Discussion started by: krackjack
4 Replies

7. Solaris

keeping a process alive ?

Hello guys, I have one script running that I need to keep it running 24x7 so I'd like to know how can I implement a sort of monitoring process I mean if for some reason this process dies somehow it gets automatically started again. Thanks. (8 Replies)
Discussion started by: cerioni
8 Replies

8. Shell Programming and Scripting

Keep connection alive between PC and board

HI all, I have armv7 board and i will execute script in host machine with ssh connection from board . I have to test when board in standby mode the script runned in host remain working . The result is the reverse when kernel is in standby mode on board. SSH connection closed and the... (3 Replies)
Discussion started by: marwen_joe
3 Replies

9. What is on Your Mind?

Is this forum alive?

Odd thing. I posted in the Solaris forum, new user, just asking for a bit of advice. Nothing too complicated. As of this post there have been 140 views and zero replies. So that got me thinking, is this normal? I had a look around, and I see the same thing on many other threads, and in other... (2 Replies)
Discussion started by: _JonB_
2 Replies

10. Programming

Socket Keep-Alive

Hi I'm adding http 1.1 GET to my project and trying to use “Keep-Alive” HTTP connections to the host, The problem is when I recv() the first page, it succeeds. However, the 2nd consecutive recv() will receive zero bytes, for which I really have no idea. As per HTTP 1.1 I have Connection: ... (6 Replies)
Discussion started by: Projecteer
6 Replies
Bio::Map::FPCMarker(3pm)				User Contributed Perl Documentation				  Bio::Map::FPCMarker(3pm)

NAME
Bio::Map::FPCMarker - An central map object representing a marker SYNOPSIS
# get the marker object of $marker from the Bio::Map::FPCMarker my $markerobj = $physical->get_markerobj($marker); # acquire all the clones that hit this marker foreach my $clone ($markerobj->each_cloneid()) { print " +++$clone "; } # find the position of this marker in $contig print "Position in contig $contig"," = ",$markerobj->position($contig), " "; # find the group of the marker print "Group : ",$markerobj->group(); See Bio::Map::Position and Bio::Map::PositionI for more information. DESCRIPTION
This object handles the notion of a marker. This object is intended to be used by a map parser like fpc.pm. FEEDBACK
Mailing Lists User feedback is an integral part of the evolution of this and other Bioperl modules. Send your comments and suggestions preferably to the Bioperl mailing list. Your participation is much appreciated. bioperl-l@bioperl.org - General discussion http://bioperl.org/wiki/Mailing_lists - About the mailing lists Support Please direct usage questions or support issues to the mailing list: bioperl-l@bioperl.org rather than to the module maintainer directly. Many experienced and reponsive experts will be able look at the problem and quickly address it. Please include a thorough description of the problem with code and data examples if at all possible. Reporting Bugs Report bugs to the Bioperl bug tracking system to help us keep track of the bugs and their resolution. Bug reports can be submitted via the web: https://redmine.open-bio.org/projects/bioperl/ AUTHOR - Gaurav Gupta Email gaurav@genome.arizona.edu CONTRIBUTORS
Sendu Bala bix@sendu.me.uk PROJECT LEADERS
Jamie Hatfield jamie@genome.arizona.edu Dr. Cari Soderlund cari@genome.arizona.edu PROJECT DESCRIPTION
The project was done in Arizona Genomics Computational Laboratory (AGCoL) at University of Arizona. This work was funded by USDA-IFAFS grant #11180 titled "Web Resources for the Computation and Display of Physical Mapping Data". For more information on this project, please refer: http://www.genome.arizona.edu APPENDIX
The rest of the documentation details each of the object methods. Internal methods are usually preceded with a _ new Title : new Usage : my $clone = Bio::Map::FPCMarker->new ( -name => $marker, -type => $type, -global => $global, -frame => $frame, -group => $group, -subgroup=> $subgroup, -anchor => $anchor, -clones => \%clones, -contigs => \%contigs, -position => \%markerpos, -remark => $remark ); Function: Initialize a new Bio::Map::FPCMarker object Most people will not use this directly but get Markers through L<Bio::MapIO::fpc> Returns : L<Bio::Map::FPCMarker> object Args : -name => marker name string, -type => type string, -global => global position for marker, -frame => boolean if marker is framework or placement, -group => group number for marker, -subgroup => subgroup number of marker, -anchor => boolean if marker is anchored, -clones => all the clone elements in map (hashref), -contigs => all the contig elements (hasref), -position => mapping of marker names to map position (hasref), -remark => remarks, separated by newlines Access Methods These methods let you get and set the member variables name Title : name Usage : my $name = $markerobj->name(); Function: Get/set the name for this marker Returns : scalar representing the current name of this marker Args : none to get, OR string to set type Title : type Usage : my $type = $markerobj->type(); Function: Get/set the type for this marker Returns : scalar representing the current type of this marker Args : none to get, OR string to set global Title : global Usage : my $type = $markerobj->global(); Function: Get/set the global position for this marker Returns : scalar representing the current global position of this marker Args : none to get, OR string to set anchor Title : anchor Usage : my $anchor = $markerobj->anchor(); Function: indicate if the Marker is anchored or not (True | False) Returns : scalar representing the anchor (1 | 0) for this marker Args : none to get, OR 1|0 to set framework Title : framework Usage : $frame = $markerobj->framework(); Function: indicate if the Marker is framework or placement (1 | 0) Returns : scalar representing if the marker is framework (1 if framework, 0 if placement) Args : none to get, OR 1|0 to set group Title : group Usage : $grpno = $markerobj->group(); Function: Get/set the group number for this marker. This is a generic term, used for Linkage-Groups as well as for Chromosomes. Returns : scalar representing the group number of this marker Args : none to get, OR string to set subgroup Title : subgroup Usage : $subgroup = $marker->subgroup(); Function: Get/set the subgroup for this marker. This is a generic term: subgroup here could represent subgroup of a Chromosome or of a Linkage Group. The user must take care of which subgroup he/she is querying for. Returns : scalar representing the subgroup of this marker Args : none to get, OR string to set position Title : position Usage : $markerpos = $markerobj->position($ctg); Function: get the position of the marker in the contig Returns : scalar representing the position of the markernumber of the contig Args : $ctg is necessary to look for the position of the marker in that contig. *** This has nothing to do with an actual Bio::Map::PositionI object *** remark Title : remark Usage : $markerremark = $markerobj->remark(); Function: get the remarks for this marker Returns : scalar of newline-separated markers Args : none each_cloneid Title : each_cloneid Usage : my @clones = $map->each_cloneid(); Function: retrieves all the clone ids in a map unordered Returns : list of strings (ids) Args : none *** This only supplies the ids set with the set_clones method *** *** It has nothing to do with actual Bio::Map::MappableI objects *** each_contigid Title : each_contigid Usage : my @contigs = $map->each_contigid(); Function: retrieves all the contig ids in a map unordered Returns : list of strings (ids) Args : none *** This only supplies the ids set with the set_contigs method *** *** It has nothing to do with actual Bio::Map::MapI objects *** set_clones Title : set_clones Usage : $marker->set_clones(\%clones) Function: Set the clone ids hashref Returns : None Args : Hashref of clone ids *** This only sets a hash of ids *** *** It has nothing to do with actual Bio::Map::MappableI objects *** set_contigs Title : set_contigs Usage : $marker->set_contigs(\%contigs) Function: Set the contig ids hashref Returns : None Args : Hashref of contig ids *** This only sets a hash of ids *** *** It has nothing to do with actual Bio::Map::MapI objects *** set_positions Title : set_positions Usage : $marker->set_positions(\%markerpos) Function: Set the positions hashref Returns : None Args : Hashref of marker positions *** This only sets a hash of numbers *** *** It has nothing to do with actual Bio::Map::PositionI objects *** perl v5.14.2 2012-03-02 Bio::Map::FPCMarker(3pm)
All times are GMT -4. The time now is 03:49 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy