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
                Quality Control Essentials for Next-Generation Sequencing Workflows
                by seqadmin




                Like all molecular biology applications, next-generation sequencing (NGS) workflows require diligent quality control (QC) measures to ensure accurate and reproducible results. Proper QC begins at nucleic acid extraction and continues all the way through to data analysis. This article outlines the key QC steps in an NGS workflow, along with the commonly used tools and techniques.

                Nucleic Acid Quality Control
                Preparing for NGS starts with isolating the...
                02-10-2025, 01:58 PM
              • seqadmin
                An Introduction to the Technologies Transforming Precision Medicine
                by seqadmin


                In recent years, precision medicine has become a major focus for researchers and healthcare professionals. This approach offers personalized treatment and wellness plans by utilizing insights from each person's unique biology and lifestyle to deliver more effective care. Its advancement relies on innovative technologies that enable a deeper understanding of individual variability. In a joint documentary with our colleagues at Biocompare, we examined the foundational principles of precision...
                01-27-2025, 07:46 AM

              ad_right_rmr

              Collapse

              News

              Collapse

              Topics Statistics Last Post
              Started by seqadmin, 02-07-2025, 09:30 AM
              0 responses
              67 views
              0 likes
              Last Post seqadmin  
              Started by seqadmin, 02-05-2025, 10:34 AM
              0 responses
              104 views
              0 likes
              Last Post seqadmin  
              Started by seqadmin, 02-03-2025, 09:07 AM
              0 responses
              83 views
              0 likes
              Last Post seqadmin  
              Started by seqadmin, 01-31-2025, 08:31 AM
              0 responses
              45 views
              0 likes
              Last Post seqadmin  
              Working...
              X