Main > Free Download Search >

Free alignment software for linux

alignment

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 78
Bio::Graphics::Glyph::alignment 1.4

Bio::Graphics::Glyph::alignment 1.4


Bio::Graphics::Glyph::alignment is the alignment glyph. more>>
Bio::Graphics::Glyph::alignment is the "alignment" glyph.

SYNOPSIS

See L< Bio::Graphics::Panel > and L< Bio::Graphics::Glyph >.

This is identical to the "graded_segments" glyph, and is used for drawing features that consist of discontinuous segments. The color intensity of each segment is proportionate to the score.

<<less
Download (4.7MB)
Added: 2006-10-21 License: Perl Artistic License Price:
1099 downloads
Basic Local Alignment Search Tool 2006-05-07

Basic Local Alignment Search Tool 2006-05-07


Basic Local Alignment Search Tool is a set of similarity search programs designed to explore all of the available databases. more>>
Basic Local Alignment Search Tool is a set of similarity search programs designed to explore all of the available sequence databases regardless of whether the query is protein or DNA.
It uses a heuristic algorithm which seeks local as opposed to global alignments, and is therefore able to detect relationships among sequences which share only isolated regions of similarity.
It can be run locally as a full executable, and can be used to run BLAST searches against private, local databases, or downloaded copies of the NCBI databases. It runs on Mac OS, Win32, LINUX, Solaris, IBM AIX, SGI, Compaq OSF, and HP- UX systems.
Main features:
Nucleotide
- Quickly search for highly similar sequences (megablast)
- Quickly search for divergent sequences (discontiguous megablast)
- Nucleotide-nucleotide BLAST (blastn)
- Search for short, nearly exact matches
- Search trace archives with megablast or discontiguous megablast
Protein
- Protein-protein BLAST (blastp)
- Position-specific iterated and pattern-hit initiated BLAST (PSI- and PHI-BLAST)
- Search for short, nearly exact matches
- Search the conserved domain database (rpsblast)
- Protein homology by domain architecture (cdart)
Translated
- Translated query vs. protein database (blastx)
- Protein query vs. translated database (tblastn)
- Translated query vs. translated database (tblastx)
Genomes
- Human, mouse, rat, chimp cow, pig, dog, sheep, cat
- Chicken, puffer fish, zebrafish
- Environmental samples
- Protozoa
- Insects, nematodes, plants, fungi, microbial genomes, other eukaryotic genomes
Special
- Search for gene expression data (GEO BLAST)
- Align two sequences (bl2seq)
- Screen for vector contamination (VecScreen)
- Immunoglobin BLAST (IgBlast)
- SNP BLAST
Meta
- Retrieve results
<<less
Download (14.6MB)
Added: 2006-06-14 License: Open Software License Price:
1228 downloads
AlignAid 0.0.2

AlignAid 0.0.2


AlignAid is a Perl module that easily run sequence alignments locally or on a cluster. more>>
AlignAid is a Perl module that easily run sequence alignments locally or on a cluster.
SYNOPSIS
use AlignAid;
# create an AlignAid object
# a single, locally run blast job is the default
my $job = AlignAid->new( db => my_blast_db, dir => $dir,
fasta => my_query.fa,
prog_args => V=20 -nonnegok );
# run the job on the current host
my $return_value = $job->submit(outfile => my_results.out);
# create an AlignAid cross_match object
# specify the alignment program and the queue to override the defaults
my $job2 = AlignAid->new( program => cross_match,
db => my_db.fa, dir => $dir,
fasta => my_query_seqs.fa, queue => LSF);
# submit the cross_match jobs to an LSF queue (of compute nodes)
my $return_value2 = $job2->submit(outfile => my_output);
# kill the queued jobs
my $return_value3 = $job2->kill_all;
AlignAid is designed to make it easy to run the sequence alignment programs Blast and cross_match. AlignAid can accept a large number of query sequences. If a compute cluster queue such as LSF or PBS is available, AlignAid can automatically split the queries into multiple queue jobs.
Likewise, if you want to run the alignments locally on a single host, a single change is all that is necessary -- AlignAid will take care of how to invoke the alignment programs and manage the output.
AlignAid also has rudimentary support for LSF queue job control; it is possible to kill jobs through AlignAids interface.
Enhancements:
- Perl
<<less
Download (0.34MB)
Added: 2007-01-22 License: Perl Artistic License Price:
1005 downloads
Bio::AlignIO::msf 1.4

