Unconfigured Ad

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • JayM
    Junior Member
    • Nov 2010
    • 4

    #1

    Splitting concatenated PE fastq to two files for respect reads

    I have a fastq file that is read1 and read2 split, concatenated and shuffled to form 1 file. However, I need it as read1 and read2 files separate for bwa alignment, does anyone know how to do this?
    I don't have the GERALD file, this processed fastq file came from a core facility so I'm stuck at this point. Can anyone help?
    Last edited by JayM; 11-04-2010, 04:24 AM.
  • swbarnes2
    Senior Member
    • May 2008
    • 910

    #2
    You might be able to grep it out. Something like:

    grep -A 3 pattern_that_is_only_in_read_1_sample_name combined_file.fq > read1.fq

    Comment

    • drio
      Senior Member
      • Oct 2008
      • 323

      #3
      Assuming single.

      Code:
      $ cat ./single.fq | ruby -ne 'BEGIN{@i=0} ; @i+=1; puts $_  if @i.to_s =~ /[1234]/; @i = 0 if @i == 8' > one.fq && cat single.fq | ruby -ne 'BEGIN{@i=0} ; @i+=1; puts $_  if @i.to_s =~ /[5678]/; @i = 0 if @i == 8' > two.fq
      Also, you may want to check the fastx package. It should include that feature.
      -drd

      Comment

      • JayM
        Junior Member
        • Nov 2010
        • 4

        #4
        Originally posted by drio View Post
        Assuming single.

        Code:
        $ cat ./single.fq | ruby -ne 'BEGIN{@i=0} ; @i+=1; puts $_  if @i.to_s =~ /[1234]/; @i = 0 if @i == 8' > one.fq && cat single.fq | ruby -ne 'BEGIN{@i=0} ; @i+=1; puts $_  if @i.to_s =~ /[5678]/; @i = 0 if @i == 8' > two.fq
        Also, you may want to check the fastx package. It should include that feature.
        I take it 'assume single' here refers to assume single [input] file with read1 and read2.

        Comment

        • JayM
          Junior Member
          • Nov 2010
          • 4

          #5
          Originally posted by swbarnes2 View Post
          You might be able to grep it out. Something like:

          grep -A 3 pattern_that_is_only_in_read_1_sample_name combined_file.fq > read1.fq
          But how do you grep for read1 and not read2 from a paired end fastq given that essentially the whole name is identical except one character at the end and there are millions of such scenarios in the file...?
          I'm just thinking about which pattern that could be.

          Comment

          • JayM
            Junior Member
            • Nov 2010
            • 4

            #6
            Originally posted by drio View Post
            Assuming single.

            Code:
            $ cat ./single.fq | ruby -ne 'BEGIN{@i=0} ; @i+=1; puts $_  if @i.to_s =~ /[1234]/; @i = 0 if @i == 8' > one.fq && cat single.fq | ruby -ne 'BEGIN{@i=0} ; @i+=1; puts $_  if @i.to_s =~ /[5678]/; @i = 0 if @i == 8' > two.fq
            Also, you may want to check the fastx package. It should include that feature.
            Wow! Thanks, it worked and an arbitrary inspection of the respective reads seems to confirm a perfect split into read1 and read2.

            Comment

            Latest Articles

            Collapse

            • SEQadmin2
              Beyond CRISPR/Cas9: Understand, Choose, and Use the Right Genome Editing Tool
              by SEQadmin2



              CRISPR/Cas9 sparked the gene editing revolution for both research and therapeutics.1 But this system still showed severe issues that limited its applications. The most prominent were the heavy reliance on PAM sequences, delivery limitations, double-stranded breaks that prompt unintended edits and cell death, and editing inefficiency (both in targeting and in knock-in reliability).

              Despite this, “CRISPR helped turn genome editing from a specialized technique into
              ...
              07-31-2026, 11:01 AM
            • SEQadmin2
              Proteomic Platforms: How to Choose the Right Analytical Strategy to Improve Detection and Clinical Applications
              by SEQadmin2


              Proteomics platforms are evolving rapidly, with advances in mass spectrometry and affinity-based approaches expanding what researchers can detect and at what scale. As the field moves toward deeper proteome coverage and clinical applications, scientists face an increasingly complex landscape of tools. This article will explore how researchers are navigating these choices to find the right platform for their work.

              The systematic characterization of the human proteome has
              ...
              07-20-2026, 11:48 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

            ad_right_rmr

            Collapse

            News

            Collapse

            Topics Statistics Last Post
            Started by SEQadmin2, Yesterday, 10:13 AM
            0 responses
            14 views
            0 reactions
            Last Post SEQadmin2  
            Started by SEQadmin2, 07-31-2026, 02:55 AM
            0 responses
            27 views
            0 reactions
            Last Post SEQadmin2  
            Started by SEQadmin2, 07-24-2026, 12:17 PM
            0 responses
            20 views
            0 reactions
            Last Post SEQadmin2  
            Started by SEQadmin2, 07-23-2026, 11:41 AM
            0 responses
            19 views
            0 reactions
            Last Post SEQadmin2  
            Working...