Unconfigured Ad

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts
  • anurupa
    Member
    • Jan 2012
    • 14

    how to get uniquely aligned reads from bowtie

    hi
    i have rum bowtie 2 using —very-sensitive option and got result like this

    Code:
    14559177 reads; of these:
      14559177 (100.00%) were unpaired; of these:
        4317487 (29.65%) aligned 0 times
        7816644 (53.69%) aligned exactly 1 time
        2425046 (16.66%) aligned >1 times
    70.35% overall alignment rate
    i just want to get the uniquely aligned reads alone i,e., 53.69% of reads (78126644). but my output file (sam format) seems to have the those which are aligned>1 times how to get rid of them?

    in previous versions of bowtie i use to use -m option for that
  • danielr
    Member
    • Sep 2009
    • 11

    #2
    Filter based on having the same read name (1st column) at multiple rows, or based on the mapping quality (5th column).

    Comment

    • lindylou
      Junior Member
      • Oct 2008
      • 4

      #3
      filter on the 5th column, only retain reads with a q score of 255. This is the score given to all reads that are uniquely mappable. If you have bam files you can use

      samtools view -q 255 your.bam > your_filtered.sam

      Comment

      • MGineste
        Member
        • Feb 2011
        • 21

        #4
        Originally posted by anurupa View Post
        hi
        i have rum bowtie 2 using —very-sensitive option

        i just want to get the uniquely aligned reads alone i,e., 53.69% of reads (78126644). but my output file (sam format) seems to have the those which are aligned>1 times how to get rid of them?

        in previous versions of bowtie i use to use -m option for that
        Bonjour anurupa,

        I'm encountering the same trouble following switching from bowtie1 to bowtie2. Did you find out a satisfying solution ?

        I'm not sure that a filtering based on MAPQ using [samtools view -q] gives the desired result, as a condition for "uniqueness" for a given read is that its MAPQ is high on the best mapped position AND "much" higher than in any other mapped position.

        Mathieu

        Comment

        • MGineste
          Member
          • Feb 2011
          • 21

          #5
          Bowtie2 must somehow define what is a unique alignment (may it be related to the MAPQ or not). This definition remains unclear to me.

          Mathieu

          Comment

          • MGineste
            Member
            • Feb 2011
            • 21

            #6
            SAM files created by bowtie contains a 'XS:' tag for reporting secondary alignments for a given read.

            You can check that the number of lines containing the 'XS:' tag corresponds to the number of reads showing >1 alignment(s) :
            Code:
            grep 'XS:' your_alignment_file.sam | wc -l
            A working solution consists in removing the lines containing the ':XS' tag using sed :
            Code:
            sed '/XS:/d' your_alignment_file.sam > your_alignment_file_1alignmentonly.sam
            (Thanks go to Christelle, our group's everyday-very-valuable bioinformatician...).

            Comment

            • anurupa
              Member
              • Jan 2012
              • 14

              #7
              you are correct MGineste. I have filtered my reads by
              Code:
               grep -v XS:i: my file>output

              Comment

              • chefarov
                Junior Member
                • Oct 2014
                • 2

                #8
                Removing the lines with "XS:" will leave the corresponding headers behind, which could create a problem to SAM/BAM viewers. That happened in my case.

                Comment

                Latest Articles

                Collapse

                • mylaser
                  Reply to Advanced Sequencing Platforms Tackle Neuroscience’s Toughest Genomics Problems
                  by mylaser
                  Kheloyar – Everything You Need to Know About Kheloyaar Login and Kheoyar Id
                  If you are looking for an online gaming platform that offers a user-friendly experience, Kheloyar has become a name that many users search for. Whether you're interested in creating a new account, accessing your dashboard through Kheloyaar Login, or learning how to obtain a Kheoyar Id, understanding the platform's features and account process is essential.
                  This guide explains everything you need to know about...
                  Yesterday, 01:13 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
                • 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

                ad_right_rmr

                Collapse

                News

                Collapse

                Topics Statistics Last Post
                Started by SEQadmin2, 07-09-2026, 10:04 AM
                0 responses
                21 views
                0 reactions
                Last Post SEQadmin2  
                Started by SEQadmin2, 07-08-2026, 10:08 AM
                0 responses
                13 views
                0 reactions
                Last Post SEQadmin2  
                Started by SEQadmin2, 07-07-2026, 11:05 AM
                0 responses
                31 views
                0 reactions
                Last Post SEQadmin2  
                Started by SEQadmin2, 07-02-2026, 11:08 AM
                0 responses
                31 views
                0 reactions
                Last Post SEQadmin2  
                Working...