Bio::AlignIO::msf 1.4


Bio::AlignIO::msf is a Perl module with msf sequence input/output stream. more>>
Bio::AlignIO::msf is a Perl module with msf sequence input/output stream.

SYNOPSIS

Do not use this module directly. Use it via the Bio::AlignIO class.

This object can transform Bio::Align::AlignI objects to and from msf flat file databases.

The rest of the documentation details each of the object methods. Internal methods are usually preceded with a _

next_aln

Title : next_aln
Usage : $aln = $stream->next_aln()
Function: returns the next alignment in the stream. Tries to read *all* MSF
It reads all non whitespace characters in the alignment
area. For MSFs with weird gaps (eg ~~~) map them by using
$al->map_chars(~,-)
Returns : L< Bio::Align::AlignI > object
Args : NONE

write_aln

Title : write_aln
Usage : $stream->write_aln(@aln)
Function: writes the $aln object into the stream in MSF format
Sequence type of the alignment is determined by the first sequence.
Returns : 1 for success and 0 for error
Args : L< Bio::Align::AlignI > object

<<less
Download (4.7MB)
Added: 2006-09-29 License: Perl Artistic License Price:
1121 downloads
Bio::AlignIO::bl2seq 1.4

Bio::AlignIO::bl2seq 1.4


Bio::AlignIO::bl2seq is a bl2seq sequence input/output stream. more>>
Bio::AlignIO::bl2seq is a bl2seq sequence input/output stream.

SYNOPSIS

Do not use this module directly. Use it via the Bio::AlignIO class, as in:

use Bio::AlignIO;

$in = Bio::AlignIO->new(-file => "inputfilename" , -format => bl2seq);
$aln = $in->next_aln();

This object can create Bio::SimpleAlign sequence alignment objects (of 2 sequences) from bl2seq BLAST reports.

A nice feature of this module is that- in combination with StandAloneBlast.pm or remote blasting - it can be used to align 2 sequences and make a SimpleAlign object from them which can then be manipulated using any SimpleAlign.pm methods, eg:

#Get 2 sequences
$str = Bio::SeqIO->new(-file=>t/amino.fa , -format => Fasta, );
my $seq3 = $str->next_seq();
my $seq4 = $str->next_seq();

# Run bl2seq on them
$factory = Bio::Tools::StandAloneBlast->new(program => blastp,
outfile => bl2seq.out);
my $bl2seq_report = $factory->bl2seq($seq3, $seq4);

# Use AlignIO.pm to create a SimpleAlign object from the bl2seq report
$str = Bio::AlignIO->new(-file=> bl2seq.out,-format => bl2seq);
$aln = $str->next_aln();

<<less
Download (4.7MB)
Added: 2007-08-10 License: Perl Artistic License Price:
812 downloads
GnoTime 2.2.2

GnoTime 2.2.2


