protein structure prediction
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1375
Erwin Data Structures 2.1.58633
Erwin Data Structures is a library that is meant to be the ultimate data structure library for mixed usage of C and C++. more>>
Erwin Data Structures is a library that is meant to be the ultimate data structure library for mixed usage of C and C++.
Arbitrary key and value types are implemented by template files that dont use C++ templates, but are instantiated by a Perl script.
This way, mixed usage in C and C++ is possible. However, a C++ interface is generated to support the advantages of the C++ language. No templates, no void*.
Erwin contains a number of tools, too, all of them written in Perl. The following list shows the data structures and tools, together with some typical examples.
<<lessArbitrary key and value types are implemented by template files that dont use C++ templates, but are instantiated by a Perl script.
This way, mixed usage in C and C++ is possible. However, a C++ interface is generated to support the advantages of the C++ language. No templates, no void*.
Erwin contains a number of tools, too, all of them written in Perl. The following list shows the data structures and tools, together with some typical examples.
Download (0.67MB)
Added: 2007-02-09 License: Freely Distributable Price:
997 downloads
MKDoc::Text::Structured::Inline 0.83
MKDoc::Text::Structured::Inline is a Perl module to convert text to HTML without handling block-level tags. more>>
MKDoc::Text::Structured::Inline is a Perl module to convert text to HTML without handling block-level tags.
SYNOPSIS
my $text = some_structured_text();
my $this = MKDoc::Text::Structured::Inline::process ($text);
my $that = MKDoc::Text::Structured::Inline::process_entities_only ($text);
<<lessSYNOPSIS
my $text = some_structured_text();
my $this = MKDoc::Text::Structured::Inline::process ($text);
my $that = MKDoc::Text::Structured::Inline::process_entities_only ($text);
Download (0.014MB)
Added: 2006-08-24 License: Perl Artistic License Price:
1156 downloads
Memory Structures Library 4.0
Memory Structures Library (MemSL) is a complete data structures/collection classes library with memory tracing. more>>
Memory Structures Library (MemSL) is a complete data structures/collection classes library with memory tracing, memory debugging, entry/exit tracing, exception handling, definable memory handlers, built-in thread support, and much more.
The project supports single, double, and circular linked lists, AVL balanced and threaded binary trees, dynamic hashing tables, stacks, queues and dequeues (using arrays or linked lists), sets (Pascal implementation, with union, difference, intersection, etc.), bags, tables and dictionaries, priority heaps, priority search queue, and more.
<<lessThe project supports single, double, and circular linked lists, AVL balanced and threaded binary trees, dynamic hashing tables, stacks, queues and dequeues (using arrays or linked lists), sets (Pascal implementation, with union, difference, intersection, etc.), bags, tables and dictionaries, priority heaps, priority search queue, and more.
Download (0.82MB)
Added: 2007-07-04 License: GPL (GNU General Public License) Price:
846 downloads
GNOME Structured File Library 1.14.5
The GNOME Structured File Library is a utility library for reading and writing structured file formats. more>>
GNOME Structured File Library is a utility library for reading and writing structured file formats. Support for MS OLE2 streams is complete, as is zip import.
There is also support for document metadata and some initial work on decompressing VBA streams in OLE files for future conversion to other languages.
This library replaces libole2 and is used in gnumeric, mrproject, abiword, libwv2, koffice. It is also part of the AAF format.
Enhancements:
- This release reverts jump to dynamic types, as they arent thread-safe.
- A compilation glitch on Windows has been fixed.
- Problems building without gconf macros installed are avoided.
- Configure breakage with --without-gnome has been fixed.
<<lessThere is also support for document metadata and some initial work on decompressing VBA streams in OLE files for future conversion to other languages.
This library replaces libole2 and is used in gnumeric, mrproject, abiword, libwv2, koffice. It is also part of the AAF format.
Enhancements:
- This release reverts jump to dynamic types, as they arent thread-safe.
- A compilation glitch on Windows has been fixed.
- Problems building without gconf macros installed are avoided.
- Configure breakage with --without-gnome has been fixed.
Download (0.70MB)
Added: 2007-07-17 License: LGPL (GNU Lesser General Public License) Price:
831 downloads
XML::Structured 1.0
XML::Structured is a simple conversion API from XML to perl structures and back. more>>
XML::Structured is a simple conversion API from XML to perl structures and back.
SYNOPSIS
use XML::Structured;
$dtd = [
element =>
attribute1,
attribute2,
[],
element1,
[ element2 ],
[ element3 =>
...
],
[[ element4 =>
...
]],
];
$hashref = XMLin($dtd, $xmlstring);
$hashref = XMLinfile($dtd, $filename_or_glob);
$xmlstring = XMLout($dtd, $hashref);
The XML::Structured module provides a way to convert xml data into a predefined perl data structure and back to xml. Unlike with modules like XML::Simple it is an error if the xml data does not match the provided skeleton (the "dtd"). Another advantage is that the order of the attributes and elements is taken from the dtd when converting back to xml.
<<lessSYNOPSIS
use XML::Structured;
$dtd = [
element =>
attribute1,
attribute2,
[],
element1,
[ element2 ],
[ element3 =>
...
],
[[ element4 =>
...
]],
];
$hashref = XMLin($dtd, $xmlstring);
$hashref = XMLinfile($dtd, $filename_or_glob);
$xmlstring = XMLout($dtd, $hashref);
The XML::Structured module provides a way to convert xml data into a predefined perl data structure and back to xml. Unlike with modules like XML::Simple it is an error if the xml data does not match the provided skeleton (the "dtd"). Another advantage is that the order of the attributes and elements is taken from the dtd when converting back to xml.
Download (0.005MB)
Added: 2006-09-07 License: Perl Artistic License Price:
1142 downloads
GraphViz::Data::Structure 0.15
GraphViz::Data::Structure can visualise data structures. more>>
GraphViz::Data::Structure can visualise data structures.
SYNOPSIS
use GraphViz::Data::Structure;
my $gvds = GraphViz:Data::Structure->new($data_structure);
print $gvds->graph()->as_png;
This module makes it easy to visualise data structures, even recursive or circular ones.
It is provided as an alternative to GraphViz::Data::Grapher. Differences:
GraphViz::Data::Structure handles structures of arbitrary depth and complexity, automatically following links using a standard graph traversal algorithm.
GraphViz::Data::Grapher creates graphics of indiividual substructures (arrays, scalars, hashes) which keep the substructure type and data together; GraphViz::Data::Structure does this by shape alone.
GraphViz::Data::Structure encapsulates object info (if any) directly into the node being used to represent the class.
GraphViz::Data::Grapher colors its graphs; GraphViz::Data::Structure doesnt by default.
GraphViz::Data:Structure can parse out globs and CODE references (almost as well as the debugger does).
<<lessSYNOPSIS
use GraphViz::Data::Structure;
my $gvds = GraphViz:Data::Structure->new($data_structure);
print $gvds->graph()->as_png;
This module makes it easy to visualise data structures, even recursive or circular ones.
It is provided as an alternative to GraphViz::Data::Grapher. Differences:
GraphViz::Data::Structure handles structures of arbitrary depth and complexity, automatically following links using a standard graph traversal algorithm.
GraphViz::Data::Grapher creates graphics of indiividual substructures (arrays, scalars, hashes) which keep the substructure type and data together; GraphViz::Data::Structure does this by shape alone.
GraphViz::Data::Structure encapsulates object info (if any) directly into the node being used to represent the class.
GraphViz::Data::Grapher colors its graphs; GraphViz::Data::Structure doesnt by default.
GraphViz::Data:Structure can parse out globs and CODE references (almost as well as the debugger does).
Download (0.040MB)
Added: 2006-08-01 License: Perl Artistic License Price:
1180 downloads
Xephyrus Data Structures Tag Library 1.5
Xephyrus Data Structures Tag Library is a tag library to provide access to common data-structures. more>>
Xephyrus Data Structures Tag Library provides an easy way to create and manipulate the contents of common Java data-structures such as maps and lists.
Enhancements:
- The library was polished up.
- Several improvements were made and a few bugs were fixed.
- This version is aimed at Java 5 and JSP 2.0.
<<lessEnhancements:
- The library was polished up.
- Several improvements were made and a few bugs were fixed.
- This version is aimed at Java 5 and JSP 2.0.
Download (0.021MB)
Added: 2005-10-13 License: BSD License Price:
1471 downloads
Gnome Predict 0.5.99.5
Gnome Predict is a real time satellite tracking program for GNOME. more>>
Gnome Predict or Gpredict is a satellite tracking program for Unix-like operating systems. In the begining (v. 0.1.x) Gpredict was just a GUI client to John Magliacanes excellent satellite tracking program, Predict, but due to performance problems it has been decided to include the tracking code directly into Gnome Predict (v. 0.2.0 and later).
Gpredict is licensed under the GNU General Public License which basically gives you the right to freely use, distribute and modify the software and its source code, but without any warranty from the authors.
Gpredict is in development stage, but it is has already some very useful features. The current version can track a large number of satellites, display the satellite data in lists and/or show the satellites on maps.
It is possible to have several lists and maps open at the same time in a separate windows or organized in a notebook (you can also have some of them in a notebook and some of them in their own window). The lists can be sorted and the maps can be saved and printed.
You can alse make brief or detailed predictions of upcoming passes and each pass can be plotted in a radial plot. The predictions and plots can be saved and printed as well.
Enhancements:
- The flexible module layout has been implemented, which also includes several new views.
- The pass prediction dialogs have been improved with more parameters.
<<lessGpredict is licensed under the GNU General Public License which basically gives you the right to freely use, distribute and modify the software and its source code, but without any warranty from the authors.
Gpredict is in development stage, but it is has already some very useful features. The current version can track a large number of satellites, display the satellite data in lists and/or show the satellites on maps.
It is possible to have several lists and maps open at the same time in a separate windows or organized in a notebook (you can also have some of them in a notebook and some of them in their own window). The lists can be sorted and the maps can be saved and printed.
You can alse make brief or detailed predictions of upcoming passes and each pass can be plotted in a radial plot. The predictions and plots can be saved and printed as well.
Enhancements:
- The flexible module layout has been implemented, which also includes several new views.
- The pass prediction dialogs have been improved with more parameters.
Download (0.97MB)
Added: 2006-07-26 License: GPL (GNU General Public License) Price:
1189 downloads
Structured Document Validator 0.7.9
Structured Document Validator project implements a generalized method for structured documents. more>>
Structured Document Validator project implements a generalized method for validating both the structure and content of structured documents.
Any data format that can be deterministically divided into tags and data is classed as a structured document. This definition applies to a wide array of data formats, including XML, Java properties files, and delimited value files.
The application performs validations based on user-defined Structured Document Definitions (SDDs). It provides an environment for validation, SDD development, and document editing.
<<lessAny data format that can be deterministically divided into tags and data is classed as a structured document. This definition applies to a wide array of data formats, including XML, Java properties files, and delimited value files.
The application performs validations based on user-defined Structured Document Definitions (SDDs). It provides an environment for validation, SDD development, and document editing.
Download (0.59MB)
Added: 2006-01-06 License: LGPL (GNU Lesser General Public License) Price:
1387 downloads
Struct::Compare 1.0.1
Struct::Compare is a recursive diff for perl structures. more>>
Struct::Compare is a recursive diff for perl structures.
SYNOPSIS
use Struct::Compare;
my $is_different = compare($ref1, $ref2);
Compares two values of any type and structure and returns true if they are the same. It does a deep comparison of the structures, so a hash of a hash of a whatever will be compared correctly.
This is especially useful for writing unit tests for your modules!
PUBLIC FUNCTIONS
$bool = compare($var1, $var2)
Recursively compares $var1 to $var2, returning false if either structure is different than the other at any point. If both are undefined, it returns true as well, because that is considered equal.
<<lessSYNOPSIS
use Struct::Compare;
my $is_different = compare($ref1, $ref2);
Compares two values of any type and structure and returns true if they are the same. It does a deep comparison of the structures, so a hash of a hash of a whatever will be compared correctly.
This is especially useful for writing unit tests for your modules!
PUBLIC FUNCTIONS
$bool = compare($var1, $var2)
Recursively compares $var1 to $var2, returning false if either structure is different than the other at any point. If both are undefined, it returns true as well, because that is considered equal.
Download (0.003MB)
Added: 2007-02-12 License: Perl Artistic License Price:
984 downloads
IRCTree 0.10
IRCTree is a project which shows a tree representing the structure of an IRC network in ASCII. more>>
IRCTree is a project which shows a tree representing the structure of an IRC network in ASCII.
Introduction
IRCTree shows a tree in ascii format representing the structure of an
IRC network.
You need netcat (nc) for it to work.
Example uses
$ irctree irc.swipnet.se
Compiling
No need to compile, but you can copy it into /usr/local/bin with make install.
<<lessIntroduction
IRCTree shows a tree in ascii format representing the structure of an
IRC network.
You need netcat (nc) for it to work.
Example uses
$ irctree irc.swipnet.se
Compiling
No need to compile, but you can copy it into /usr/local/bin with make install.
Download (0.008MB)
Added: 2007-04-20 License: GPL (GNU General Public License) Price:
919 downloads
Raster3D 2.7c
Raster3D is a powerful set of tools for generating high quality raster images of proteins or other molecules. more>>
Raster3D is a powerful set of tools for generating high quality raster images of proteins or other molecules.
The core program renders spheres, triangles, cylinders, and quadric surfaces with specular highlighting, Phong shading, and shadowing.
It uses an efficient software Z-buffer algorithm that is independent of any graphics hardware.
Main features:
- Raster3D uses a fast Z-buffer algorithm to produce high quality pixel images featuring one shadowing light source, additional non-shadowing light sources, specular highlighting, transparency, and Phong shaded surfaces. Output is in the form of a pixel image with 24 bits of color information per pixel plus one matte channel.
- Raster3D does not depend on graphics hardware. The rendering program currently supports output to files in AVS, JPEG, TIFF, PNG and SGI libimage format. To actually view or manipulate the images produced, you must also have installed an image viewing package (e.g. John Cristys ImageMagick or the SGI libimage utilities). The Raster3D rendering program can be integrated with ImageMagick to expand the flexibility of output formats and interactive use.
- Ancillary programs are provided for the generation of object descriptions based on atomic coordinates stored in PDB format. Although Raster3D is not intended as a general purpose ray-tracing package, nothing in the rendering process is specific to molecular graphics. Some of the algorithms used have been chosen for speed rather than generality, however. They work well for molecular graphics images, but possibly would produce odd results if used for very different types of image.
- Raster3D currently supports rendering six object types: spheres, triangles, planes, smooth-ended cylinders, round-ended cylinders, and quadric surfaces. It also supports the definition of material properties (transparency, bounding planes, color, reflectivity) that apply to groups of objects within the rendered scene.
Enhancements:
- changed the default output format to PNG for all programs
<<lessThe core program renders spheres, triangles, cylinders, and quadric surfaces with specular highlighting, Phong shading, and shadowing.
It uses an efficient software Z-buffer algorithm that is independent of any graphics hardware.
Main features:
- Raster3D uses a fast Z-buffer algorithm to produce high quality pixel images featuring one shadowing light source, additional non-shadowing light sources, specular highlighting, transparency, and Phong shaded surfaces. Output is in the form of a pixel image with 24 bits of color information per pixel plus one matte channel.
- Raster3D does not depend on graphics hardware. The rendering program currently supports output to files in AVS, JPEG, TIFF, PNG and SGI libimage format. To actually view or manipulate the images produced, you must also have installed an image viewing package (e.g. John Cristys ImageMagick or the SGI libimage utilities). The Raster3D rendering program can be integrated with ImageMagick to expand the flexibility of output formats and interactive use.
- Ancillary programs are provided for the generation of object descriptions based on atomic coordinates stored in PDB format. Although Raster3D is not intended as a general purpose ray-tracing package, nothing in the rendering process is specific to molecular graphics. Some of the algorithms used have been chosen for speed rather than generality, however. They work well for molecular graphics images, but possibly would produce odd results if used for very different types of image.
- Raster3D currently supports rendering six object types: spheres, triangles, planes, smooth-ended cylinders, round-ended cylinders, and quadric surfaces. It also supports the definition of material properties (transparency, bounding planes, color, reflectivity) that apply to groups of objects within the rendered scene.
Enhancements:
- changed the default output format to PNG for all programs
Download (MB)
Added: 2006-08-31 License: Other/Proprietary License Price:
1149 downloads
Bio::Tools::Run::PiseApplication::fasta 1.4
Bio::Tools::Run::PiseApplication::fasta is a Bioperl class for sequence database search. more>>
Bio::Tools::Run::PiseApplication::fasta is a Bioperl class for sequence database search.
Parameters:
fasta (Excl)
Fasta program
query (Sequence)
Query sequence File
pipe: seqfile
seqtype (Excl)
Is it a DNA or protein sequence (-n)
protein_db (Excl)
Protein Database
nucleotid_db (Excl)
Nucleotid Database
break_long (Integer)
Break long library sequences into blocks (-N)
ktup (Integer)
ktup : sensitivity and speed of the search (protein:2, DNA:6)
optcut (Integer)
OPTCUT : the threshold for optimization. (-c)
gapinit (Integer)
Penalty for gap initiation (-12 by default for fasta with proteins, -16 for DNA) (-f)
gapext (Integer)
Penalty for gap extention (-2 by default for fasta with proteins, -4 for DNA) (-g)
high_expect (Float)
Maximal expectation value threshold for displaying scores and alignments (-E)
low_expect (Float)
Minimal expectation value threshold for displaying scores and alignments (-F)
nucleotid_match (Integer)
Reward for a nucleotid match (-r)
nucleotid_mismatch (Integer)
Penalty for a nucleotid mismatch (-r)
matrix (Excl)
Scoring matrix file (-s)
X_penalty (Integer)
Penalty for a match to X (independently of the PAM matrix) (-x)
frameshift (Integer)
Penalty for frameshift between codon (fast[xy]/tfast[xy])(-h)
frameshift_within (Integer)
Penalty for frameshift within a codon (fasty/tfasty)(-j)
threeframe (Switch)
Search only the three forward frames (tfasta) (-3)
invert (Switch)
Reverse complement the query sequence (all tfasta) (-i)
genetic_code (Excl)
Use genetic code for translation (tfasta/tfast[xy]/fast[xy]) (-t)
band (Integer)
band-width used for optimization (-y)
swalig (Switch)
unlimited Smith-Waterman alignment for DNA (-A)
noopt (Switch)
no limited optimization (-o)
stat (Excl)
Specify statistical calculation. (-z)
random (Switch)
Estimate stat parameters from shuffled copies of each library sequence (-z)
histogram (Switch)
No histogram (-H)
scores (Integer)
number of similarity scores to be shown (-b)
alns (Integer)
number of alignments to be shown (-d)
html_output (Switch)
HTML output (-m)
markx (Excl)
Alternate display of matches and mismatches in alignments
init1 (Switch)
sequences ranked by the z-score based on the init1 score (-1)
z_score_out (Excl)
Show normalize score as (-B)
showall (Switch)
both sequences are shown in their entirety in alignments (fasta only) (-a)
linlen (Integer)
output line length for sequence alignments (max. 200) (-w)
offsets (String)
Start numbering the aligned sequences at position x1 x2 (2 numbers) (-X)
info (Switch)
Display more information about the library sequence in the alignment (-L)
statfile (OutFile)
Write out the sequence identifier, superfamily number, and similarity scores to this file (-R)
filter (Switch)
Lower case filtering (-S)
outfile (OutFile)
pipe: mview_input
html_outfile (OutFile)
<<lessParameters:
fasta (Excl)
Fasta program
query (Sequence)
Query sequence File
pipe: seqfile
seqtype (Excl)
Is it a DNA or protein sequence (-n)
protein_db (Excl)
Protein Database
nucleotid_db (Excl)
Nucleotid Database
break_long (Integer)
Break long library sequences into blocks (-N)
ktup (Integer)
ktup : sensitivity and speed of the search (protein:2, DNA:6)
optcut (Integer)
OPTCUT : the threshold for optimization. (-c)
gapinit (Integer)
Penalty for gap initiation (-12 by default for fasta with proteins, -16 for DNA) (-f)
gapext (Integer)
Penalty for gap extention (-2 by default for fasta with proteins, -4 for DNA) (-g)
high_expect (Float)
Maximal expectation value threshold for displaying scores and alignments (-E)
low_expect (Float)
Minimal expectation value threshold for displaying scores and alignments (-F)
nucleotid_match (Integer)
Reward for a nucleotid match (-r)
nucleotid_mismatch (Integer)
Penalty for a nucleotid mismatch (-r)
matrix (Excl)
Scoring matrix file (-s)
X_penalty (Integer)
Penalty for a match to X (independently of the PAM matrix) (-x)
frameshift (Integer)
Penalty for frameshift between codon (fast[xy]/tfast[xy])(-h)
frameshift_within (Integer)
Penalty for frameshift within a codon (fasty/tfasty)(-j)
threeframe (Switch)
Search only the three forward frames (tfasta) (-3)
invert (Switch)
Reverse complement the query sequence (all tfasta) (-i)
genetic_code (Excl)
Use genetic code for translation (tfasta/tfast[xy]/fast[xy]) (-t)
band (Integer)
band-width used for optimization (-y)
swalig (Switch)
unlimited Smith-Waterman alignment for DNA (-A)
noopt (Switch)
no limited optimization (-o)
stat (Excl)
Specify statistical calculation. (-z)
random (Switch)
Estimate stat parameters from shuffled copies of each library sequence (-z)
histogram (Switch)
No histogram (-H)
scores (Integer)
number of similarity scores to be shown (-b)
alns (Integer)
number of alignments to be shown (-d)
html_output (Switch)
HTML output (-m)
markx (Excl)
Alternate display of matches and mismatches in alignments
init1 (Switch)
sequences ranked by the z-score based on the init1 score (-1)
z_score_out (Excl)
Show normalize score as (-B)
showall (Switch)
both sequences are shown in their entirety in alignments (fasta only) (-a)
linlen (Integer)
output line length for sequence alignments (max. 200) (-w)
offsets (String)
Start numbering the aligned sequences at position x1 x2 (2 numbers) (-X)
info (Switch)
Display more information about the library sequence in the alignment (-L)
statfile (OutFile)
Write out the sequence identifier, superfamily number, and similarity scores to this file (-R)
filter (Switch)
Lower case filtering (-S)
outfile (OutFile)
pipe: mview_input
html_outfile (OutFile)
Download (0.081MB)
Added: 2007-06-06 License: Perl Artistic License Price:
872 downloads
Gpredict 0.8.0
Gpredict is a real-time satellite tracking and orbit prediction program. more>>
Gpredict project is a satellite tracking program for Unix-like operating systems. In the begining (v. 0.1.x) Gpredict was just a GUI client to John Magliacanes excellent satellite tracking program, Predict, but due to performance problems it has been decided to include the tracking code directly into Gnome Predict (v. 0.2.0 and later).
Gpredict is licensed under the GNU General Public License which basically gives you the right to freely use, distribute and modify the software and its source code, but without any warranty from the authors.
<<lessGpredict is licensed under the GNU General Public License which basically gives you the right to freely use, distribute and modify the software and its source code, but without any warranty from the authors.
Download (1.8MB)
Added: 2007-06-03 License: GPL (GNU General Public License) Price:
877 downloads
Bio::Tools::Run::PiseApplication::charge 1.4
Bio::Tools::Run::PiseApplication::charge is a Perl module. more>>
Bio::Tools::Run::PiseApplication::charge is a Perl module.
Bio::Tools::Run::PiseApplication::charge
Bioperl class for:
CHARGE Protein charge plot (EMBOSS)
Parameters:
(see also:
http://bioweb.pasteur.fr/seqanal/interfaces/charge.html
for available values):
charge (String)
init (String)
seqall (Sequence)
seqall -- protein [sequences] (-seqall)
pipe: seqsfile
window (Integer)
Window (-window)
aadata (String)
Amino acid property data file name (-aadata)
plot (Switch)
Produce graphic (-plot)
graph (Excl)
graph (-graph)
outfile (OutFile)
outfile (-outfile)
auto (String)
psouput (String)
<<lessBio::Tools::Run::PiseApplication::charge
Bioperl class for:
CHARGE Protein charge plot (EMBOSS)
Parameters:
(see also:
http://bioweb.pasteur.fr/seqanal/interfaces/charge.html
for available values):
charge (String)
init (String)
seqall (Sequence)
seqall -- protein [sequences] (-seqall)
pipe: seqsfile
window (Integer)
Window (-window)
aadata (String)
Amino acid property data file name (-aadata)
plot (Switch)
Produce graphic (-plot)
graph (Excl)
graph (-graph)
outfile (OutFile)
outfile (-outfile)
auto (String)
psouput (String)
Download (0.81MB)
Added: 2006-08-24 License: Perl Artistic License Price:
1156 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above protein structure prediction search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed