Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
GOAnalysis/README.md
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
36 lines (23 sloc)
840 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# GOAnalysis | |
A perl script to perform gene ontology analysis of two unrancked lists. | |
## Dependences | |
GOAnalysis requires the [Math::GSL::CDF](http://search.cpan.org/~leto/Math-GSL-0.39/lib/Math/GSL/CDF.pm) module to be installed, which has a dependency to the [GNU Scientific Library (GSL)](https://www.gnu.org/software/gsl/). | |
First, you will have to install [GSL](https://www.gnu.org/software/gsl/) on your system: | |
* On Debian/Ubuntu you can use: | |
``` | |
sudo apt-get install libgsl0-dev | |
``` | |
* On Mac you can use homebrew (http://brew.sh/): | |
``` | |
brew install gsl | |
``` | |
* On Fedora/CentOS/RedHat/openSUSE you can use | |
``` | |
sudo yum install gsl-devel | |
``` | |
* Or get GSL at http://www.gnu.org/software/gsl | |
After that, install the Perl module from CPAN like this: | |
``` | |
cpan Math::GSL::CDF | |
``` | |
*Note: you might need to install it with `sudo`* |