Download Shareware and Freeware Software for Windows, Linux, Macintosh, PDA

line Home  |  About Us  |  Link To Us  |  FAQ  |  Contact

Serving Software Downloads in 956 Categories, Downloaded 50.181.320 Times

Obj freeware
Filter: All | Freeware | Demo
 

Obj

< 1 2 3 4 5 > 
Added: April 21, 2010 | Visits: 981

Bio::PrimarySeqI Bio::PrimarySeqI is a Perl Interface definition for a Bio::PrimarySeq. SYNOPSIS # Bio::PrimarySeqI is the interface class for sequences. # If you are a newcomer to bioperl, you should # start with Bio::Seq documentation. This # documentation is mainly for developers using # Bioperl. #...



Platforms: *nix

License: Freeware Size: 4.7 MB Download (92): Bio::PrimarySeqI Download

Added: August 12, 2010 | Visits: 1.154

GO::Model::Term GO::Model::Term is a term or concept in an ontology. SYNOPSIS # From a file use GO::Parser; my $parser = new GO::Parser({handler=>obj}); # create parser object $parser->parse("gene_ontology.obo"); # parse file -> objects my $graph = $parser->handler->graph; # get L object my $term =...





Platforms: *nix

License: Freeware Size: 593.92 KB Download (97): GO::Model::Term Download

Added: August 12, 2010 | Visits: 728

Scalar::Util Scalar::Util is a selection of general-utility scalar subroutines. SYNOPSIS use Scalar::Util qw(blessed dualvar isweak readonly refaddr reftype tainted weaken isvstring looks_like_number set_prototype); Scalar::Util contains a selection of subroutines that people have expressed would be...


Platforms: *nix

License: Freeware Size: 43.01 KB Download (97): Scalar::Util Download

Added: September 16, 2010 | Visits: 1.061

CGI::AppBuilder::Frame CGI::AppBuilder::Frame is a configuration initializer. SYNOPSIS use CGI::AppBuilder::Frame; my $ab = CGI::AppBuilder::Frame- >new( ifn, my_init.cfg, opt, vhS:a:); my ($q, $ar, $ar_log) = $ab- >start_app($0, %ARGV); print $ab- >disp_form($q, $ar); This class provides methods for reading...


Platforms: *nix

License: Freeware Size: 10.24 KB Download (88): CGI::AppBuilder::Frame Download

Added: November 05, 2010 | Visits: 644

Bio::Biblio::Patent Bio::Biblio::Patent is a representation of a patent. SYNOPSIS $obj = new Bio::Biblio::Patent (-doc_number => 1-2-3-4-5); #--- OR --- $obj = new Bio::Biblio::Patent; $obj->doc_number (1-2-3-4-5); A storage object for a patent. See its place in the class hierarchy in...


Platforms: *nix

License: Freeware Size: 4.7 MB Download (96): Bio::Biblio::Patent Download

Added: July 20, 2010 | Visits: 609

