Seqanswers Leaderboard Ad

Collapse

Announcement

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

  • Filtering rRNA out using Bowtie2

    Hello experienced colleagues,
    I'm trying to filter out ribosome-related reads from my Illumina (Casava 1.8) pair-read (100 bp) data. The data was pre-filtered with Trimmomatic (adapters and low quality reads were removed). Now all this stuff exists in 3 files: “left.fq”, “right.fq” and “unpaired.fq”. Ribosome sequences are stored in the bowtie2-build “rRNA” base.

    The simplest story about Bowtie2 syntax is in case of unpaired reads:
    bowtie2 -p 8 --un /output/filt_unpaired.fq rRNA /input/unpaired.fq
    It works.

    But, more dramatic situation arises if I want to get filtered pair-reads in 2 separate files and additionally reads from broken during filtration pairs in a 3-d file.
    I'm trying to do the following:
    bowtie2 -p 8 -X 430 --un-conc /output/filt_pairs.fq rRNA -1 /input/left.fq -2 /input/right.fq
    But, bowtie2 outputs just concordant pairs in 2 files... broken pairs are lost.
    How to get them?

  • #2
    did you find a solution to this problem? I'm going to attempt to trim with trimmomatic and then filter rRNA reads with bowtie2. Were you able to keep both the paired and unpaired reads?

    Comment


    • #3
      Have a look at RiboPicker:



      You can download the tool and rRNA databases. It uses a modified version of bwa-sw for alignment against a rRNA database and splits your (paired) reads into rRNA and non-rRNA.

      Boetsie

      Comment


      • #4
        Hello everyone. The --un-conc option outputs unconcordantly aligned pairs in two separate files, as you mention. The correct option for broken pairs is --un as before. include both flags in your statement


        Code:
        bowtie2 -p 8 -X 430 --un-conc /output/filt_pairs.fq --un /output/filt_single.fq rRNA -1 /input/left.fq -2 /input/right.fq
        will output the filtered pairs in /output/filt_pairs.fq.1 and /output/filt_pairs.fq.2

        and the single reads will be in /output/filt_single.fq

        Hope this helps.
        Cheers

        Comment

        Latest Articles

        Collapse

        • seqadmin
          Essential Discoveries and Tools in Epitranscriptomics
          by seqadmin




          The field of epigenetics has traditionally concentrated more on DNA and how changes like methylation and phosphorylation of histones impact gene expression and regulation. However, our increased understanding of RNA modifications and their importance in cellular processes has led to a rise in epitranscriptomics research. “Epitranscriptomics brings together the concepts of epigenetics and gene expression,” explained Adrien Leger, PhD, Principal Research Scientist...
          Yesterday, 07:01 AM
        • seqadmin
          Current Approaches to Protein Sequencing
          by seqadmin


          Proteins are often described as the workhorses of the cell, and identifying their sequences is key to understanding their role in biological processes and disease. Currently, the most common technique used to determine protein sequences is mass spectrometry. While still a valuable tool, mass spectrometry faces several limitations and requires a highly experienced scientist familiar with the equipment to operate it. Additionally, other proteomic methods, like affinity assays, are constrained...
          04-04-2024, 04:25 PM

        ad_right_rmr

        Collapse

        News

        Collapse

        Topics Statistics Last Post
        Started by seqadmin, 04-11-2024, 12:08 PM
        0 responses
        58 views
        0 likes
        Last Post seqadmin  
        Started by seqadmin, 04-10-2024, 10:19 PM
        0 responses
        53 views
        0 likes
        Last Post seqadmin  
        Started by seqadmin, 04-10-2024, 09:21 AM
        0 responses
        45 views
        0 likes
        Last Post seqadmin  
        Started by seqadmin, 04-04-2024, 09:00 AM
        0 responses
        55 views
        0 likes
        Last Post seqadmin  
        Working...
        X