GnoTime provides a to-do list organizer and project timer. more>>
GnoTime provides a to-do list organizer and project timer.
GnoTime is a to-do list tracker and project timer with a built-in invoice generator. It allows users to keep track of how much time they have spent working on particular tasks, maintain a diary of that work, and create invoices with task-specific billing fees and rates.
Main features:
- Multiple To-Do Lists that can be sorted by the priority/importance of the tasks in the list. The to-do items can be organized into categories, arranged in a hierarchical way. This makes it easy to maintain both business and personal items in the list, or handle many different projects, while keeping them separate from each other.
- A pair of Diary/Journal areas that can be used to keep long and detailed notes and diary entries. The project description area allows a multi-paragraph description or status to be typed in. The diary area allows day-to-day notes to be associated with a set of timestamps, so that one has a record of what one did on any given day.
- A Running Timer, with time totals, for each project/task. One starts the timer by clicking on a task: it will measure the amount of time that you are in front of the computer. If it detects that the keyboard/mouse are idle, it will stop the clock. If the clock stays stopped too long, it will nag you to start it up again. You can view time totals by day, week, month or year.
- A Billing Status dialog for each diary entry. You can mark any given diary entry as bill-able/non-bill-able, paid or pending, and set the billing rate. Each project can also be marked up with a set of project-planning information: planed start, end and due dates, hours to finish, percent-complete. This is in addition to assigning an urgency/importance to each project, as well as a status (completed/in-progress not-started/canceled).
- A half-dozen different HTML Reports that can slice and dice your lists. Theres a Journal report that shows all of the diary entries for one given project. Theres an Invoice report that summarizes the time spent on each entry, and computes a dollar amount for it. Theres a Status Report that prints the title of each project, together with the paragraph-long descriptions of each. Theres a ToDo report, which prints only the project title, the importance/urgency, and the completed/in-progress/not-started status. The Daily report summarizes the total time spent on a day-by-day basis, and lists each of the projects that were worked on in a given day. Each of these reports can be customized. And, because theyre HTML, you can even publish them as web pages. (Yes, Ive thought of using GnoTime as a weblog management/publishing tool).
Enhancements:
- Build against QOF version 0.6.0, if available.
- Fix issue where yelp doesnt display an entry for gnotime when browsing because it doesnt recognize the entry
- Fix sourceforge bug [ 799077 ] projects blanked when first time user tries to sort
- fix broken leap-year calculation, leading to bugs sourceforge bugs [ 983408 ] and [ 1114205 ]
- Fix crash due to hoverhelp timer popping after a report window is closed.
- Change activity report to display date/time in two distinct html table columns (prettier alignment)
- Bug fix: sourceforge bug report fixed [ 877193 ] toolbar wont go to/stay in text-only mode
- Bug fix: editing time brings up wrong report
- fedora .spec file is out of date and rpm cannot build rpm
- Fix bug involving copy of old gnotime files to a new machine on which gnotime has never been run before.
- Fix sourceforge bug [ 1276458 ] "Empty" appears in diary entry
- Apply sourceforge patch 1176719 Extensible fix for gtkhtml3 building
- Apply 1171394 Adds separate timeout for "No Project" dialog
- Apply sourceforge patch 085911 Add "-" value for status field
- Apply sourceforge patch 074658 Add wordwrapping to diary entry boxes
- Apply sourceforge patch 1074458 Fix a crash when invoking help
- Apply sourceforge patch 1038701 Fix to Activity item in popup menu
- Apply sourceforge patch 1027582 Build system update for qof inclusion
- Fix idle time so that it works with Linux 2.6 kernel /proc/interrupts
- use %e to see the estimated sizing of a project in the logfiles
- Apply new pt_BR translation from Goedson Teixeira Paixao
- Fix for Debian Bug #250776, change widget visibility in the edit interval dialog
<<less
Download (1.3MB)
Added: 2007-02-14 License: GPL (GNU General Public License) Price:
983 downloads
libmpeg2 0.4.1

libmpeg2 0.4.1


