Unconfigured Ad

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • super0925
    Senior Member
    • Feb 2014
    • 206

    #1

    RNA-seq pipeline on Ion-Proton data

    Hi I am a rookie bioinformatics who will process the rna-seq from Ion-proton(Single-ended).
    The pipeline for processing which I know until now is
    Bowtie, Tophat, Cufflinks, and cummeRbund for RNA-seq alignment, assembly, DE analysis, and .visualization.
    Any other options?
    Or What is this advantage or disadvantage of this pipeline?
    Thank you!
    Last edited by super0925; 02-14-2014, 07:39 AM.
  • BrianJames
    Member
    • May 2010
    • 13

    #2
    There is a link a the Ion Community that describes a pipeline. You have to register, but it is free.


    It uses a combination of Bowtie2 and Tophat2


    I added a step to filter reads with Bowtie2. I used a filter file that I used to use with SOLiD data (ribosomes, adapters, tRNAs and such).

    Brian

    Comment

    • super0925
      Senior Member
      • Feb 2014
      • 206

      #3
      Thank you! I got it.
      But this pipeline which is suitable for Proton data is only reach the mapping and assemble. So after that steps which pipeline is more suitable? I mean for the differential analysis?
      Cufflinks or Deseq or EdgeR? Do you have any recommendation ?
      Cheers

      Comment

      • super0925
        Senior Member
        • Feb 2014
        • 206

        #4
        Originally posted by BrianJames View Post
        There is a link a the Ion Community that describes a pipeline. You have to register, but it is free.


        It uses a combination of Bowtie2 and Tophat2


        I added a step to filter reads with Bowtie2. I used a filter file that I used to use with SOLiD data (ribosomes, adapters, tRNAs and such).

        Brian
        Thank you! I got it.
        But this pipeline which is suitable for Proton data is only reach the mapping and assemble. So after that steps I got the bam file, then which pipeline is more suitable? I mean for the differential analysis?
        Cufflinks or Deseq or EdgeR? Do you have any recommendation ?
        Cheers
        Last edited by super0925; 02-15-2014, 12:11 PM.

        Comment

        • BrianJames
          Member
          • May 2010
          • 13

          #5
          I use Cuffdiff in cufflinks2. It's pretty straight forward, but I can see if I can find the command I ran on Tuesday, if you need it.
          Brian

          Comment

          • super0925
            Senior Member
            • Feb 2014
            • 206

            #6
            Originally posted by BrianJames View Post
            I use Cuffdiff in cufflinks2. It's pretty straight forward, but I can see if I can find the command I ran on Tuesday, if you need it.
            Brian
            Thank you Brian! Cuffdiff is really good but so far I don't know hot to compare the achievement between different methods (i.e. which is more suitable for the Proton data)
            Last edited by super0925; 02-16-2014, 03:04 AM.

            Comment

            • BrianJames
              Member
              • May 2010
              • 13

              #7
              You might want to take a look at this thread.
              Application of sequencing to RNA analysis (RNA-Seq, whole transcriptome, SAGE, expression analysis, novel organism mining, splice variants)


              I know I will look at it more when I get the chance. I must admit that I like Cuffdiff because since I've already installed cufflinks2 it is a simple linux command. To address your question (not answer it), once you have your read data aligned, I don't think the Proton platform is going to impact performance of differential expression options. I would like to work with the best package out there, but they all work pretty good, and are mostly impact statistical significance calculations. INMHO, good starting material (RNA quality), a well designed assay, and good biological replicates will have a much bigger impact on the quality of the eventual results.

              Brian

              Comment

              • super0925
                Senior Member
                • Feb 2014
                • 206

                #8
                Originally posted by BrianJames View Post
                You might want to take a look at this thread.
                Application of sequencing to RNA analysis (RNA-Seq, whole transcriptome, SAGE, expression analysis, novel organism mining, splice variants)


                I know I will look at it more when I get the chance. I must admit that I like Cuffdiff because since I've already installed cufflinks2 it is a simple linux command. To address your question (not answer it), once you have your read data aligned, I don't think the Proton platform is going to impact performance of differential expression options. I would like to work with the best package out there, but they all work pretty good, and are mostly impact statistical significance calculations. INMHO, good starting material (RNA quality), a well designed assay, and good biological replicates will have a much bigger impact on the quality of the eventual results.

                Brian
                Thank you Brian! So nice you are!

                Comment

                • jay
                  Member
                  • Feb 2009
                  • 12

                  #9
                  For DE analysis I would definitely recommend using multiple methods, e.g. cuffdiff, EdgeR, etc. BitSeq looks nice and I heard a talk about CASPAR which looks nice. They each use a different model to approximate the distribution of read counts, so they each give a different answer. It is worth trying several and taking the union/intersection.

                  Comment

                  • mbzmg1
                    Junior Member
                    • Feb 2012
                    • 9

                    #10
                    Our initial attempts at using Tophat2/Bowtie2 to map Ion Torrent RNAseq data were pretty disappointing (~30% aligned) and turned out to be biased against alignment of the longer reads (see attached image). Our average read length was ~75 bases, and longest ~150+ bases. This bias may be due to fixed penalties applied for gaps/mismatches per read rather than as a fraction of read length.

                    We had much better success with GSNAP (~70% alignment) and have used HTseq-count and DESeq for our differential expression analysis. Gene lengths and RPKMs can easily be calculated separately if required.

                    It is also worth noting that the second stage of the protocol at http://ioncommunity.lifetechnologies.com/docs/DOC-7062 will not add back any reads that should align over exon junctions. One might therefore get an underestimate of these positions.
                    Attached Files
                    Last edited by mbzmg1; 05-29-2014, 10:42 AM.

                    Comment

                    • Brian Bushnell
                      Super Moderator
                      • Jan 2014
                      • 2709

                      #11
                      BBMap should be ideal for mapping Ion RNA-seq data. In my testing, it vastly outperforms GSNAP in all cases, and produces Tuxedo-compatible output.

                      If your reads are all shorter than 500bp, you can run it in normal mode; otherwise, you can run it in PacBio mode (with the script mapPacBio8k.sh).
                      Last edited by Brian Bushnell; 05-29-2014, 11:54 AM.

                      Comment

                      • BrianJames
                        Member
                        • May 2010
                        • 13

                        #12
                        Originally posted by Brian Bushnell View Post
                        BBMap should be ideal for mapping Ion RNA-seq data. In my testing, it vastly outperforms GSNAP in all cases, and produces Tuxedo-compatible output.

                        If your reads are all shorter than 500bp, you can run it in normal mode; otherwise, you can run it in PacBio mode (with the script mapPacBio8k.sh).
                        Hi Brian,
                        I think this is the link you want http://seqanswers.com/forums/showthr...568#post133568

                        Brian

                        Comment

                        • Brian Bushnell
                          Super Moderator
                          • Jan 2014
                          • 2709

                          #13
                          Thanks, that's exactly what I wanted!

                          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
                          31 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...