Unconfigured Ad

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts
  • mathew
    Member
    • Jan 2011
    • 81

    Software for sliding window

    I am looking for a tool which can allow me to divide a bacterial genome into different sliding windows and count the average of read count. Am I have to go only with custom script or is there any software out there which can allow me to do that.

    Thanks

  • xied75
    Senior Member
    • Feb 2012
    • 129

    #2
    1, If we developers do make such programs, anyone is willing to pay for it?
    2, If not, will any journal publish a program like this?
    3, If not, a free coffee? Too far away.

    Comment

    • mathew
      Member
      • Jan 2011
      • 81

      #3
      software for sliding window

      I think all scientific fields go hand in hand. I am asking for a pointer if some one came across such tool in any software.

      Thanks

      Comment

      • krobison
        Senior Member
        • Nov 2007
        • 734

        #4
        Yikes! Quite an unhelpful response there -- for what is really a pretty trivial program.

        Once you have all the reads mapped in a BAM file, then this is easy to do with Perl and the Bio:B::Sam library for Perl (or Python and same or so forth). Probably about a page of Perl (or similar language);

        Not speedy, but you can also do it with a series of samtools commands:

        samtools view myaln.sam seq1:1000-2000 | wc
        samtools view myaln.sam seq1:1500-2500 | wc

        The first number of each line will be the number of reads found in that window. Generating this series of commands can even be run entirely on the command line.

        Yet another approach would be to generate the pileup & parse that; the read ends are marked in the output and so could be used to do this counting (to depth at middle of window, add all the read start markers found within the window but to the right of the middle plus all the read end markers found within the window but to the left of the middle).

        Comment

        • mathew
          Member
          • Jan 2011
          • 81

          #5
          Sliding window

          krobison

          Thanks for your help!!

          Comment

          • dariober
            Senior Member
            • May 2010
            • 311

            #6
            Originally posted by mathew View Post
            I am looking for a tool which can allow me to divide a bacterial genome into different sliding windows and count the average of read count. Am I have to go only with custom script or is there any software out there which can allow me to do that.

            Thanks

            I think bedtools has already all you need:

            This snippet will divide your genome file (format: chromosome-name<tab>chr size) in windows of size 1000bp by sliding them by 100bp
            Code:
            bedtools makewindows -g mygenome.bed -w 1000 -s 100 -i srcwinnum >  mygenome.windows.bed
            Now count reads in each window:

            Code:
            bedtools coverage -abam myreads.bam -b mygenome.windows.bed > mycov.bed
            If you want to know the average read count in the windows have a look at "bedtools groupby" or read the output of "bedtools coverage" to R, if you are familiar with it and the file is not too big.

            Good luck!

            Dario

            Comment

            • StevenW
              Member
              • May 2011
              • 15

              #7
              SeqMonk

              Perhaps Seqmonk would be of use. SeqMonk is a program to enable the visualisation and analysis of mapped sequence data. The progam allows the user to divide the genome into sliding windows and then quantify each region.

              Seqmonk homepage

              Comment

              Latest Articles

              Collapse

              • 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
              • 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...
                06-18-2026, 07:11 AM

              ad_right_rmr

              Collapse

              News

              Collapse

              Topics Statistics Last Post
              Started by SEQadmin2, 07-02-2026, 11:08 AM
              0 responses
              23 views
              0 reactions
              Last Post SEQadmin2  
              Started by SEQadmin2, 06-30-2026, 05:37 AM
              0 responses
              23 views
              0 reactions
              Last Post SEQadmin2  
              Started by SEQadmin2, 06-26-2026, 11:10 AM
              0 responses
              23 views
              0 reactions
              Last Post SEQadmin2  
              Started by SEQadmin2, 06-17-2026, 06:09 AM
              0 responses
              55 views
              0 reactions
              Last Post SEQadmin2  
              Working...