libmpeg2 is a free MPEG-2 video stream decoder. more>>
libmpeg2 is a free library for decoding mpeg-2 and mpeg-1 video streams. libmpeg2 is released under the terms of the GPL license.
mpeg2dec
mpeg2dec is a test program for libmpeg2. It decodes mpeg-1 and mpeg-2 video streams, and also includes a demultiplexer for mpeg-1 and mpeg-2 program streams.
It is purposely kept simple : it does not include features like reading files from a DVD, CSS, fullscreen output, navigation, etc... The main purpose of mpeg2dec is to have a simple test bed for libmpeg2.
The libmpeg2 source code is always distributed in the mpeg2dec package, to make it easier for people to test it.
Main features:
- Conformance - libmpeg2 is able to decode all mpeg streams that conform to certain restrictions: "constrained parameters" for mpeg-1, and "main profile" for mpeg-2. In practice, this is what most people are using. For streams that follow these restrictions, we believe libmpeg2 is 100% conformant to the mpeg standards - and we have a pretty extensive test suite to check this.
- Speed - there has been huge efforts there, and we believe libmpeg2 is the fastest library around for what it does. Please tell us if you find a faster one ! With typical video streams as found on DVDs, and doing only decoding with no display, you should be able to get about 110 fps on a PIII/666, or 150 fps on an Athlon/950. This is less than 20 cycles per output pixel. In a real player program, the display routines will probably take as much time as the actual decoding !
- Portability - most of the code is written in C, and when we use platform-specific optimizations (typically assembly routines, currently used for the motion compensation and the inverse cosine transform stages) we always have a generic C routine to fall back on. This should be portable to all architectures - at least we have heard reports from people running this code on x86, ppc, sparc, arm and sh4. Assembly-optimized implementations are available on x86 (MMX) and ppc (altivec) architectures. Ultrasparc (VIS) is probably the next on the list - well see.
- Reuseability - we do not want libmpeg2 to include any project-specific code, but it should still include enough features to be used by very diverse projects. We are only starting to get there - the best way to help here is to give us some feedback !
Enhancements:
- Newer versions of the autotools and FreeBSD and OS X systems are better handled.
- x86 accelerations are now supported on the AMD-64 CPU, including on FreeBSD.
- The AltiVec features are also better detected.
- The 4:4:4 chroma handling, a memory leak in the Xshm code on remote displays, and alignment issues in the sample programs were fixed.
- The parser is more tolerant with invalid sequence display extension.
<<less
Download (0.46MB)
Added: 2006-09-20 License: GPL (GNU General Public License) Price:
1166 downloads
Bio::Tools::AlignFactory 1.4

Bio::Tools::AlignFactory 1.4


Bio::Tools::AlignFactory is a base object for alignment factories. more>>
Bio::Tools::AlignFactory is a base object for alignment factories.

SYNOPSIS

You wont be using this as an object, but using a dervied class like Bio::Tools::pSW

Holds common Alignment Factory attributes in place

<<less
Download (4.7MB)
Added: 2006-10-10 License: Perl Artistic License Price:
1111 downloads
libgtkhtml 2.11.1

libgtkhtml 2.11.1


