Unconfigured Ad

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts
  • fabrice
    Member
    • Oct 2009
    • 86

    Paired-end Illumina RNA-seq adapter trimming

    Does anyone can recommend a tool for Paired-end Illumina RNA-seq adapter trimming? Most of tools are for single-end sequence. I think if there a tools used for paired-end data.
    The shortcoming of the single end tools:
    1, The single end tools sometimes will make the paired-end data mess.
    2, It does not consider paired-end information, if there is a tool for paired-end, such remove will be accurately.
  • Simon Anders
    Senior Member
    • Feb 2010
    • 995

    #2
    HTSeq has facilities useful for this.

    You can write a little Python script like this:

    Code:
    import itertools
    import HTSeq
    
    in1 = iter( HTSeq.FastqReader( "mydata_1.fastq" ) )
    in2 = iter( HTSeq.FastqReader( "mydata_2.fastq" ) )
    out1 = open( "trimmed_1.fastq", "w" )
    out2 = open( "trimmed_2.fastq", "w" )
    
    for read1, read2 in itertools.izip( in1, in2 ):
       read1.trim_right_end( "ACGGTC" )
       read2.trim_left_end( "TTCGAC" )
       read1.write_to_fastq_file( out1 )
       read2.write_to_fastq_file( out2 )
          
    out1.close()
    out2.close()
    I haven't tested the script, and you will have to adjust it to your needs, of course.

    Note that you can make the trimming tolerant to read errors by either adding a second argument, giving the allowed fraction of mismatches, or using trim_right_end_with_quals, which accepts a maximum sum of mismatch qualities. See here and here for an explanation.

    Comment

    • fabrice
      Member
      • Oct 2009
      • 86

      #3
      Simon Anders,
      Thanks for your reply.
      Could you please also give an example how to trim 3' reads which have low quality? For example, set a cutoff value. Bellow this cutoff, the nucleotide will be trimmed.

      Thanks.

      Comment

      • saharnm
        Junior Member
        • Jul 2011
        • 1

        #4
        Take a look at "http://solexaqa.sourceforge.net/". It works on both single and paired-end reads.

        Comment

        • vbiaudet
          Member
          • Apr 2011
          • 14

          #5
          We have the same problem for paired-end of 100bp and sizing of 200 (fragment size) from Illumina GAIIx RNAseq. In many case we think we got an adapter in 3' that have been sequenced... we think that because the mapping is very bad in 3'. BUT we know that the Quality score is very good (Q> 30). The problem is the 3'end can contains just some bases from the adapter and not the complete sequence... when the list of adapter is known did you find a tool to solve this problem ?

          Thanks, vb

          Comment

          • ataheri
            Junior Member
            • Nov 2011
            • 7

            #6
            Trimmomatic

            We are using Trimmomatic as it is able to do trimming and adaptor removal for paired-end reads. At first we tried fastx-toolkit but then we switched to trimmomatic as a better choice for paied-end samples.

            Comment

            • relipmoc
              Member
              • Jul 2011
              • 58

              #7
              skewer

              You may also try skewer which is an adapter trimmer dedicated to Illumina paired-end data
              Last edited by relipmoc; 09-23-2013, 05:23 PM. Reason: title

              Comment

              • saran.ela123
                Junior Member
                • Aug 2013
                • 5

                #8
                May i know from where to download skewer ?

                Comment

                • FlorDV
                  Junior Member
                  • Jan 2015
                  • 1

                  #9
                  Hi saran.ela123

                  you can download it from here: http://sourceforge.net/projects/skewer/files/

                  Comment

                  Latest Articles

                  Collapse

                  • 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
                    ...
                    Yesterday, 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
                  • SEQadmin2
                    Cancer Drug Resistance: The Lingering Barrier to Rising Survival
                    by SEQadmin2



                    Cancer survival rates have significantly increased in the last few decades in the United States, reaching a combined 70% 5-year survival rate by 2021. Behind this number, there are years of research to find new therapies, drug targets, and early detection methods. But there is one core challenge that keeps slowing down these advances, and it’s about drug resistance.

                    There is no single reason why many patients don’t respond to treatment as expected. Cancer is...
                    07-08-2026, 05:17 AM

                  ad_right_rmr

                  Collapse

                  News

                  Collapse

                  Topics Statistics Last Post
                  Started by SEQadmin2, Yesterday, 11:10 AM
                  0 responses
                  9 views
                  0 reactions
                  Last Post SEQadmin2  
                  Started by SEQadmin2, 07-13-2026, 10:26 AM
                  0 responses
                  30 views
                  0 reactions
                  Last Post SEQadmin2  
                  Started by SEQadmin2, 07-09-2026, 10:04 AM
                  0 responses
                  41 views
                  0 reactions
                  Last Post SEQadmin2  
                  Started by SEQadmin2, 07-08-2026, 10:08 AM
                  0 responses
                  26 views
                  0 reactions
                  Last Post SEQadmin2  
                  Working...