Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
ensembl
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Iterations
Wiki
Requirements
Jira
Code
Merge requests
1
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ensembl-gh-mirror
ensembl
Commits
c9d0ef6e
Commit
c9d0ef6e
authored
13 years ago
by
Gautier Koscielny
Browse files
Options
Downloads
Patches
Plain Diff
Extra documentation on the installation process for the Ensembl team.
parent
7bd9ac7c
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
misc-scripts/alternative_splicing/AltSplicingToolkit/INSTALL
+80
-2
80 additions, 2 deletions
misc-scripts/alternative_splicing/AltSplicingToolkit/INSTALL
with
80 additions
and
2 deletions
misc-scripts/alternative_splicing/AltSplicingToolkit/INSTALL
+
80
−
2
View file @
c9d0ef6e
...
...
@@ -12,7 +12,7 @@ You'll need to install 2 extra libraries that are used by the toolkit:
* The Boost C++ libraries or boost for short (http://www.boost.org)
which provides free portable libraries compatible with standard
libraries.
We currently rely on boost version 1.
3
7.0.
We currently rely on boost version 1.
4
7.0.
This version can be downloaded at:
http://sourceforge.net/projects/boost/files/
...
...
@@ -22,16 +22,94 @@ You'll need to install 2 extra libraries that are used by the toolkit:
See the page of the project on SourceForge:
http://log4cpp.sourceforge.net/
To install Boost:
----------------
Remember that you will need to have bjam installed.
If you don't, install Boost.Build from an official release or a nightly build, as available on the official web site,
following these steps:
1. Get a release from http://www.boost.org/boost-build2/
For instance:
http://prdownloads.sourceforge.net/boost/boost-build-2.0-m12.tar.bz2
2. Unpack the release.
3. On the command line, go to the root of the unpacked tree.
4. cd boost-build/jam_src
5. ./build.sh gcc (if you use gcc)
Then install Boost:
1. Download the latest version of Boost.
2. Unpack the release
3. On the command line, go to the root of the unpacked tree like
cd boost_1_47_0
4. Copy the version of bjam you've just build to this root
For instance:
cp boost-build/jam_src/bin.linuxx86_64/bjam boost_1_47_0/
5. ./bootstrap.sh --prefix=PREFIX
where PREFIX is a directory where you want Boost libraries to be
installed.
6. ./b2
To install Log4cpp:
------------------
1. Get the latest version:
http://downloads.sourceforge.net/project/log4cpp/log4cpp-1.0.x%20%28current%29/log4cpp-1.0/log4cpp-1.0.tar.gz
2. Extract the sources:
tar zxvf log4cpp-1.0.tar.gz
3. On the command line, go to the root of the unpacked tree.
cd log4cpp-1.0
4. Run configure:
./configure --prefix=PREFIX
where PREFIX is a directory where you want Log4cpp libraries to be
installed.
5. type the following commands
make
make test
make install
It's possible that some of the modules won't compile with g++
From my experience, it's trivial to edit the code to fix the problems
(casting, includes directive order).
AltSplicingToolkit:
------------------
Once Boost and Log4cpp are installed, simply type:
./configure --prefix=<altsplicingtoolkit installation path> \
--with-boost-include=<boost installation path>/include/boost
-1_37
\
--with-boost-include=<boost installation path>/include/boost \
--with-boost-lib=<boost installation path>/lib \
--with-log4cpp=<log4cpp installation path>
Example:
./configure --prefix=/softwares/AltSplicingToolkit-0.5.2 \
--with-boost-include=/softwares/boost_1_47_0/include \
--with-boost-lib=/softwares/boost_1_47_0/lib \
--with-log4cpp=/softwares/log4cpp-1.0
make
and (as root)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment