Unconfigured Ad

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts
  • seq_GA
    Senior Member
    • Feb 2009
    • 124

    Bed file conversion doubts

    I have used BEDtools to convert bam file into bed format.
    How to convert bed to wig file? Thanks.
  • adamdeluca
    Member
    • Jul 2010
    • 95

    #2
    use genomeCoverageBed (with the -bg option) from bed tools to convert bed->bedgraph
    then use bedGraphToBigWig from UCSC to convert bedgraph->bigWig

    Comment

    • biznatch
      Senior Member
      • Nov 2010
      • 124

      #3
      Perl script for .bed to .wig

      Disclaimer: I started doing Chip-seq analysis about 3 weeks ago, and have a 2 week class and about 2 months experience using Perl. Nevertheless, here is my attempt at a Perl script that converts .bed files to .wig. It uses single end 51bp reads.

      I'd appreciate any advice, particularly if anyone can point out if this isn't doing what I think it's doing

      Code:
      #!/usr/bin/perl -w
      use strict;
      
      #This script takes in a standard .bed file (chromstart in column 2, chromend in column 3) and converts it to a .wig file
      
      my $file = $ARGV[0]; my $file2 = substr($file, 0, - 4); my $outfile = "$file2.wig";	#get input filename, replace extension
      my $bp = 0;
      my @data = 0;
      my $read = 0;
      my @hits = ();
      
      
      open (IN, "<$file") || die "the file $file did not open $!\n";		#open file specified by user
      open (OUT, ">> $outfile") || die " $!\n";				#open the output file
      	
      while(<IN>){					#for each line
      	my @column = split("\t");  		#split on tab
      	my $start = $column[1];			#start bp is column 2
      	my $end = $column[2];			#end bp is column 3
      	chomp($end);
      	my $length = $end-$start;		#determinet length of read
      	$read++;				#increase counter by 1
      
      #	print "Read $read starts at $start and ends at $end and is $length bp long.\n";		#troubleshooting line to make sure each line is being read correctly
      
      	for(my $bp = $start; $bp <= $end; $bp++){		#from first to last bp of read
      		$hits[$bp]++;					#increment corresponding position by one
      #		print "bp $bp now has @hits[$bp] hit(s)\n";	#troubleshooting line to monitor hits at each bp
      	}
      }
      
      close IN;
      
      my $count = 0;
      my $item = 0;
      my $site = 0;
      
      foreach $item (@hits){				#for each line of hits
      	$site++;				#increase the count at that site
      	if (defined $item){			#will print out for all non-zero sites
      		print OUT "$site\t$item\n";
      		$count++;
      	}
      }
      
      print "There were $read reads.\n$count sites (individual bp's) had at least one hit.\n";
      
      close OUT;
      Last edited by biznatch; 11-22-2010, 05:18 PM.

      Comment

      • sameet
        Member
        • Apr 2010
        • 34

        #4
        Is there any way to convert from *.wig* to *.bed*?
        Sameet Mehta (Ph.D.),
        Visiting Fellow,
        National Cancer Insitute,
        Bethesda,
        US.

        Comment

        • adamdeluca
          Member
          • Jul 2010
          • 95

          #5
          Originally posted by sameet View Post
          Is there any way to convert from *.wig* to *.bed*?
          bigWigToBedGraph

          Comment

          Latest Articles

          Collapse

          • 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
          • SEQadmin2
            Cancer Drug Resistance: The Lingering Barrier to Rising Survival
            by SEQadmin2



            Cancer survival rates have significantly increased in the last few decades in the United States, reaching a combined 70% 5-year survival rate by 2021. Behind this number, there are years of research to find new therapies, drug targets, and early detection methods. But there is one core challenge that keeps slowing down these advances, and it’s about drug resistance.

            There is no single reason why many patients don’t respond to treatment as expected. Cancer is...
            07-08-2026, 05:17 AM
          • GATTACAT
            Reply to Nine Things a Sample Prep Scientist Thinks About Before Sequencing
            by GATTACAT
            Love this - good data definitely starts from good input, and poor input can only give relatively poor data. I particularly like the mention of Nanodrop/absorbance based methods for quantification. It's such a toss up if you'll get an accurate reading or what amounts to a randomly generated number, and a lot of library/sequencing related issues can be traced back to poor quant.
            07-01-2026, 11:43 AM

          ad_right_rmr

          Collapse

          News

          Collapse

          Topics Statistics Last Post
          Started by SEQadmin2, 07-13-2026, 10:26 AM
          0 responses
          26 views
          0 reactions
          Last Post SEQadmin2  
          Started by SEQadmin2, 07-09-2026, 10:04 AM
          0 responses
          37 views
          0 reactions
          Last Post SEQadmin2  
          Started by SEQadmin2, 07-08-2026, 10:08 AM
          0 responses
          23 views
          0 reactions
          Last Post SEQadmin2  
          Started by SEQadmin2, 07-07-2026, 11:05 AM
          0 responses
          34 views
          0 reactions
          Last Post SEQadmin2  
          Working...