Main > Free Download Search >

Free feature software for linux

feature

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 8668
Gimp::Feature 1.211

Gimp::Feature 1.211


Gimp::Feature is a Perl module that can check for specific features to be present before registering the script. more>>
Gimp::Feature is a Perl module that can check for specific features to be present before registering the script.

SYNOPSIS

use Gimp::Feature;
or
use Gimp::Feature qw(feature1 feature2 ...);

This module can be used to check for specific features to be present. This can be used to deny running the script when neccessary features are not present. While some features can be checked for at any time, the Gimp::Fu module offers a nicer way to check for them.

gtk

checks for the presence of the gtk interface module.

gtk-1.1, gtk-1.2

checks for the presence of gtk-1.1 (1.2) or higher.

perl-5.005

checks for perl version 5.005 or higher.

pdl

checks for the presence of a suitable version of PDL (>=1.9906).

gnome

checks for the presence of the Gnome-Perl module.

gtkxmhtl

checks for the presence of the Gtk::XmHTML module.

unix

checks wether the script runs on a unix-like operating system. At the moment, this is every system except windows, macos, os2 and vms.

persistency

checks wether the Gimp::Data module (Gimp::Data) can handle complex persistent data structures, i.e. perl references in addition to plain strings.

The following features can only be checked after Gimp-main> has been called (usually found in the form exit main). See Gimp::Fu on how to check for these.
gimp-1.1, gimp-1.2

checks for the presense of gimp in at least version 1.1 (1.2).

FUNCTIONS

present(feature)

Checks for the presense of the single feature given as the argument. Returns true if the feature is present, false otherwise.

need(feature,[function-name])

Require a specific feature. If the required feature is not present the program will exit gracefully, logging an appropriate message. You can optionally supply a function name to further specify the place where this feature was missing.

This is the function used when importing symbols from the module.

missing(feature-description,[function-name])

Indicates that a generic feature (described by the first argument) is missing. A function name can further be specified. This function will log the given message and exit gracefully.

describe(feature)

Returns a string describing the given feature in more detail, or undef if there is no description for this feature.

list()

Returns a list of features that can be checked for. This list might not be complete.

<<less
Download (0.26MB)
Added: 2006-07-13 License: Perl Artistic License Price:
1201 downloads
Bio::DB::GFF::Feature 1.4

Bio::DB::GFF::Feature 1.4


Bio::DB::GFF::Feature is a relative segment identified by a feature type. more>>
Bio::DB::GFF::Feature is a relative segment identified by a feature type.

Bio::DB::GFF::Feature is a stretch of sequence that corresponding to a single annotation in a GFF database. It inherits from Bio::DB::GFF::RelSegment, and so has all the support for relative addressing of this class and its ancestors. It also inherits from Bio::SeqFeatureI and so has the familiar start(), stop(), primary_tag() and location() methods (it implements Bio::LocationI too, if needed).

Bio::DB::GFF::Feature adds new methods to retrieve the annotations type, group, and other GFF attributes. Annotation types are represented by Bio::DB::GFF::Typename objects, a simple class that has two methods called method() and source(). These correspond to the method and source fields of a GFF file.

Annotation groups serve the dual purpose of giving the annotation a human-readable name, and providing higher-order groupings of subfeatures into features. The groups returned by this module are objects of the Bio::DB::GFF::Featname class.

Bio::DB::GFF::Feature inherits from and implements the abstract methods of Bio::SeqFeatureI, allowing it to interoperate with other Bioperl modules.
Generally, you will not create or manipulate Bio::DB::GFF::Feature objects directly, but use those that are returned by the Bio::DB::GFF::RelSegment->features() method.
Important note about start() vs end()

If features are derived from segments that use relative addressing (which is the default), then start() will be less than end() if the feature is on the opposite strand from the reference sequence. This breaks Bio::SeqI compliance, but is necessary to avoid having the real genomic locations designated by start() and end() swap places when changing reference points.

To avoid this behavior, call $segment->absolute(1) before fetching features from it. This will force everything into absolute coordinates.

For example:

my $segment = $db->segment(CHROMOSOME_I);
$segment->absolute(1);
my @features = $segment->features(transcript);

<<less
Download (4.7MB)
Added: 2006-06-09 License: Perl Artistic License Price:
1232 downloads
Bio::Graphics::Feature 1.4

Bio::Graphics::Feature 1.4


Bio::Graphics::Feature is a simple feature object for use with Bio::Graphics::Panel. more>>
Bio::Graphics::Feature is a simple feature object for use with Bio::Graphics::Panel.

SYNOPSIS

use Bio::Graphics::Feature;

# create a simple feature with no internal structure
$f = Bio::Graphics::Feature->new(-start => 1000,
-stop => 2000,
-type => transcript,
-name => alpha-1 antitrypsin,
-desc => an enzyme inhibitor,
);

# create a feature composed of multiple segments, all of type "similarity"
$f = Bio::Graphics::Feature->new(-segments => [[1000,1100],[1500,1550],[1800,2000]],
-name => ABC-3,
-type => gapped_alignment,
-subtype => similarity);

