Entering edit mode
11.0 years ago
Adrian Pelin
★
2.6k
# This is based on a Ubuntu guide:
http://korflab.ucdavis.edu/datasets/cegma/ubuntu_instructions_1.txt
# get these
ftp://genome.crg.es/pub/software/geneid/geneid_v1.4.4.Jan_13_2011.tar.gz
ftp://selab.janelia.org/pub/software/hmmer3/3.0/hmmer-3.0.tar.gz
http://korflab.ucdavis.edu/Datasets/cegma/cegma_v2.4.010312.tar.gz
ftp://ftp.ncbi.nlm.nih.gov/blast/executables/blast+/LATEST/ncbi-blast-2.2.25+-x64-linux.tar.gz
http://ftp-stud.hs-esslingen.de/ubuntu/pool/universe/w/wise/wise_2.4.1.orig.tar.gz
# Genewise install
# need this to avoid glib-config error in genewise install
sudo yum install glib
sudo yum install glib-devel
cd wise2.4.1/src
# modify makefile to use "CC = cc" into "CC = gcc"
cd wise2.4.1/src/HMMer2/
sed 's/getline/getline_new/' sqio.c > a && mv a sqio.c
# that takes care of a get line error
cd ../models/
# Change phasemodel.c
From:
if( !isnumber(line[0]) ) {
To:
if( !isdigit(line[0]) ) {
# That takes care of a isnumber error
# Genewise install is the most problematic one, the rest install flawlessly.
# I thought I would start from the Ubuntu guide and change what is needed for CentOS.Turns out the glib part is slightly different, the rest is the same.
This is a god-send :) Thank you!
Does anyone know how to install genewise on a redhat OS server?
above you is the exact tutorial on how to do it.
Thanks you very much
But I still need your help
I followed your steps
but get these:
I have done
sudo yum install glib
Then I searched “/bin/sh: glib-config: command not found” and followed the seqanswer's tips: http://seqanswers.com/forums/showthread.php?t=24027
to edit the makefile and change
to
But I still get errors like:
It seems the glib-config problem is still there!
Do you have any suggestion for me?And thank you again!
have you also done "sudo yum install glib-devel"?
Yes, I also done
sudo yum install glib-devel
but there is no such package;so I did
and it seems work.
Thank you.
Darked89: ake changed to make