Class::Declare Class::Declare is a Perl module created to declare classes with public, private and protected attributes and methods. SYNOPSIS package My::Class; use strict; use warnings; use base qw( Class::Declare ); __PACKAGE__->declare( public => { public_attr => 42 } , private => { private_attr...


Platforms: *nix

License: Freeware Size: 76.8 KB Download (88): Class::Declare Download

Added: May 26, 2010 | Visits: 1.088

File::Wildcard File::Wildcard is a Perl module for enhanced glob processing. SYNOPSIS use File::Wildcard; my $foo = File::Wildcard->new(path => "/home/me///core"); while (my $file = $foo->next) { unlink $file; } When looking at how various operating systems do filename wildcard expansion (globbing),...


Platforms: *nix

License: Freeware Size: 23.55 KB Download (96): File::Wildcard Download

Added: July 20, 2010 | Visits: 863

Sys::AlarmCall Sys::AlarmCall is a package to handle the logic in timing out calls with alarm() and an ALRM handler, allowing nested calls as well. SYNOPSIS use Sys::AlarmCall; $result = alarm_call($timeout1,$func1,@args1); @result = alarm_call($timeout2,$func2,@args2); Sys::AlarmCall provides a...


Platforms: *nix

License: Freeware Size: 5.12 KB Download (88): Sys::AlarmCall Download

Added: July 17, 2010 | Visits: 1.158

Business::PayPal::SDK Business::PayPal::SDK is an interface to paypals SDKs. SYNOPSIS use Business::PayPal::SDK; my $pp = new Business::PayPal::SDK( { paypal_apiid => "sdk-seller_api1.sdk.com", paypal_apipw => "12345678", paypal_cert => "paypal_java_sdk/samples/Cert/sdk-seller.p12", paypal_certpw =>...


Platforms: *nix

License: Freeware Size: 9.22 KB Download (107): Business::PayPal::SDK Download

Added: September 02, 2010 | Visits: 2.487

Geo::ShapeFile Geo::ShapeFile is a Perl extension for handling ESRI GIS Shapefiles. SYNOPSIS use Geo::ShapeFile; my $shapefile = new Geo::ShapeFile("roads"); for(1 .. $shapefile->shapes()) { my $shape = $shapefile->get_shp_record($_); # see Geo::ShapeFile::Shape docs for what to do with $shape my...


Platforms: *nix

License: Freeware Size: 276.48 KB Download (147): Geo::ShapeFile Download

Added: April 09, 2010 | Visits: 1.210

PIX::Walker PIX::Walker is a Perl module to process Cisco PIX configs and walk access-lists. SYNOPSIS PIX::Walker is an object that allows you to process PIX firewall configs and walk an access-list for matches. PIX OS versions 6 and 7 are supported. ** This module is still in very early development **...


Platforms: *nix

License: Freeware Size: 13.31 KB Download (99): PIX::Walker Download

Added: September 26, 2010 | Visits: 955

YAPE::Regex::Element YAPE::Regex::Element contains sub-classes for YAPE::Regex elements. SYNOPSIS use YAPE::Regex MyExt::Mod; # this sets up inheritence in MyExt::Mod # see YAPE::Regex documentation YAPE MODULES The YAPE hierarchy of modules is an attempt at a unified means of parsing and extracting...


Platforms: *nix

License: Freeware Size: 153.6 KB Download (93): YAPE::Regex::Element Download

Added: March 23, 2010 | Visits: 830

Object::InsideOut Object::InsideOut is a comprehensive inside-out object support module. SYNOPSIS package My::Class; { use Object::InsideOut; # Numeric field # With combined get+set accessor my @data :Field :Type(numeric) :Accessor(data); # Takes INPUT (or input, etc.) as a mandatory parameter to...


Platforms: *nix

License: Freeware Size: 10.24 KB Download (88): Object::InsideOut Download

Added: July 24, 2010 | Visits: 835

Method::Declarative Method::Declarative is a Perl module to create methods with declarative syntax. SYNOPSIS use Method::Declarative ( --defaults => { precheck => [ [ qw(precheck1 arg1 arg2) ], # ... ], postcheck => [ [ qw(postcheck1 arg3 arg4) ], # ... ], init => [ [ initcheck1 ], # ... ],...


Platforms: *nix

License: Freeware Size: 8.19 KB Download (92): Method::Declarative Download

Added: April 14, 2010 | Visits: 890

Basset::Object::Persistent Basset::Object::Persistent is a subclass of Basset::Object that allows objects to be easily stored into a relational database. Presently only supports MySQL, but that may change in the future. SYNOPSIS (no synopsis, this is an abstract super class that should never be instantiated directly,...


Platforms: *nix

License: Freeware Size: 143.36 KB Download (88): Basset::Object::Persistent Download

Added: April 03, 2010 | Visits: 952

Rose::Object::MakeMethods::Generic Rose::Object::MakeMethods::Generic is a Perl module that can create simple object methods. SYNOPSIS package MyObject; use Rose::Object::MakeMethods::Generic ( scalar => [ power, error, ], scalar --get_set_init => name, boolean --get_set_init => is_tall, boolean => [ is_red,...


Platforms: *nix

License: Freeware Size: 28.67 KB Download (91): Rose::Object::MakeMethods::Generic Download

Added: July 05, 2010 | Visits: 1.353

Rose::DB::Object::Helpers Rose::DB::Object::Helpers is a mix-in class containing convenience methods for Rose::DB::Object. SYNOPSIS package MyDBObject; use Rose::DB::Object; our @ISA = qw(Rose::DB::Object); use Rose::DB::Object::Helpers clone, { load_or_insert => find_or_create }; ... $obj =...


Platforms: *nix

License: Freeware Size: 481.28 KB Download (114): Rose::DB::Object::Helpers Download

Added: April 08, 2010 | Visits: 1.128

Event::RPC Event::RPC is a event based transparent Client/Server RPC framework. SYNOPSIS #-- Server Code use Event::RPC::Server; use My::TestModule; my $server = Event::RPC::Server->new ( port => 5555, classes => { "My::TestModule" => { ... } }, ); $server->start;...


Platforms: *nix

License: Freeware Size: 31.74 KB Download (114): Event::RPC Download

Added: November 02, 2010 | Visits: 1.205

Bio::LiveSeq::Translation Bio::LiveSeq::Translation is a translation class for LiveSeq. This stores informations about aminoacids translations of transcripts. The implementation is that a Translation object is the translation of a Transcript object, with different possibilities of manipulation, different coordinate...


Platforms: *nix

License: Freeware Size: 4.7 MB Download (104): Bio::LiveSeq::Translation Download

Added: June 13, 2010 | Visits: 884

XML::Generator::PerlData XML::Generator::PerlData is a Perl extension for generating SAX2 events from nested Perl data structures. SYNOPSIS use XML::Generator::PerlData; use SomeSAX2HandlerOrFilter; ## Simple style ## # get a deeply nested Perl data structure... my $hash_ref =...


Platforms: *nix

License: Freeware Size: 13.31 KB Download (93): XML::Generator::PerlData Download

< 1 2 3 4 5 >