Unconfigured Ad

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts
  • RobbenStijn
    Member
    • Feb 2017
    • 12

    BAM to BIGWIG

    I'm trying to convert a BAM file to a BIGWIG file on my mac using the following link:



    Could someone explain what commands I have to put into the terminal (or in Sublime Text)? My BAM file is called Galaxy6RmDupdata.bam. I couldn't figure this out myself from the explanation in the link itself.

    Any help would be greatly appreciated!

    Many thanks,

    Stijn
  • tristan dubos
    Member
    • Dec 2015
    • 39

    #2
    Hi ,

    What did you try ? it seems to be something like :
    bam_to_wiggle.py Galaxy6RmDupdata.bam --outfile path_to_the_result

    Tristan

    Comment

    • RobbenStijn
      Member
      • Feb 2017
      • 12

      #3
      Hi Tristan Again!

      I tried:

      $ python BAM_BIGWIG.py Galaxy6RmDupdata.bam

      This worked but it got me the following error:

      Traceback (most recent call last):
      File "BAM_BIGWIG.py", line 136, in <module>
      main(*args, **kwargs)
      File "BAM_BIGWIG.py", line 62, in main
      convert_to_bigwig(wig_file, chr_sizes, config, outfile)
      File "BAM_BIGWIG.py", line 108, in convert_to_bigwig
      cl = [get_program("ucsc_bigwig", config, default="wigToBigWig"), wig_file, size_file, bw_file]
      File "/Users/Stijn/anaconda/lib/python2.7/site-packages/bcbio/pipeline/config_utils.py", line 188, in get_program
      return _get_program_cmd(name, pconfig, config, default)
      File "/Users/Stijn/anaconda/lib/python2.7/site-packages/bcbio/pipeline/config_utils.py", line 214, in wrap
      raise CmdNotFound(" ".join(map(repr, (fn.func_name, name, pconfig, default))))
      bcbio.pipeline.config_utils.CmdNotFound: '_get_program_cmd' 'ucsc_bigwig' {'cmd': 'wigToBigWig', 'dir': 'wigToBigWig'} 'wigToBigWig'

      Now I downloaded the wigToBigWig file and put it in the same directory as the python file, but I'm not sure if I'm supposed to do something with the wigToBigWig file now...

      Comment

      • tristan dubos
        Member
        • Dec 2015
        • 39

        #4
        Well dependency !!! Enjoy !!
        Just a think what is the next step with your bigwig ? Are you making an annotation or something ?
        I think you have to install wigToBigWig from UCSC (http://hgdownload.cse.ucsc.edu/admin/exe/) to solve the errors as you said. did you download the exe (wigToBigWig) ?

        Comment

        • RobbenStijn
          Member
          • Feb 2017
          • 12

          #5
          I clicked on your link, then on macOSX.i386/, then downloaded wigToBigWig.
          I put this file in the same directory as my BIG_BIGWIG.py. But I still get the same error...

          Comment

          • tristan dubos
            Member
            • Dec 2015
            • 39

            #6
            I think you have to install it

            Comment

            • RobbenStijn
              Member
              • Feb 2017
              • 12

              #7
              Do you know how? Until now I just have the wigToBigWig file which isn't readable actually. Also the command:

              $ pip install wigToBigWig

              gives the following error:

              Could not find a version that satisfies the requirement wigToBigWig (from versions: )
              No matching distribution found for wigToBigWig

              Comment

              • tristan dubos
                Member
                • Dec 2015
                • 39

                #8
                It's an exe in linux you have use it using ./wigToBigWig , don't for mac. Same you have to give right to your system to use it and if it's call by BIG_BIGWIG.py you have to had the path to the exe to your system variables then it knows where found it. I hope i m understandable ...

                Comment

                • RobbenStijn
                  Member
                  • Feb 2017
                  • 12

                  #9
                  I'm not sure I quite follow. I'm running this on a mac, so i think I clicked the right links?
                  And if I understand correctly I should not rename the python program?

                  Comment

                  • tristan dubos
                    Member
                    • Dec 2015
                    • 39

                    #10
                    Sorry i miss a word i would say i don't know about mac. The think is if i understand right BIG_BIGWIG.py use wigToBigWig to calculate something, and to call it he need to know where is wigToBigWig.

                    Comment

                    • dpryan
                      Devon Ryan
                      • Jul 2011
                      • 3478

                      #11
                      Code:
                      pip install --user deepTools
                      bamCoverage -b Galaxy6RmDupdata.bam -o Galaxy6RmDupdata.bigWig

                      Comment

                      • apredeus
                        Senior Member
                        • Jul 2012
                        • 151

                        #12
                        Originally posted by dpryan View Post
                        Code:
                        pip install --user deepTools
                        bamCoverage -b Galaxy6RmDupdata.bam -o Galaxy6RmDupdata.bigWig
                        deepTools actually prove pretty hard to get to work - one conda environment and pip they fail to install with separate errors, and another conda environment they seem to install fine, but throw a segfault when executed.

                        Comment

                        • dpryan
                          Devon Ryan
                          • Jul 2011
                          • 3478

                          #13
                          Originally posted by apredeus View Post
                          deepTools actually prove pretty hard to get to work - one conda environment and pip they fail to install with separate errors, and another conda environment they seem to install fine, but throw a segfault when executed.
                          It's rare to see reports of installation errors anymore, especially with conda. If you have installation errors with conda then it's likely that you managed to somehow break your conda installation. Without actual error messages or reproducible segfaults I can't be of any help.

                          Comment

                          • apredeus
                            Senior Member
                            • Jul 2012
                            • 151

                            #14
                            Originally posted by dpryan View Post
                            It's rare to see reports of installation errors anymore, especially with conda.
                            I know, that's why I was surprised - two separate installations, two different errors!

                            If you have installation errors with conda then it's likely that you managed to somehow break your conda installation. Without actual error messages or reproducible segfaults I can't be of any help.
                            So, in the instance when it appears to install without any errors, bamCoverage produces the following error:
                            bamCoverage
                            Traceback (most recent call last):
                            File "/home/apredeus/miniconda2/bin/bamCoverage", line 4, in <module>
                            from deeptools.bamCoverage import main
                            File "/home/apredeus/miniconda2/lib/python2.7/site-packages/deeptools/bamCoverage.py", line 8, in <module>
                            from deeptools import writeBedGraph # This should be made directly into a bigWig
                            File "/home/apredeus/miniconda2/lib/python2.7/site-packages/deeptools/writeBedGraph.py", line 9, in <module>
                            from deeptools.utilities import getCommonChrNames, toBytes
                            File "/home/apredeus/miniconda2/lib/python2.7/site-packages/deeptools/utilities.py", line 3, in <module>
                            import pysam
                            File "/home/apredeus/miniconda2/lib/python2.7/site-packages/pysam/__init__.py", line 5, in <module>
                            from pysam.libchtslib import *
                            ImportError: libhts.so.1: cannot open shared object file: No such file or directory

                            In another installation, it generates this error:
                            RuntimeError: module compiled against API version 0xb but this version of numpy is 0x7
                            Traceback (most recent call last):
                            File "/pub37/alexp/miniconda2/bin/bamCoverage", line 4, in <module>
                            from deeptools.bamCoverage import main
                            File "/pub37/alexp/miniconda2/lib/python2.7/site-packages/deeptools/bamCoverage.py", line 8, in <module>
                            from deeptools import writeBedGraph # This should be made directly into a bigWig
                            File "/pub37/alexp/miniconda2/lib/python2.7/site-packages/deeptools/writeBedGraph.py", line 5, in <module>
                            import pyBigWig
                            ImportError: numpy.core.multiarray failed to import

                            Seems like it doesn't have the HTS library in the first case, and is compiled against wrong numpy in the second. Couldn't figure out the way to fix either easily though, so ended up doing it the old way (bedtools + begGraphToBigWig).

                            Comment

                            • dpryan
                              Devon Ryan
                              • Jul 2011
                              • 3478

                              #15
                              The first error is due to a broken pysam installation. Just remove pysam and reinstall it. The second error is due to changing the version of numpy installed (you want 1.13.*). As a rule of thumb, it's best to install conda packages in separate envs. That way (A) you can use multiple versions and (B) you can update/remove packages in one env without breaking them in another.

                              Comment

                              Latest Articles

                              Collapse

                              • 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
                              • SEQadmin2
                                Environmental Genomics in the Age of NGS: From Microbes to Conservation Strategies
                                by SEQadmin2

                                Studying ecosystems means dealing with complex, multi-species communities that are hard to observe at scale. This complexity, however, hides many important questions to be answered, from how biogeochemical cycles work and how climate change can affect species distribution to how conservation strategies can work best.


                                Genomics, particularly since the expansion of NGS, has transformed ecosystem ecology. By sequencing environmental DNA, we can now assess biodiversity without direct...
                                05-06-2026, 09:04 AM

                              ad_right_rmr

                              Collapse

                              News

                              Collapse

                              Topics Statistics Last Post
                              Started by SEQadmin2, Today, 08:59 AM
                              0 responses
                              11 views
                              0 reactions
                              Last Post SEQadmin2  
                              Started by SEQadmin2, 06-02-2026, 12:03 PM
                              0 responses
                              21 views
                              0 reactions
                              Last Post SEQadmin2  
                              Started by SEQadmin2, 06-02-2026, 11:40 AM
                              0 responses
                              17 views
                              0 reactions
                              Last Post SEQadmin2  
                              Started by SEQadmin2, 05-28-2026, 11:40 AM
                              0 responses
                              31 views
                              0 reactions
                              Last Post SEQadmin2  
                              Working...