Header Leaderboard Ad

Collapse

Software for sliding window

Collapse

Announcement

Collapse
No announcement yet.
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • 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


  • #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


    • #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


      • #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


        • #5
          Sliding window

          krobison

          Thanks for your help!!

          Comment


          • #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


            • #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
              http://www.bioinformatics.babraham.a...jects/seqmonk/

              Comment

              Latest Articles

              Collapse

              • seqadmin
                Improved Targeted Sequencing: A Comprehensive Guide to Amplicon Sequencing
                by seqadmin



                Amplicon sequencing is a targeted approach that allows researchers to investigate specific regions of the genome. This technique is routinely used in applications such as variant identification, clinical research, and infectious disease surveillance. The amplicon sequencing process begins by designing primers that flank the regions of interest. The DNA sequences are then amplified through PCR (typically multiplex PCR) to produce amplicons complementary to the targets. RNA targets...
                03-21-2023, 01:49 PM
              • seqadmin
                Targeted Sequencing: Choosing Between Hybridization Capture and Amplicon Sequencing
                by seqadmin




                Targeted sequencing is an effective way to sequence and analyze specific genomic regions of interest. This method enables researchers to focus their efforts on their desired targets, as opposed to other methods like whole genome sequencing that involve the sequencing of total DNA. Utilizing targeted sequencing is an attractive option for many researchers because it is often faster, more cost-effective, and only generates applicable data. While there are many approaches...
                03-10-2023, 05:31 AM

              ad_right_rmr

              Collapse

              News

              Collapse

              Topics Statistics Last Post
              Started by seqadmin, Yesterday, 12:26 PM
              0 responses
              7 views
              0 likes
              Last Post seqadmin  
              Started by seqadmin, 03-17-2023, 12:32 PM
              0 responses
              15 views
              0 likes
              Last Post seqadmin  
              Started by seqadmin, 03-15-2023, 12:42 PM
              0 responses
              21 views
              0 likes
              Last Post seqadmin  
              Started by seqadmin, 03-09-2023, 10:17 AM
              0 responses
              68 views
              1 like
              Last Post seqadmin  
              Working...
              X