Seqanswers Leaderboard Ad

Collapse

Announcement

Collapse
No announcement yet.
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • #31
    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.

    Comment


    • #32
      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


      • #33
        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


        • #34
          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


          • #35
            Originally posted by Tiger123 View Post
            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?

            Same problem ,wait for the answer

            Comment


            • #36
              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


              • #37
                Originally posted by Tiger123 View Post
                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.

                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


                • #38
                  OK , I fix it. It seems the boost is not installed in "/usr/local/boost"

                  Comment


                  • #39
                    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


                    • #40
                      Originally posted by Tiger123 View Post
                      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.
                      Strange. I also run test_data.sam. That's what I got:

                      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


                      • #41
                        I think I still didn't install the cufflink succefully. I don't know what's wrong

                        Comment


                        • #42
                          I don't see any wrong in "make" and "make install",

                          but the "Processing Locus" is error

                          Comment


                          • #43
                            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


                            • #44
                              Originally posted by Tiger123 View Post
                              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.
                              I don't think the version of test data is the problem, cause we use the same data. And I also tried the real .bam data, which all get wrong in the Processing loci. I can't figure out what's the problem.

                              Comment


                              • #45
                                -Chenyao

                                Are you getting a segmentation fault? On your processed hits?

                                Comment

                                Latest Articles

                                Collapse

                                • seqadmin
                                  Techniques and Challenges in Conservation Genomics
                                  by seqadmin



                                  The field of conservation genomics centers on applying genomics technologies in support of conservation efforts and the preservation of biodiversity. This article features interviews with two researchers who showcase their innovative work and highlight the current state and future of conservation genomics.

                                  Avian Conservation
                                  Matthew DeSaix, a recent doctoral graduate from Kristen Ruegg’s lab at The University of Colorado, shared that most of his research...
                                  03-08-2024, 10:41 AM
                                • seqadmin
                                  The Impact of AI in Genomic Medicine
                                  by seqadmin



                                  Artificial intelligence (AI) has evolved from a futuristic vision to a mainstream technology, highlighted by the introduction of tools like OpenAI's ChatGPT and Google's Gemini. In recent years, AI has become increasingly integrated into the field of genomics. This integration has enabled new scientific discoveries while simultaneously raising important ethical questions1. Interviews with two researchers at the center of this intersection provide insightful perspectives into...
                                  02-26-2024, 02:07 PM

                                ad_right_rmr

                                Collapse

                                News

                                Collapse

                                Topics Statistics Last Post
                                Started by seqadmin, 03-14-2024, 06:13 AM
                                0 responses
                                34 views
                                0 likes
                                Last Post seqadmin  
                                Started by seqadmin, 03-08-2024, 08:03 AM
                                0 responses
                                72 views
                                0 likes
                                Last Post seqadmin  
                                Started by seqadmin, 03-07-2024, 08:13 AM
                                0 responses
                                81 views
                                0 likes
                                Last Post seqadmin  
                                Started by seqadmin, 03-06-2024, 09:51 AM
                                0 responses
                                68 views
                                0 likes
                                Last Post seqadmin  
                                Working...
                                X