Unconfigured Ad

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • emolinari
    Member
    • May 2013
    • 47

    #1

    genome browser and bigwig file issue!

    Hi everyone,

    it is the first time that I try to visualize my data on the UCSC Genome Browser.
    I am not so familiar with the data format required for custom track visualization so I have followed some indications from papers, manuals etc...

    I have 20 RNAseq samples (2x75, ~60 mil reads each, Homo Sapiens).

    here's the pipeline I have followed:

    bedtools bamtobed -split -i accepted_hits.bam > accepted_hits.bed
    sort -k 1,1 accepted_hits.bed > sorted.accepted_hits.bed
    bedtools genomecov -i sorted.accepted_hits.bed -bg -scale 10 -g chrom.sizes > normalized.bg ###so that I could normalize for 10 RPM###
    bedGraphToBigWig normalized.bg chrom.sizes mybigwig.bw

    The file are uploaded on the genome browser and I don't see any error message BUT I don't see anything at all...zero!
    I am almost sure I have done something very stupid, maybe in creating the files or during the visualization process.

    Can anyone help???

    Thanks!
    Manu
  • GenoMax
    Senior Member
    • Feb 2008
    • 7142

    #2
    Have you looked at the file contents to assure yourself that the results at each step look reasonable.

    Custom tracks display is not set to "hide", correct? Navigate to a gene you know should be there and check the contents in that region.

    Comment

    • emolinari
      Member
      • May 2013
      • 47

      #3
      Originally posted by GenoMax View Post
      Have you looked at the file contents to assure yourself that the results at each step look reasonable.

      Custom tracks display is not set to "hide", correct? Navigate to a gene you know should be there and check the contents in that region.
      Hi GenoMax

      I did put it on dense and yes, no sign of any gene -not even housekeeping.
      I've been looking at my files like crazy...I have a feeling that it is related to the chromosome name -still weird I don't see any error message.

      I am trying to fix it with hg19 fetchchromsizes...

      let's see what I get!

      Manu

      Comment

      • emolinari
        Member
        • May 2013
        • 47

        #4
        Originally posted by emolinari View Post
        Hi GenoMax

        I did put it on dense and yes, no sign of any gene -not even housekeeping.
        I've been looking at my files like crazy...I have a feeling that it is related to the chromosome name -still weird I don't see any error message.

        I am trying to fix it with hg19 fetchchromsizes...

        let's see what I get!

        Manu
        ...ta-da!

        yep, the chromosome name was indeed wrong...and yep, there was an error message that I couldn't see!

        hop this could be helpful for any newbie as me!!!

        Manu

        Comment

        • Udiland
          Junior Member
          • Apr 2015
          • 5

          #5
          chromosome sizes for arabidopsis

          Hi,

          I am trying to make a bedgraph file form a ChIP-Seq bam file using genomeCoverageBed.

          I don't know what to put in the genome argument of the fetchChromSizes command in order to get the chromosome sizes of Arabidopsis Thaliana

          Thank`s

          Comment

          • GenoMax
            Senior Member
            • Feb 2008
            • 7142

            #6
            Originally posted by Udiland View Post
            Hi,

            I am trying to make a bedgraph file form a ChIP-Seq bam file using genomeCoverageBed.

            I don't know what to put in the genome argument of the fetchChromSizes command in order to get the chromosome sizes of Arabidopsis Thaliana

            Thank`s
            Since UCSC does not host a copy of the Arabidopsis genome where are you trying to get the sizes from?

            You could make up a simple file like this (example for A. thaliana 167 assembly).

            Code:
            chr1 	30427671  
            chr2 	19698289  
            chr3 	23459830  
            chr4 	18585056  
            chr5 	26975502  
            chrC 	154478  
            chrM 	366924
            Last edited by GenoMax; 04-01-2015, 06:30 AM.

            Comment

            • Udiland
              Junior Member
              • Apr 2015
              • 5

              #7
              Thank you. I understand that it is not advisable to make my own chromosome size file. ( I think it is because the format needed is more complicated than what you wrote).

              Comment

              • GenoMax
                Senior Member
                • Feb 2008
                • 7142

                #8
                *.chrom.sizes file is not complicated (see this example for hg19 from UCSC: http://genome.ucsc.edu/goldenpath/help/hg19.chrom.sizes).

                You would want to make sure that your file matches reference genome build you are using but that should be it.

                Note: You can get the information you need from SAM file headers (if you have already done the alignment).

                Comment

                • Udiland
                  Junior Member
                  • Apr 2015
                  • 5

                  #9
                  Hi,

                  Thank you. somehow it didn't work.
                  when I use a file with the header (i.e "chrom""size") I get this message:
                  invalid unsigned integer: "size"

                  and when i don't use header (like in the humen example you referred to) I got this message:
                  1 is not found in chromosome sizes file

                  Comment

                  • GenoMax
                    Senior Member
                    • Feb 2008
                    • 7142

                    #10
                    Are your chromosome names matching (e.g. chr1 as opposed to 1)? Is there a tab separating the column values?

                    Can you post the header lines from your aligned SAM/BAM file?

                    Comment

                    • Udiland
                      Junior Member
                      • Apr 2015
                      • 5

                      #11
                      This is my *.chrom.sizes file (it is tab separated)
                      chrom size
                      chr1 30427671
                      chr2 19698289
                      chr3 23459830
                      chr4 18585056
                      chr5 26975502
                      chrC 154478
                      chrM 366924

                      and this is my sam file header
                      @HD VN:1.0 SO:unsorted
                      @SQ SN:1 LN:30427671
                      @SQ SN:2 LN:19698289
                      @SQ SN:3 LN:23459830
                      @SQ SN:4 LN:18585056
                      @SQ SN:5 LN:26975502
                      @SQ SN:Mt LN:366924
                      @SQ SN:Pt LN:154478
                      @PG ID:bowtie2 PN:bowtie2 VN:2.0.6

                      Comment

                      • GenoMax
                        Senior Member
                        • Feb 2008
                        • 7142

                        #12
                        Remove "chr" from names in your chrom.sizes file. As you can see in your sam file your reference chromosomes are named 1,2,3 (and not chr1, chr2).

                        chrM becomes Mt. Add an entry for Pt and remove ChrC.

                        Let us know if that works.

                        Comment

                        • Udiland
                          Junior Member
                          • Apr 2015
                          • 5

                          #13
                          it worked!!

                          but without the header..

                          thanks a lot.

                          Comment

                          Latest Articles

                          Collapse

                          • SEQadmin2
                            Beyond CRISPR/Cas9: Understand, Choose, and Use the Right Genome Editing Tool
                            by SEQadmin2



                            CRISPR/Cas9 sparked the gene editing revolution for both research and therapeutics.1 But this system still showed severe issues that limited its applications. The most prominent were the heavy reliance on PAM sequences, delivery limitations, double-stranded breaks that prompt unintended edits and cell death, and editing inefficiency (both in targeting and in knock-in reliability).

                            Despite this, “CRISPR helped turn genome editing from a specialized technique into
                            ...
                            Yesterday, 11:01 AM
                          • SEQadmin2
                            Proteomic Platforms: How to Choose the Right Analytical Strategy to Improve Detection and Clinical Applications
                            by SEQadmin2


                            Proteomics platforms are evolving rapidly, with advances in mass spectrometry and affinity-based approaches expanding what researchers can detect and at what scale. As the field moves toward deeper proteome coverage and clinical applications, scientists face an increasingly complex landscape of tools. This article will explore how researchers are navigating these choices to find the right platform for their work.

                            The systematic characterization of the human proteome has
                            ...
                            07-20-2026, 11:48 AM
                          • SEQadmin2
                            Advanced Sequencing Platforms Tackle Neuroscience’s Toughest Genomics Problems
                            by SEQadmin2



                            Genomics studies in neuroscience face a special challenge due to the brain’s complexity and scarcity of samples. Mapping changes in cell type and state using conventional next-generation sequencing methods remains challenging. Advances in technologies like single-cell sequencing, spatial transcriptomics, and long-read sequencing have opened the door to deeper studies of the brain and diseases like Alzheimer’s, amyotrophic lateral sclerosis (ALS), and schizophrenia.
                            ...
                            07-09-2026, 11:10 AM

                          ad_right_rmr

                          Collapse

                          News

                          Collapse

                          Topics Statistics Last Post
                          Started by SEQadmin2, Yesterday, 02:55 AM
                          0 responses
                          13 views
                          0 reactions
                          Last Post SEQadmin2  
                          Started by SEQadmin2, 07-24-2026, 12:17 PM
                          0 responses
                          12 views
                          0 reactions
                          Last Post SEQadmin2  
                          Started by SEQadmin2, 07-23-2026, 11:41 AM
                          0 responses
                          13 views
                          0 reactions
                          Last Post SEQadmin2  
                          Started by SEQadmin2, 07-20-2026, 11:10 AM
                          0 responses
                          24 views
                          0 reactions
                          Last Post SEQadmin2  
                          Working...