Unconfigured Ad

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts
  • masylichu
    Member
    • Oct 2010
    • 30

    an error when using cufflinks

    hi.
    i have installed samtools and boost librarires.
    after that, i download the cufflinks source code because my linux is 32-bit.

    Everything went fine. However, when I tested using cufflinks test_data.sam, the following error message appears.

    cufflinks: error while loading shared libraries: libboost_thread.so.1.44.0: cann
    ot open shared object file: No such file or directory

    It seems that cufflinks is not seeing the shared object file. However, when I ran the configure, it said as the following:
    checking whether the Boost::Thread library is available... yes

    Can anyone help me solve this problem?
  • Sparx
    Junior Member
    • Oct 2010
    • 7

    #2
    I have the same problem.
    Did anyone manage to get this fixed?

    Or explain what the problem is?
    Last edited by Sparx; 12-15-2010, 03:54 AM.

    Comment

    • polyatail
      Member
      • Dec 2010
      • 25

      #3
      Hi,

      What Linux are you running? I would start by checking the libraries cufflinks is compiled to require by running:

      Code:
      ldd /path/to/cufflinks
      And the location of the installed boost libraries with:

      Code:
      ldconfig -p | grep boost
      Post the output of those if you can.


      Andrew
      Last edited by polyatail; 12-17-2010, 02:29 PM. Reason: better params to run as non-root

      Comment

      • Sparx
        Junior Member
        • Oct 2010
        • 7

        #4
        Thanks for the response.

        What Linux are you running?
        Code:
        $ cat /proc/version 
        Linux version 2.6.18-128.7.1.el5.pdc5noib (gcc version 4.1.2 20080704 (Red Hat 4.1.2-44))
        My setup is a homefolder on afs and I'm trying to run cufflinks on a cluster.


        I would start by checking the libraries cufflinks is compiled to require by running:
        I actually tried to make a local install of boost in $HOME/boost/ and compile cufflinks with the --with-boost and --with-bam flags.
        However it does'nt seem to reflect that in the output of the commands.

        Code:
        $ ldd Data/cufflinks-0.9.3.save/bin/cufflinks 
        	libboost_thread.so.1.45.0 => not found
        	libz.so.1 => /usr/lib64/libz.so.1 (0x00000039f4600000)
        	libstdc++.so.6 => /usr/lib64/libstdc++.so.6 (0x00000039f7200000)
        	libm.so.6 => /lib64/libm.so.6 (0x00000039f3600000)
        	libgcc_s.so.1 => /lib64/libgcc_s.so.1 (0x00000039f4e00000)
        	libpthread.so.0 => /lib64/libpthread.so.0 (0x00000039f3a00000)
        	libc.so.6 => /lib64/libc.so.6 (0x00000039f2e00000)
        	/lib64/ld-linux-x86-64.so.2 (0x00000039f2a00000)
        Code:
        $ /sbin/ldconfig -p | grep boost
        	libboost_wserialization.so.2 (libc6,x86-64) => /usr/lib64/libboost_wserialization.so.2
        	libboost_wserialization.so (libc6,x86-64) => /usr/lib64/libboost_wserialization.so
        	libboost_unit_test_framework.so.2 (libc6,x86-64) => /usr/lib64/libboost_unit_test_framework.so.2
        	libboost_unit_test_framework.so (libc6,x86-64) => /usr/lib64/libboost_unit_test_framework.so
        	libboost_thread.so.2 (libc6,x86-64) => /usr/lib64/libboost_thread.so.2
        	libboost_thread.so (libc6,x86-64) => /usr/lib64/libboost_thread.so
        	libboost_test_exec_monitor.so.2 (libc6,x86-64) => /usr/lib64/libboost_test_exec_monitor.so.2
        	libboost_test_exec_monitor.so (libc6,x86-64) => /usr/lib64/libboost_test_exec_monitor.so
        	libboost_signals.so.2 (libc6,x86-64) => /usr/lib64/libboost_signals.so.2
        	libboost_signals.so (libc6,x86-64) => /usr/lib64/libboost_signals.so
        	libboost_serialization.so.2 (libc6,x86-64) => /usr/lib64/libboost_serialization.so.2
        	libboost_serialization.so (libc6,x86-64) => /usr/lib64/libboost_serialization.so
        	libboost_regex.so.2 (libc6,x86-64) => /usr/lib64/libboost_regex.so.2
        	libboost_regex.so (libc6,x86-64) => /usr/lib64/libboost_regex.so
        	libboost_python.so.2 (libc6,x86-64) => /usr/lib64/libboost_python.so.2
        	libboost_python.so (libc6,x86-64) => /usr/lib64/libboost_python.so
        	libboost_program_options.so.2 (libc6,x86-64) => /usr/lib64/libboost_program_options.so.2
        	libboost_program_options.so (libc6,x86-64) => /usr/lib64/libboost_program_options.so
        	libboost_prg_exec_monitor.so.2 (libc6,x86-64) => /usr/lib64/libboost_prg_exec_monitor.so.2
        	libboost_prg_exec_monitor.so (libc6,x86-64) => /usr/lib64/libboost_prg_exec_monitor.so
        	libboost_iostreams.so.2 (libc6,x86-64) => /usr/lib64/libboost_iostreams.so.2
        	libboost_iostreams.so (libc6,x86-64) => /usr/lib64/libboost_iostreams.so
        	libboost_filesystem.so.2 (libc6,x86-64) => /usr/lib64/libboost_filesystem.so.2
        	libboost_filesystem.so (libc6,x86-64) => /usr/lib64/libboost_filesystem.so
        	libboost_date_time.so.2 (libc6,x86-64) => /usr/lib64/libboost_date_time.so.2
        	libboost_date_time.so (libc6,x86-64) => /usr/lib64/libboost_date_time.so
        Thanks for the help.

        Comment

        • polyatail
          Member
          • Dec 2010
          • 25

          #5
          If you want to use your local installation of boost, I would try:

          Code:
          env LD_LIBRARY_PATH=/path/to/boost /path/to/cufflinks
          This should tell the loader to look for the library in your home directory before the rest of the system.

          You might also try installing the libboost-devel RPM and recompiling cufflinks with that.


          Andrew

          Comment

          Latest Articles

          Collapse

          • SEQadmin2
            Nine Things a Sample Prep Scientist Thinks About Before Sequencing
            by SEQadmin2


            I’m not a sequencing expert. I’m a purification scientist who uses NGS to evaluate workflows my group develops. With this perspective, we think about the sample first and the NGS workflow second. The sequencer is an exceptionally honest reporter, but it can only report on what you give it, so whether you get clean, interpretable data from an NGS workflow is largely determined before you begin.


            Here are nine questions we think about, in roughly the order they matter, before...
            Yesterday, 07:11 AM
          • SEQadmin2
            From Collection to Sequencing: Why Sample Preparation and Preservation Define Sequencing Data
            by SEQadmin2


            Data variability is still an issue in sequencing technologies despite the advances in reproducibility and accuracy of these platforms. But the problem does not originate in the sequencing itself, but in the previous steps, before the sample reaches the sequencer.


            The first step is collection, followed by preservation and sample preparation for analysis. Most scientists overlook those steps, but not being careful might just be skewing the experiment’s results.
            ...
            06-02-2026, 10:05 AM
          • SEQadmin2
            Single-Cell Sequencing at an Inflection Point: Early Impacts of New Platforms and Emerging Trends
            by SEQadmin2


            With the launch of new single-cell sequencing platforms in 2026, the field stands at an exciting inflection point. This article surveys the most impactful advances in the field and discusses how they’re reshaping research in cancer, immunology, and beyond.


            Introduction

            Single-cell sequencing technologies have undergone remarkable advances over the past decade, transitioning from low-throughput experimental approaches to highly scalable platforms capable of...
            05-22-2026, 06:42 AM

          ad_right_rmr

          Collapse

          News

          Collapse

          Topics Statistics Last Post
          Started by SEQadmin2, 06-17-2026, 06:09 AM
          0 responses
          17 views
          0 reactions
          Last Post SEQadmin2  
          Started by SEQadmin2, 06-09-2026, 11:58 AM
          0 responses
          38 views
          0 reactions
          Last Post SEQadmin2  
          Started by SEQadmin2, 06-05-2026, 10:09 AM
          0 responses
          43 views
          0 reactions
          Last Post SEQadmin2  
          Started by SEQadmin2, 06-04-2026, 08:59 AM
          0 responses
          49 views
          0 reactions
          Last Post SEQadmin2  
          Working...