Unconfigured Ad

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • JonB
    Member
    • Jan 2010
    • 85

    #1

    Illumina paired-end sra data in three separate files - what next?

    Hi,

    I have used fastq-dump to split paired-end illumina data. I get three files, one for each different pair and one file with barcodes. This is transcriptome data and I want to do de novo assembly. I have two questions:

    First, on the SRA website where I got the data it is only mentioned one barcode while there are several different in the barcodes file. Should I only use the sequences with the barcode given on the web?

    Second, how can I split the files according to the different barcodes while keeping the pairs? I looked at the fastx toolkit and the qiime split_libraries, but I don't think my illumina barcodes are inlcuded in the sequences themselves?

    Examples of the files:

    Code:
    -bash-4.1$ head SRR343051_1.fastq 
    @SRR343051.1.1 B0A05ABXX110604:3:1101:18610:1087 length=101
    NTCTTCTTGCGTACGCATTTGGACTTAATCCTAATCTTGGATTTGTTTCTTCTAAATATGTACCAATCACAATGCTTGAATCTCTTATTATAATATATTTA
    +SRR343051.1.1 B0A05ABXX110604:3:1101:18610:1087 length=101
    #####################################################################################################
    @SRR343051.2.1 B0A05ABXX110604:3:1101:14471:1088 length=101
    NCGAAGGGCAATGTAATAAAGTTTATTATTATGTGTGTACAATGCAAAAAAAAGGGACTCGACTCTAATCCTGGTCGAAGCACAGGGCAAGACCACCAATG
    +SRR343051.2.1 B0A05ABXX110604:3:1101:14471:1088 length=101
    #####################################################################################################
    @SRR343051.3.1 B0A05ABXX110604:3:1101:20187:1088 length=101
    NATCATAATCTTCAATTTTCAAATTACTCTTGTTGCCTTTGGAAAGATCGTTAGTTTTCGGGTCTTTTATATTTTACTATTGCTTTATACTTGTTTTCACT
    
    -bash-4.1$ head SRR343051_2.fastq 
    @SRR343051.1.2 B0A05ABXX110604:3:1101:18610:1087 length=8
    TTGAGCCT
    +SRR343051.1.2 B0A05ABXX110604:3:1101:18610:1087 length=8
    CCCFFFFF
    @SRR343051.2.2 B0A05ABXX110604:3:1101:14471:1088 length=8
    TTGAGCCT
    +SRR343051.2.2 B0A05ABXX110604:3:1101:14471:1088 length=8
    CCCFFFFF
    @SRR343051.3.2 B0A05ABXX110604:3:1101:20187:1088 length=8
    TTGAGCCT
    
    -bash-4.1$ head SRR343051_3.fastq 
    @SRR343051.1.3 B0A05ABXX110604:3:1101:18610:1087 length=101
    GAGAAAATAAAATATGAGAAAATAGTAAAGAAGAAATTAACTGATATAATTACAGAAGAGAATGAATAATTGAAACAATTAAAAAATCATTAAATGAAGAT
    +SRR343051.1.3 B0A05ABXX110604:3:1101:18610:1087 length=101
    CCCFFFFFGHHHHJJJIJIJJIJJJHJIJJJJJJJJJJJJJJJJJJJJHIGIIIIGHHIJIJJJJJJIJJJJJEGIIJJJJGFHHFFCEEEECCDDDCCCC
    @SRR343051.2.3 B0A05ABXX110604:3:1101:14471:1088 length=101
    CTGATGGTGTACGTTGAACTTGGTCTGGTGGTGCTGATTCTGAGCAACAGTCTGCGTCGCGCCGCCTCCTTCTTCCTGATTCTCTCGCTGGCCGTGTCGCT
    +SRR343051.2.3 B0A05ABXX110604:3:1101:14471:1088 length=101
    BCCFFFFDHHHHHJJIIGIJJJJHIJJIIJJFHIJJIJJJJIIJJJJJJJJIIJJIGIJJHFFDDDBDDDDDDDDDDDCDDDDCDD<BD39??&09B?9A<
    @SRR343051.3.3 B0A05ABXX110604:3:1101:20187:1088 length=101
    AGGTGATTCATCATCTTCAAAATATTAATAAAAAGTATATTAATATAAAGACAATTATATATCGAAAGTGAATAGTACTGTGAAGGAAAGTAGGAAATATT
  • GenoMax
    Senior Member
    • Feb 2008
    • 7142

    #2
    Hopefully you have the information about barcode <--> sample.

    Try this script for demultiplexing: http://qiime.org/scripts/split_libraries_fastq.html

    Comment

    • GenoMax
      Senior Member
      • Feb 2008
      • 7142

      #3
      @Jon B: You have not used the

      -F | --origfmt Defline contains only original sequence name.
      option with fastq-dump so you have the SRR* in the names. Just keep that in mind.

      Comment

      • JonB
        Member
        • Jan 2010
        • 85

        #4
        Originally posted by GenoMax View Post
        @Jon B: You have not used the



        option with fastq-dump so you have the SRR* in the names. Just keep that in mind.
        Thanks! I didn't see that option.

        Comment

        • JonB
          Member
          • Jan 2010
          • 85

          #5
          Originally posted by GenoMax View Post
          Hopefully you have the information about barcode <--> sample.

          Try this script for demultiplexing: http://qiime.org/scripts/split_libraries_fastq.html
          GenoMax, do you mind telling me how I could use this script? I was looking at it before, but I don't understand how it assigns my reads into files based on the barcodes, and how does it deal with the two read pairs? Can I still use it on my data with the pairs in separate files?

          Thanks

          Comment

          • GenoMax
            Senior Member
            • Feb 2008
            • 7142

            #6
            Jon: This appears to be a single sample even though the barcode read is included as a separate file in the SRA archive. See the corresponding ENA record (http://www.ebi.ac.uk/ena/data/view/SRR343051).

            In short, demultiplexing is not needed for this sample. You can use the _1 and _3 files as the R1/R2 read pair.

            Comment

            • JonB
              Member
              • Jan 2010
              • 85

              #7
              Originally posted by GenoMax View Post
              Jon: This appears to be a single sample even though the barcode read is included as a separate file in the SRA archive. See the corresponding ENA record (http://www.ebi.ac.uk/ena/data/view/SRR343051).

              In short, demultiplexing is not needed for this sample. You can use the _1 and _3 files as the R1/R2 read pair.
              Thank you!

              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

              ad_right_rmr

              Collapse

              News

              Collapse

              Topics Statistics Last Post
              Started by SEQadmin2, 08-13-2026, 12:22 PM
              0 responses
              29 views
              0 reactions
              Last Post SEQadmin2  
              Started by SEQadmin2, 08-11-2026, 10:35 AM
              0 responses
              24 views
              0 reactions
              Last Post SEQadmin2  
              Started by SEQadmin2, 08-06-2026, 07:41 AM
              0 responses
              38 views
              0 reactions
              Last Post SEQadmin2  
              Started by SEQadmin2, 08-03-2026, 10:13 AM
              0 responses
              51 views
              0 reactions
              Last Post SEQadmin2  
              Working...