Well that's just one of over a dozen warnings that occur during the make process, I just pasted the last one cause I thought that might be the one triggering the stop.
Seqanswers Leaderboard Ad
Collapse
Announcement
Collapse
No announcement yet.
X
-
here got the same error too !
Hi All,
I am trying to install cufflinks btw got the same error too.
checking for python platform... darwin
checking for python script directory... ${prefix}/lib/python2.7/site-packages
checking for python extension module directory... ${exec_prefix}/lib/python2.7/site-packages
checking for boostlib >= 1.38.0... configure: error: We could not detect the boost libraries (version 1.38 or higher). If you have a staged boost library (still not installed) please specify $BOOST_ROOT in your environment and do not give a PATH to --with-boost option. If you are sure you have boost installed, then check your version number looking in <boost/version.hpp>. See http://randspringer.de/boost for more documentation.
so i'd specify the path to BOOST_ROOT as xi wang suggested rather than i give the path to boost_1_46_1.
sorry for a newbie question here, how do we know where the BOOST_ROOT is?
Thanks a lot in advance,Last edited by hibachings2013; 07-11-2011, 12:09 PM.
Comment
-
Hi Guys,
I am also having configuration problems for cufflinks.
I got the error as below for ./configure
checking for boostlib >= 1.38.0... configure: error: We could not detect the boost libraries (version 1.38 or higher). If you have a staged boost library (still not installed) please specify $BOOST_ROOT in your environment and do not give a PATH to --with-boost option. If you are sure you have boost installed, then check your version number looking in <boost/version.hpp>. See http://randspringer.de/boost for more documentation.
I installed the latest version of boost. But, my system is 32-bit. I tried to reinstall a 64-bit linux, which I failed in my system. Is there any solution to this problem? Thanks.
Comment
-
Some additional information about the results got when I build the boost using:
bjam --prefix=\usr\local --toolset=gcc architecture=x86 address_model=32 link=static runtime-link=static stage install
/home/tiger123/boost/boost_1_47_0/tools/build/v2/build/property.jam:328: in validate1 from module property
error: Invalid property '<address_model>32': unknown feature 'address_model'.
/home/tiger123/boost/boost_1_47_0/tools/build/v2/build/property.jam:337: in property.validate from module property
/home/tiger123/boost/boost_1_47_0/tools/build/v2/build/build-request.jam:216: in convert-command-line-element from module build-request
/home/tiger123/boost/boost_1_47_0/tools/build/v2/build/build-request.jam:153: in build-request.from-command-line from module build-request
/home/tiger123/boost/boost_1_47_0/tools/build/v2/build-system.jam:612: in load from module build-system
/home/tiger123/boost/boost_1_47_0/tools/build/v2/kernel/modules.jam:283: in import from module modules
/home/tiger123/boost/boost_1_47_0/tools/build/v2/kernel/bootstrap.jam:142: in boost-build from module
/home/tiger123/boost/boost_1_47_0/boost-build.jam:17: in module scope from module
Any thoughts?
Comment
-
Originally posted by Tiger123 View PostSome additional information about the results got when I build the boost using:
bjam --prefix=\usr\local --toolset=gcc architecture=x86 address_model=32 link=static runtime-link=static stage install
/home/tiger123/boost/boost_1_47_0/tools/build/v2/build/property.jam:328: in validate1 from module property
error: Invalid property '<address_model>32': unknown feature 'address_model'.
/home/tiger123/boost/boost_1_47_0/tools/build/v2/build/property.jam:337: in property.validate from module property
/home/tiger123/boost/boost_1_47_0/tools/build/v2/build/build-request.jam:216: in convert-command-line-element from module build-request
/home/tiger123/boost/boost_1_47_0/tools/build/v2/build/build-request.jam:153: in build-request.from-command-line from module build-request
/home/tiger123/boost/boost_1_47_0/tools/build/v2/build-system.jam:612: in load from module build-system
/home/tiger123/boost/boost_1_47_0/tools/build/v2/kernel/modules.jam:283: in import from module modules
/home/tiger123/boost/boost_1_47_0/tools/build/v2/kernel/bootstrap.jam:142: in boost-build from module
/home/tiger123/boost/boost_1_47_0/boost-build.jam:17: in module scope from module
Any thoughts?
Same problem ,wait for the answer
Comment
-
Hi, solved the problem with the error message (checking for boostlib >= 1.38.0... configure: error: ....) while cufflinks configuration.
Today I installed libboost using;
sudo apt-get install libboost-all-dev.
Then I configured successfully.
./configure --prefix=/usr/local/cufflinks/install --with-boost=/usr/local/boost
The output is below:
-------------------------------------
-----------------------------------
checking for boostlib >= 1.38.0... yes
checking for bamlib... yes
checking build system type... x86_64-unknown-linux-gnu
checking whether the Boost::Thread library is available... yes
checking how to run the C preprocessor... gcc -E
checking for egrep... grep -E
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking if zlib is wanted... yes
checking for inflateEnd in -lz... yes
------------------------------------------
---------------------------------------
-- cufflinks 1.0.3 Configuration Results --
C++ compiler: g++ -Wall -Wno-strict-aliasing -g -gdwarf-2 -Wuninitialized -m64 -O3 -DNDEBUG -pthread -I/usr/local/boost/include -I/usr/local/include
GCC version: gcc (Ubuntu/Linaro 4.5.2-8ubuntu4) 4.5.2
Host System type: x86_64-unknown-linux-gnu
Install prefix: /usr/local/cufflinks/install
Install eprefix: ${prefix}
See config.h for further configuration information.
Email <[email protected]> with questions and bug reports.
Comment
-
Originally posted by Tiger123 View PostHi, solved the problem with the error message (checking for boostlib >= 1.38.0... configure: error: ....) while cufflinks configuration.
Today I installed libboost using;
sudo apt-get install libboost-all-dev.
Then I configured successfully.
./configure --prefix=/usr/local/cufflinks/install --with-boost=/usr/local/boost
The output is below:
-------------------------------------
-----------------------------------
checking for boostlib >= 1.38.0... yes
checking for bamlib... yes
checking build system type... x86_64-unknown-linux-gnu
checking whether the Boost::Thread library is available... yes
checking how to run the C preprocessor... gcc -E
checking for egrep... grep -E
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking if zlib is wanted... yes
checking for inflateEnd in -lz... yes
------------------------------------------
---------------------------------------
-- cufflinks 1.0.3 Configuration Results --
C++ compiler: g++ -Wall -Wno-strict-aliasing -g -gdwarf-2 -Wuninitialized -m64 -O3 -DNDEBUG -pthread -I/usr/local/boost/include -I/usr/local/include
GCC version: gcc (Ubuntu/Linaro 4.5.2-8ubuntu4) 4.5.2
Host System type: x86_64-unknown-linux-gnu
Install prefix: /usr/local/cufflinks/install
Install eprefix: ${prefix}
See config.h for further configuration information.
Email <[email protected]> with questions and bug reports.
Dear Tiger, using your command, I got the same message. It seems cufflinks has found "boost". But after that, I cannot get the "make" successful, which always showed the error. Did you "make" it?
Comment
-
Glad you got it. I installed boost in the /usr/local and exported the path.
make and make install went fine. I was able to run the test_data.sam given in the cufflinks webpage. But, there was one warning. Pasted below is the output.
tiger123@ubuntu:~/data$ cufflinks ./test_data.sam
You are using Cufflinks v1.0.3, which is the most recent release.
[bam_header_read] EOF marker is absent. The input is probably truncated.
[bam_header_read] invalid BAM binary header (this is not a BAM file).
File ./test_data.sam doesn't appear to be a valid BAM file, trying SAM...
[16:48:28] Inspecting reads and determining fragment length distribution.
> Processed 1 loci. [*************************] 100%
Warning: Using default Gaussian distribution due to insufficient paired-end reads in open ranges. It is recommended that correct paramaters (--frag-len-mean and --frag-len-std-dev) be provided.
> Map Properties:
> Total Map Mass: 102.50
> Read Type: 75bp x 75bp
> Fragment Length Distribution: Truncated Gaussian (default)
> Default Mean: 200
> Default Std Dev: 80
[16:48:28] Assembling transcripts and estimating abundances.
> Processed 1 loci.
I am not sure whether this will create problems when running the actual data.
Comment
-
Originally posted by Tiger123 View PostGlad you got it. I installed boost in the /usr/local and exported the path.
make and make install went fine. I was able to run the test_data.sam given in the cufflinks webpage. But, there was one warning. Pasted below is the output.
tiger123@ubuntu:~/data$ cufflinks ./test_data.sam
You are using Cufflinks v1.0.3, which is the most recent release.
[bam_header_read] EOF marker is absent. The input is probably truncated.
[bam_header_read] invalid BAM binary header (this is not a BAM file).
File ./test_data.sam doesn't appear to be a valid BAM file, trying SAM...
[16:48:28] Inspecting reads and determining fragment length distribution.
> Processed 1 loci. [*************************] 100%
Warning: Using default Gaussian distribution due to insufficient paired-end reads in open ranges. It is recommended that correct paramaters (--frag-len-mean and --frag-len-std-dev) be provided.
> Map Properties:
> Total Map Mass: 102.50
> Read Type: 75bp x 75bp
> Fragment Length Distribution: Truncated Gaussian (default)
> Default Mean: 200
> Default Std Dev: 80
[16:48:28] Assembling transcripts and estimating abundances.
> Processed 1 loci.
I am not sure whether this will create problems when running the actual data.
Processed 1 loci. [*************************] 100%
Warning: Using default Gaussian distribution due to insufficient paired-end reads in open ranges. It is recommended that correct paramaters (--frag-len-mean and --frag-len-std-dev) be provided.
> Map Properties:
> Total Map Mass: 102.50
> Read Type: 75bp x 75bp
> Fragment Length Distribution: Truncated Gaussian (default)
> Default Mean: 200
> Default Std Dev: 80
[11:34:41] Assembling transcripts and estimating abundances.
> Processing Locus test_chromosome:52-550 [************************ ] 99%段错误
Comment
-
I also noticed your processing locus. I got the output as:
> Processed 1 loci. [*************************] 100%
But, the warning sign is still there. I contacted a cufflink expert. He mentioned that the test_data.sam is a bit old. So, there might be clashes with the new updates.
Comment
-
Originally posted by Tiger123 View PostI also noticed your processing locus. I got the output as:
> Processed 1 loci. [*************************] 100%
But, the warning sign is still there. I contacted a cufflink expert. He mentioned that the test_data.sam is a bit old. So, there might be clashes with the new updates.
Comment
Latest Articles
Collapse
-
by seqadmin
Non-coding RNAs (ncRNAs) do not code for proteins but play important roles in numerous cellular processes including gene silencing, developmental pathways, and more. There are numerous types including microRNA (miRNA), long ncRNA (lncRNA), circular RNA (circRNA), and more. In this article, we discuss innovative ncRNA research and explore recent technological advancements that improve the study of ncRNAs.
Nobel Prize for MicroRNA Discovery
This week,...-
Channel: Articles
10-07-2024, 08:07 AM -
-
by seqadmin
Metagenomics has improved the way researchers study microorganisms across diverse environments. Historically, studying microorganisms relied on culturing them in the lab, a method that limits the investigation of many species since most are unculturable1. Metagenomics overcomes these issues by allowing the study of microorganisms regardless of their ability to be cultured or the environments they inhabit. Over time, the field has evolved, especially with the advent...-
Channel: Articles
09-23-2024, 06:35 AM -
ad_right_rmr
Collapse
News
Collapse
Topics | Statistics | Last Post | ||
---|---|---|---|---|
Started by seqadmin, Today, 06:55 AM
|
0 responses
8 views
0 likes
|
Last Post
by seqadmin
Today, 06:55 AM
|
||
Started by seqadmin, 10-02-2024, 04:51 AM
|
0 responses
105 views
0 likes
|
Last Post
by seqadmin
10-02-2024, 04:51 AM
|
||
Started by seqadmin, 10-01-2024, 07:10 AM
|
0 responses
114 views
0 likes
|
Last Post
by seqadmin
10-01-2024, 07:10 AM
|
||
Started by seqadmin, 09-30-2024, 08:33 AM
|
1 response
117 views
0 likes
|
Last Post
by EmiTom
10-07-2024, 06:46 AM
|
Comment