Seqanswers Leaderboard Ad

Collapse

Announcement

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

  • how to parse reads containing a particular sequence in any orientation

    I'm pretty new to bioinformatics and sorry if it's not worthy of asking here.

    I have a FLASH stitched fastq file from my paired end data, from which I want to sort the reads containing a particular sequence or part of that sequence in any orientation, and make a new fastq file with them. Is there any easy tool/code to do that?
    Last edited by PoorSeq; 10-30-2013, 10:25 PM.

  • #2
    I have a FLASH stitched fastq file from my paired end data, from which I want to sort the reads containing a particular sequence
    Okay, that's doable with grep, and very quick.

    or part of that sequence
    Wait, what? You want any subsequence? Will one base pair do? What are your limits?

    Comment


    • #3
      If you are trying to get reads that align to a particular sequence, try bowtie2. Not sure if that's your purpose though?

      Comment


      • #4
        Originally posted by PoorSeq View Post
        I'm pretty new to bioinformatics and sorry if it's not worthy of asking here.

        I have a FLASH stitched fastq file from my paired end data, from which I want to sort the reads containing a particular sequence or part of that sequence in any orientation, and make a new fastq file with them. Is there any easy tool/code to do that?
        Hi- As gringer pointed out, you should clarify what you are trying to do. Anyway... This sequence of unix commands reads a fastq file and outputs the reads in fastq format matching a regular expression. See if it helps:

        Code:
        ## Get reads containing substring AAA or its revcomp TTT
        gunzip -c fastq.fq.gz \
        | paste - - - - \
        | grep -P '^@.*?\t(.*?AAA.*?)|(.*?TTT.*?)\t\+' \
        | tr '\t' '\n' \
        | gzip > sub.fq.gz
        
        ## Example input fastq:
        @seq1
        ACTGAAACTG
        +comment
        IIIIIIIIII
        @seq2
        ACTGNNNCTGTTT
        +comment
        BBBBBBBBBBBBB
        @seq3
        CCCCCCCCCCCCC
        +comment
        BBBBBBBBBBTTT
        @seq4
        AAACCCCCCCCCC
        +comment
        BBBBBBBBBBTTT
        
        ## Output sub.fq.gz
        @seq1
        ACTGAAACTG
        +comment
        IIIIIIIIII
        @seq2
        ACTGNNNCTGTTT
        +comment
        BBBBBBBBBBBBB
        @seq4
        AAACCCCCCCCCC
        +comment
        BBBBBBBBBBTTT
        If your input is unzipped use "paste - - - - < fastq.fq" instead of "gunzip -c fastq.fq.gz \
        | paste - - - -"

        Comment


        • #5
          Thanks all for the answers, specially dariober for the code. I have also developed a bioawk code later which I was able to use. The code is:

          bioawk -c fastx '/SEQUENCE/ {print "@"$name; print $seq; print "+"; print $qual }' inut.fq > output.fq

          Yes, my aim is to collect all the reads that contains a sequence (or subsequence, at least 14nt) and make a new file.

          Comment


          • #6
            Originally posted by PoorSeq View Post
            bioawk -c fastx '/SEQUENCE/ {print "@"$name; print $seq; print "+"; print $qual }' inut.fq > output.fq
            Hmm, bioawk seems pretty neat.

            Note that what you've got there won't work for reverse complement orientation, so you'll need to have both forward and reverse included. Also, picking any 14+nt substring of SEQUENCE (or its reverse-complement) will be a bit trickier to implement.

            Comment


            • #7
              Good point gringer! however, because I have already flash-stitched the reads, I expect that the sequence I'm looking for will be in the same orientation in all reads. Still, I would see if I have any potholes. Also, I chose 14nt because my samples are from a bacteria with a genome size of 4.2 million, so I expect anything equal or more than 12nt will be unique.

              Comment

              Latest Articles

              Collapse

              • seqadmin
                Recent Developments in Metagenomics
                by seqadmin





                Metagenomics has improved the way researchers study microorganisms across diverse environments. Historically, studying microorganisms relied on culturing them in the lab, a method that limits the investigation of many species since most are unculturable1. Metagenomics overcomes these issues by allowing the study of microorganisms regardless of their ability to be cultured or the environments they inhabit. Over time, the field has evolved, especially with the advent...
                09-23-2024, 06:35 AM
              • seqadmin
                Understanding Genetic Influence on Infectious Disease
                by seqadmin




                During the COVID-19 pandemic, scientists observed that while some individuals experienced severe illness when infected with SARS-CoV-2, others were barely affected. These disparities left researchers and clinicians wondering what causes the wide variations in response to viral infections and what role genetics plays.

                Jean-Laurent Casanova, M.D., Ph.D., Professor at Rockefeller University, is a leading expert in this crossover between genetics and infectious...
                09-09-2024, 10:59 AM

              ad_right_rmr

              Collapse

              News

              Collapse

              Topics Statistics Last Post
              Started by seqadmin, 10-02-2024, 04:51 AM
              0 responses
              13 views
              0 likes
              Last Post seqadmin  
              Started by seqadmin, 10-01-2024, 07:10 AM
              0 responses
              21 views
              0 likes
              Last Post seqadmin  
              Started by seqadmin, 09-30-2024, 08:33 AM
              0 responses
              25 views
              0 likes
              Last Post seqadmin  
              Started by seqadmin, 09-26-2024, 12:57 PM
              0 responses
              18 views
              0 likes
              Last Post seqadmin  
              Working...
              X