Tech Spending Hit by Subprime Mess


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Complex Event Processing RSS News Tech Spending Hit by Subprime Mess
# 1  
Old 06-23-2008
Tech Spending Hit by Subprime Mess

by Jeffrey Schwartz, RedmondDeveloper, June 20th 2008.The subprime meltdown that has roiled the financial markets since last fall will negatively impact the amount large investment houses, banks and brokerages will spend on IT overall — and on software development projects in particular — in the [...]

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

1 More Discussions You Might Find Interesting

1. AIX

Implementing PowerVM without spending a single dollar

Hi experts. I want to setup a training lab. I have a Power 5 standalone server 9110-51A (p5 510) I want to enable PowerVM on it and create two LPARs I don't have money for an HMC I know I can use IVM instead I understand IVM is part of the VIOS software TWO QUESTIONS: 1- If... (12 Replies)
Discussion started by: livehho
12 Replies
Login or Register to Ask a Question
Bio::Search::Hit::BlastHit(3pm) 			User Contributed Perl Documentation			   Bio::Search::Hit::BlastHit(3pm)

NAME
Bio::Search::Hit::BlastHit - Blast-specific subclass of Bio::Search::Hit::GenericHit SYNOPSIS
use Bio::Search::Hit::BlastHit; my $hit = Bio::Search::Hit::BlastHit->new(-algorithm => 'blastp'); # See Bio::Search::Hit::GenericHit for information about working with Hits. # TODO: Describe how to configure a SearchIO stream so that it generates # GenericHit objects. DESCRIPTION
This object is a subclass of Bio::Search::Hit::GenericHit and provides some operations that facilitate working with BLAST and PSI-BLAST Hits. For general information about working with Hits, see Bio::Search::Hit::GenericHit. 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 - Jason Stajich and Steve Chervitz Email jason@bioperl.org Email sac@bioperl.org APPENDIX
The rest of the documentation details each of the object methods. Internal methods are usually preceded with a _ new Title : new Usage : my $obj = Bio::Search::Hit::GenericHit->new(); Function: Builds a new Bio::Search::Hit::GenericHit object Returns : Bio::Search::Hit::GenericHit Args : See Bio::Search::Hit::GenericHit() for other args. Here are the BLAST-specific args that can be used when creating BlastHit objects: -iteration => integer for the PSI-Blast iteration number -found_again => boolean, true if hit appears in a "previously found" section of a PSI-Blast report. iteration Usage : $hit->iteration( $iteration_num ); Purpose : Gets the iteration number in which the Hit was found. Example : $iteration_num = $sbjct->iteration(); Returns : Integer greater than or equal to 1 Non-PSI-BLAST reports will report iteration as 1, but this number is only meaningful for PSI-BLAST reports. Argument : iteration_num (optional, used when setting only) Throws : none See Also : found_again() found_again Title : found_again Usage : $hit->found_again; $hit->found_again(1); Purpose : Gets a boolean indicator whether or not the hit has been found in a previous iteration. This is only applicable to PSI-BLAST reports. This method indicates if the hit was reported in the "Sequences used in model and found again" section of the PSI-BLAST report or if it was reported in the "Sequences not found previously or not previously below threshold" section of the PSI-BLAST report. Only for hits in iteration > 1. Example : if( $hit->found_again()) { ... }; Returns : Boolean, true(1) if the hit has been found in a previous PSI-BLAST iteration. Returns false (0 or undef) for hits that have not occurred in a previous PSI-BLAST iteration. Argument : Boolean (1 or 0). Only used for setting. Throws : none See Also : iteration() perl v5.14.2 2012-03-02 Bio::Search::Hit::BlastHit(3pm)