libgtkhtml is a GNOME library for gtkhtml2 module. more>>
libgtkhtml is a GNOME library for gtkhtml2 module.
Installation:
The simplest way to compile this package is:
1. `cd to the directory containing the packages source code and type `./configure to configure the package for your system. If youre using `csh on an old version of System V, you might need to type `sh ./configure instead to prevent `csh from trying to execute `configure itself.
Running `configure takes awhile. While running, it prints some messages telling which features it is checking for.
2. Type `make to compile the package.
3. Optionally, type `make check to run any self-tests that come with the package.
4. Type `make install to install the programs and any data files and documentation.
5. You can remove the program binaries and object files from the source code directory by typing `make clean. To also remove the files that `configure created (so you can compile the package for a different kind of computer), type `make distclean. There is also a `make maintainer-clean target, but that is intended mainly for the packages developers. If you use it, you may have to get all sorts of other programs in order to regenerate files that came with the distribution.
Enhancements:
- Support for getting at various properties of embedded objects [Rodney Dawes]
- Support for favicons in documents [Rodney Dawes]
- Use GtkComboBox for drop-down selection form elements [Rodney Dawes]
- Set default values for select form elements [Rodney Dawes]
- Support meta http-equiv="refresh" [Rodney Dawes]
- Dont abort on unhandled text alignments (bug #306746) [Rodney Dawes]
- Fix crash with keynav/mouse hilighting in yelp (bug #167585) [Vinay]
- Be lenient with incomplete list elements in CSS (bug #316475)[Sylvain Defresne]
- Distrubute the sample html files for the test programs [Rodney Dawes]
- General build system cleanup and fixes [Rodney Dawes]
<<less
Download (0.80MB)
Added: 2007-08-14 License: LGPL (GNU Lesser General Public License) Price:
801 downloads
Xmame 0.106

Xmame 0.106


Xmame is the X11/Unix port of MAME. more>>
Xmame is the X11/Unix port of MAME. MAME is the Multiple Arcade Machine Emulator, an arcade (coin-op) video game emulator.
The latest stable release is capable of playing over 2000 arcade games.
Enhancements:
- Everything from MAME 0.106 (changes-mame.html) and MESS 0.106 (changes-mess.html).
- Reverted a change that was intended to work around some Metacity focus misbehavior but was causing all window managers to have focus problems in fullscreen mode.
- Fixed a link error for messtest. (Arnaud G. Gibert)
- The clean68k target now removes libcpu.a, which fixes link errors for successive builds made without a full clean. (Arnaud G. Gibert)
- Fixed an alignment bug in the OpenGL driver which caused Defender, and possibly other 16bpp games, to be skewed.
- The mouse is no longer automatically grabbed in fullscreen mode. Bugzilla bug 877.
- Replaced fuzzy game name comparison with the method used by MAME for Windows, which lists approximate matches when an exact match isnt found.
- A BadMatch error should no longer occur for the OpenGL target in some cases, such as when 16bpp mode is used with recent releases of the binary NVIDIA driver.
- Fixed the tiny build target. (Mike Frysinger)
- Added CFLAGS for the Blackfin CPU. (Mike Frysinger)
- BUILD_ZLIB and BUILD_EXPAT can now be disabled without having to edit the makefile. (Mike Frysinger)
<<less
Download (15.3MB)
Added: 2006-09-12 License: GPL (GNU General Public License) Price:
1151 downloads
py-ssance3 1

py-ssance3 1


An interesting 2D strategy game by Jambon which is written in Python more>>

py-ssance3 1 lets users enjoy an interesting 2D strategy game by Jambon which is written in Python

How to play : In turn both players put a counter in the column of their choice, the counter slides then up to the lowest possible position in the said column and it belongs then to the adversary to play. The victor is the player who accomplishes the first alignment (horizontal, vertical or diagonal) of three counters of his colour.

Requirements:

  • Python
<<less
Added: 2009-07-22 License: Freeware Price: FREE
13 downloads
HPC Challenge 1.2.0

HPC Challenge 1.2.0


HPC Challenge is a high performance benchmark suite. more>>
HPC Challenge is a high performance benchmark suite. The HPC Challenge consists of basically 7 benchmarks:
1. HPL - the Linpack TPP benchmark which measures the floating point rate of execution for solving a linear system of equations.
2. DGEMM - measures the floating point rate of execution of double precision real matrix-matrix multiplication.
3. STREAM - a simple synthetic benchmark program that measures sustainable memory bandwidth (in GB/s) and the corresponding computation rate for simple vector kernel.
4. PTRANS (parallel matrix transpose) - exercises the communications where pairs of processors communicate with each other simultaneously. It is a useful test of the total communications capacity of the network.
5. RandomAccess - measures the rate of integer random updates of memory (GUPS).
6. FFTE - measures the floating point rate of execution of double precision complex one-dimensional Discrete Fourier Transform (DFT).
7. Communication bandwidth and latency - a set of tests to measure latency and bandwidth of a number of simultaneous communication patterns; based on b_eff (effective bandwidth benchmark).
Compiling:
The first step is to create a configuration file that reflects characteristics of your machine. The configuration file should be created in the hpl directory. This directory contains instructions (the files README and INSTALL) on how to create the configuration file. The directory hpl/setup contains many examples of configuration files. A good approach is to copy one of them to the hpl directory and if it doesnt work then change it. This file is reused by all the components of the HPC Challange suite.
When configuration is done, a file should exist in the hpl directory whose name starts with Make. and ends with the name for the system used for tests. For example, if the name of the system is Unix, the file should be named Make.Unix.
To build the benchmark executable (for the system named Unix) type: make arch=Unix. This command should be run in the top directory (not in the hpl directory). It will look in the hpl directory for the configuration file and use it to build the benchmark executable.
Configuration:
The HPC Challange is driven by a short input file named hpccinf.txt that is almost the same as the input file for HPL (customarily called HPL.dat). Refer to the file hpl/www/tuning.html for details about the input file for HPL. A sample input file is included with the HPC Challange distribution.
The differences between HPL input file and HPC Challange input file can be summarized as follows:
- Lines 3 and 4 are ignored. The output always goes to the file named hpccoutf.txt.
- There are additional lines (starting with line 33) that may (but do not have to) be used to customize the HPC Challenge benchmark. They are described below.
The additional lines in the HPC Challenge input file (compared to the HPL input file) are:
Lines 33 and 34 describe additional matrix sizes to be used for running the PTRANS benchmark (one of the components of the HPC Challange benchmark).
- Lines 35 and 36 describe additional blocking factors to be used for running PTRANS benchmark.
Just for completeness, here is the list of lines of the HPC Challanges input file with brief descriptions of their meaning:
- Line 1: ignored
- Line 2: ignored
- Line 3: ignored
- Line 4: ignored
- Line 5: number of matrix sizes for HPL (and PTRANS)
- Line 6: matrix sizes for HPL (and PTRANS)
- Line 7: number of blocking factors for HPL (and PTRANS)
- Line 8: blocking factors for HPL (and PTRANS)
- Line 9: type of process ordering for HPL
- Line 10: number of process grids for HPL (and PTRANS)
- Line 11: numbers of process rows of each process grid for HPL (and
PTRANS)
- Line 12: numbers of process columns of each process grid for HPL
(and PTRANS)
- Line 13: threshold value not to be exceeded by scaled residual for
HPL (and PTRANS)
- Line 14: number of panel factorization methods for HPL
- Line 15: panel factorization methods for HPL
- Line 16: number of recursive stopping criteria for HPL
- Line 17: recursive stopping criteria for HPL
- Line 18: number of recursion panel counts for HPL
- Line 19: recursion panel counts for HPL
- Line 20: number of recursive panel factorization methods for HPL
- Line 21: recursive panel factorization methods for HPL
- Line 22: number of broadcast methods for HPL
- Line 23: broadcast methods for HPL
- Line 24: number of look-ahead depths for HPL
- Line 25: look-ahead depths for HPL
- Line 26: swap methods for HPL
- Line 27: swapping threshold for HPL
- Line 28: form of L1 for HPL
- Line 29: form of U for HPL
- Line 30: value that specifies whether equilibration should be used
by HPL
- Line 31: memory alignment for HPL
- Line 32: ignored
- Line 33: number of additional problem sizes for PTRANS
- Line 34: additional problem sizes for PTRANS
- Line 35: number of additional blocking factors for PTRANS
- Line 36: additional blocking factors for PTRANS
Enhancements:
- This version contains many bugfixes, major features, and minor enhancements, many of which were contributed by users.
- The major focus of this release was to improve accuracy of the reported performance results and ensure scalability of the code on the largest supercomputer installations with hundreds of thousands of computational cores.
<<less
Download (0.60MB)
Added: 2007-06-27 License: BSD License Price:
856 downloads
Metamorphosis

Metamorphosis


Metamorphosis is a short course about Swing visual design and user interface implementation. more>>
Metamorphosis is a short course about Swing visual design and user interface implementation. Metamorphosis can help you understand and avoid common design errors of Swing based Java applications.

Therefore it provides a configurable GUI which demos both, the problems and their solutions.

Running:

You can either web start or download Metamorphosis. To launch the application from a command-line, use: java -jar metamorphosis.jar.

You can launch Fakeclipse from a command-line with a given style: franken, rookie, standard, advanced, elegant, standardX, advancedX, elegantX, where the last three use a multi-platform look instead of a Windows emulation.

java -cp metamorphosis.jar -Dstyle=elegantX com.jgoodies.metamorphosis.Fakeclipse

Fakeclipse:

Metamorphosis utilizes a tiny Swing based application called Fakeclipse, that emulates the appearance of an Eclipse IDE on Windows 95/98/NT/ME/2000, and with some restrictions on XP. Although its a live application, it cant do anything useful and provides no actions. Only the File, Edit and Source menus contain items to demo an alignment problem.

Swing vs. SWT:

Fakeclipse is intended to shed some light into the "Swing vs. SWT" discussion. I dont take a position but want to contribute some visual input.

The Eclipse IDE provides an elegant overall appearance - at least on Windows platforms. And thats what most people are referring to when talking about the SWT. However, most of this look can quickly be emulated by Swing. It took me 2:50 hours to build the original Fakeclipse using the JGoodies Windows Look&Feel that I had built before for JDiskReport.
<<less
Download (MB)
Added: 2006-01-13 License: Freeware Price:
1381 downloads
karamTop 0.45

karamTop 0.45


karamTop is a superkaramba theme that parses /proc. more>>
karamTop is a superkaramba theme that parses /proc. Shows an X number of running processes with CPU, Memory usage and program name, sorted by CPU. The default number of processes to show is 5.
Idea based on the gkrelltop a plugin for GKrellM. pytop.py is the core class file. It can be used within any kind of script.
Keep in mind since it reads /proc directly, this means its Linux only. As FreeBSD and possibly other *nixes have a completely different /proc layout.
The GUI configuration isnt that great. There isnt much error checking. You can always modify the theme configuration files for fine tuning. Any more options and it just becomes too tedious to code. Right click on Karamtop, Configure Theme:
- Choose Theme
- Whether to hide processes with a cpu percent of 0
- Set the alignment for the command (program name) text
- Set the column order of the output
For theme creaters. The theme layout is designed so you can create a directory inside of the theme directory with the name of your theme. Which will contain the configuration file and images. That way you can tar up everything easily. This wont work with the skz format. I suppose maybe Ill make something that will automatically install themes in tar.gz format at some point.
Designed to work with my theme, MiniKaramba. http://www.kde-look.org/content/show.php?content=27802
A karamtop theme with an alternative background: http://www.kde-look.org/content/show.php?content=25626
Work like this is encouraged. Thanks.
Enhancements:
- Sometimes karamtop/superkaramba would run for weeks without crashing and other times it would crash relatively soon.
- Now karamtop defaults with threading off, but supports turning it back on through the config.
<<less
Download (0.063MB)
Added: 2006-06-27 License: GPL (GNU General Public License) Price:
1214 downloads
Geneious 3.0.6

Geneious 3.0.6


Geneious greatly speeds up and simplifies research in molecular biology and biochemistry. more>>
Geneious project is a unique, easy to use software system that greatly speeds up and simplifies research in molecular biology and biochemistry.
Currently the great majority of researchers time is taken up with comparatively repetitive drudgery: sifting through publicly available sequence and publication databases, downloading gene sequences and then massaging the data through a series of file formats and difficult-to-use specialist programs.
This whole process is usually repeated numerous times during a research project as requirements change or new data comes to hand.
As a result, after publication researchers find their work out-dates rapidly as new data become available.
Geneious has been developed with a view to changing all that by making data management, organization and filtering easy, rapid and automatic.
Main features:
- A local database to store sequences and publications
- Storage of abstracts and bibliographic information
- Direct links to Google scholar
- Storage of sequence data
- User-defined notes
- Rapid sequence similarity searching within your local database
- Direct access to NCBI, EBI databases
- A unique ability to refine and filter information on the fly as it downloads
- Ability to automate searches so that the data relevant to your research is constantly kept up-to-date
- A graphical viewer of sequence annotations such as genes, motifs and primer positions
- A multiple alignment viewer
- Very simple user-friendly interface
- Easy and fast to download, at no cost
Enhancements:
- Support for multiple concurrent licenses was streamlined.
<<less
Download (23.5MB)
Added: 2007-07-18 License: Free for non-commercial use Price:
850 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5