# build up a gene exon by exon
$e1 = Bio::Graphics::Feature->new(-start=>1,-stop=>100,-type=>exon);
$e2 = Bio::Graphics::Feature->new(-start=>150,-stop=>200,-type=>exon);
$e3 = Bio::Graphics::Feature->new(-start=>300,-stop=>500,-type=>exon);
$f = Bio::Graphics::Feature->new(-segments=>[$e1,$e2,$e3],-type=>gene);

This is a simple Bio::SeqFeatureI-compliant object that is compatible with Bio::Graphics::Panel. With it you can create lightweight feature objects for drawing.

<<less
Download (4.7MB)
Added: 2006-10-21 License: Perl Artistic License Price:
1098 downloads
Bio::Graphics::FeatureFile 1.4

Bio::Graphics::FeatureFile 1.4


Bio::Graphics::FeatureFile is a set of Bio::Graphics features, stored in a file. more>>
Bio::Graphics::FeatureFile is a set of Bio::Graphics features, stored in a file.

SYNOPSIS

use Bio::Graphics::FeatureFile;
my $data = Bio::Graphics::FeatureFile->new(-file => features.txt);


# create a new panel and render contents of the file onto it
my $panel = $data->new_panel;
my $tracks_rendered = $data->render($panel);

# or do it all in one step
my ($tracks_rendered,$panel) = $data->render;

# for more control, render tracks individually
my @feature_types = $data->types;
for my $type (@feature_types) {
my $features = $data->features($type);
my %options = $data->style($type);
$panel->add_track($features,%options); # assuming we have a Bio::Graphics::Panel
}

# get individual settings
my $est_fg_color = $data->setting(EST => fgcolor);

# or create the FeatureFile by hand

# add a type
$data->add_type(EST => {fgcolor=>blue,height=>12});

# add a feature
my $feature = Bio::Graphics::Feature->new(
# params
); # or some other SeqI
$data->add_feature($feature=>EST);

The Bio::Graphics::FeatureFile module reads and parses files that describe sequence features and their renderings. It accepts both GFF format and a more human-friendly file format described below. Once a FeatureFile object has been initialized, you can interrogate it for its consistuent features and their settings, or render the entire file onto a Bio::Graphics::Panel.

This moduel is a precursor of Jason Stajichs Bio::Annotation::Collection class, and fulfills a similar function of storing a collection of sequence features. However, it also stores rendering information about the features, and does not currently follow the CollectionI interface.

<<less
Download (4.7MB)
Added: 2006-06-12 License: Perl Artistic License Price:
1229 downloads
Lingua::Phonology::Features 0.32

Lingua::Phonology::Features 0.32


Lingua::Phonology::Features is a module to handle a set of hierarchical features. more>>
Lingua::Phonology::Features is a module to handle a set of hierarchical features.

SYNOPSIS

use Lingua::Phonology;

my $phono = new Lingua::Phonology;
my $features = $phono->features;

# Add features programmatically
$features->add_feature(
Node => { type => privative, children => [Scalar, Binary, Privative] },
Scalar => { type => scalar },
Binary => { type => binary },
Privative => { type => privative }
);

# Drop features
$features->drop_feature(Privative);

# Load feature definitions from a file
$features->loadfile(phono.xml);

# Load default features
$features->loadfile;

Lingua::Phonology::Features allows you to create a hierarchy of features of various types, and includes methods for adding and deleting features and changing the relationships between them.

By "heirarchical features" we mean that some features dominate some other features, as in a tree. By having heirarchical features, it becomes possible to set multiple features at once by assigning to a node, and to indicate conceptually related features that are combined under the same node. This module, however, does not instantiate values of features, but only establishes the relationships between features.

Lingua::Phonology::Features recognizes multiple types of features. Features may be privative (which means that their legal values are either true or undef), binary (which means they may be true, false, or undef), or scalar (which means that their legal value may be anything). You can freely mix different kinds of features into the same set of features.

Finally, while this module provides a full set of methods to add and delete features programmatically, it also provides the option of reading feature definitions from a file. This is usually faster and more convenient. The method to do this is "loadfile". Lingua::Phonology::Features also comes with an extensive default feature set.

<<less
Download (0.098MB)
Added: 2006-06-13 License: Perl Artistic License Price:
1228 downloads
Debmarshal

Debmarshal


Debmarshal is a Debian repository management system. more>>
Debmarshal is a Debian repository management system. The project is designed to manage a set of local release tracks of modified and additional packages on top of a full public repository (eg. Ubuntu/dapper, Debian/sid ...).

The local database is Berkeley DB for speed. Packaged file overlaps and undeclared dependency problems can be detected. Multiple labels and permanent numbered snapshots are a feature of debmarshal managed repositories.

<<less
Download (MB)
Added: 2007-08-08 License: GPL (GNU General Public License) Price:
808 downloads
iCalDoubleRemover

iCalDoubleRemover


iCalDoubleRemover script just removes duplicate Entries in iCals. more>>
iCalDoubleRemover script just removes duplicate Entries in iCals. Dupicate entries are defined as having the same Entries except for the UID bit. A special feature is support for duplicate BirthdayCal entries as well.

Be aware that you need Perl, Config::Inifiles via Perlupdate ( perl -MCPAN -e shell install Config::IniFiles ).
<<less
Download (0.006MB)
Added: 2005-11-18 License: Freeware Price:
1436 downloads
FeedBag 1.1

FeedBag 1.1


FeedBag is an extension which allows you to subscribe to feeds in Liferea. more>>
FeedBag is an extension which allows you to subscribe to feeds in Liferea.

FeedBag disables the LiveBookmarks feature of Firefox.

When you click the LiveBookmarks icon in the location bar the current feed will be directly added to the Liferea feed list.

<<less
Download (0.007MB)
Added: 2007-04-05 License: MPL (Mozilla Public License) Price:
934 downloads
TurquoiseCRM 1.0.1

TurquoiseCRM 1.0.1


TurquoiseCRM is a lightweight CRM package developed using PHP, MySQL, and Apache. more>>
TurquoiseCRM is a lightweight CRM package developed using PHP, MySQL, and Apache.
The software is easily extendable.
Enhancements:
- An "item search" feature has been added.
- A bug in the "item delete" feature has been corrected.
- The user interface has been optimized for FireFox browsers.
- Other minor bugfixes have been made.
- A problem in downloading the zip file is now handled.
<<less
Download (0.070MB)
Added: 2006-03-20 License: GPL (GNU General Public License) Price:
1313 downloads
T-BEAR 1.5.1

T-BEAR 1.5.1


T-BEAR is the Transient Bluetooth Environment security AuditoR. more>>
T-BEAR is the Transient Bluetooth Environment security AuditoR. It includes an ncurses-based BT scanner, a Bluetooth DoS proof-of-concept, and a "hidden" BDADDR hunter similar to Redfang 2.5.
Other tools based on gnuradio are being developed, including a BT "sniffer".
Enhancements:
- Minor feature enhancements
<<less
Download (0.017MB)
Added: 2005-07-23 License: GPL (GNU General Public License) Price:
1565 downloads
SoftwareUpdate 1.10

SoftwareUpdate 1.10


SoftwareUpdate is a Java class that assists with adding an automatic software-update feature to applications. more>>
SoftwareUpdate is a Java class that assists with adding an automatic software-update feature to applications.

It doesnt perform the update, but takes care of administrative stuff like looking up the version number of the latest version, with the ability to distinguish and check different places based on operating system.

SoftwareUpdate also builds the OS-specific URLs to make it easy to do a quick latest-version check in any desktop or server application.

<<less
Download (0.051MB)
Added: 2006-07-13 License: Other/Proprietary License Price:
1198 downloads
Headphone 0.1

Headphone 0.1


Headphone is a little script that offers a Dj-ing feature. more>>
Headphone is an amaroK script that offers a Dj-ing feature. You can send one or more songs from the playlist to the xmms - player.

TODO:

Configure the xmms - player to another soundcard or another channel of your soundcard.

Use the "Sent To" "Headphone" button.

That it is. The song will be played with the xmms - player.

<<less
Download (MB)
Added: 2006-05-03 License: GPL (GNU General Public License) Price:
1272 downloads
KStatus enhanced 1.1

KStatus enhanced 1.1


KStatus enhanced is a modified version of a note SuperKaramba panel: Kstatus 1.1. more>>
KStatus enhanced is a modified version of a note SuperKaramba panel: Kstatus 1.1.
Ive removed the XMMS info panel and addedd the harware monitoring feature. So Ive updated the icon set too.
It monitors:
- System Info
- CPU usage
- RAM usage
- HDD usage
- Network usage
- System uptime
- System temperature
<<less
Download (0.12MB)
Added: 2006-07-06 License: GPL (GNU General Public License) Price:
1205 downloads
Freeverb3 1.8.0

Freeverb3 1.8.0


Freeverb3 project is a high quality freeverb, nreverb and impulse response convolution reverb. more>>
Freeverb3 project is a high quality freeverb, nreverb and impulse response convolution reverb.

Freeverb3 includes high quality freeverb, nreverb and impulse response convolution reverb. Oversampling feature provides higher quality of audio processing.

This library includes XMMS / BMP beep media player / audacious plugins and sample programs.

<<less
Download (1.9MB)
Added: 2007-08-02 License: GPL (GNU General Public License) Price:
818 downloads
Elastic Webeditor 2.0.3

Elastic Webeditor 2.0.3


Elastic Webeditor is Perl script that alows users to edit their home pages online. more>>
Elastic Webeditor is Perl script that alows users to edit their home pages online. Administration is also implemented. It supports plugins like tar viewer, CheckLinks log processor and others. This programs main feature is that you need only one unix style account.


<<less
Download (0.035MB)
Added: 2006-06-22 License: GPL (GNU General Public License) Price:
1221 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5