Unconfigured Ad

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • greener
    Member
    • Sep 2010
    • 17

    #1

    PCA with cufflinks data

    I was wondering if folks had any advice on the simplest way to generate a principal component analysis or MDS plot with Cufflinks output. I could group all my Cufflinks output into a data matrix and then try to visualize it but I was wondering if there was a built in way in R (perhaps through a tool or package like cummerbun) Thanks -Rich
  • lgoff
    Member
    • Feb 2008
    • 82

    #2
    Originally posted by greener View Post
    I was wondering if folks had any advice on the simplest way to generate a principal component analysis or MDS plot with Cufflinks output. I could group all my Cufflinks output into a data matrix and then try to visualize it but I was wondering if there was a built in way in R (perhaps through a tool or package like cummerbun) Thanks -Rich
    Hi Rich,
    Awesome idea, and one that can be very easily implemented with cummeRbund. If you run a cuffdiff on all of your samples, cummeRbund will take care of aggregating the information into a SQLite db behind the scenes. The generation of the FPKM matrix is very simple once this is complete:

    Code:
    >library(cummeRbund)
    >cuff<-readCufflinks()
    
    >allGeneFPKMs<-fpkmMatrix(genes(cuff)) #You can of course use the transpose if you want samples instead of genes
    >genes.pca<-prcomp(allGeneFPKMs)
    >biplot(genes.pca) 
    
    
    >allIsoformFPKMs<-fpkmMatrix(isoforms(cuff))
    >isoforms.pca<-prcomp(allIsoformFPKMs)
    etc,etc,...

    Please let me know how this works out for you. It may be something that I would like to integrate into cummeRbund for the future.

    Cheers,
    Loyal

    Comment

    • jgarbe
      Member
      • Mar 2010
      • 14

      #3
      A PCA or MDS plot function built in to cummeRbund would be an excellent feature!

      Comment

      • Richard Barker
        Member
        • Apr 2012
        • 47

        #4
        Can i also vote for a PCA component for cummeRbund?

        Comment

        • lgoff
          Member
          • Feb 2008
          • 82

          #5
          Hi all, both PCA and MDS are now built in to the development version of cummerbund. (PCAplot and MDSplot). Will become release version on October 2nd, but can be downloaded from BioC now...

          -Loyal

          Comment

          • aslihan
            Member
            • Jun 2011
            • 23

            #6
            perfect news Thank you.

            Comment

            • jgarbe
              Member
              • Mar 2010
              • 14

              #7
              That's great, the plot generated by the MDSplot command is very useful. It would be nice to be able to color samples by arbitrary experimental conditions, for example, to be able to make all replicates of one sample the same color.

              It is easy enough to run each command in the MDSplot function manually and supply a different "names" vector to the geom color option:
              customnames<- c("Wildtype", "Wildtype", "Wildtype", "Mutant", "Mutant", "Mutant")
              p <- p + geom_point(aes(x=M1,y=M2,color=customnames)) + geom_text(aes(x=M1,y=M2,label=names,color=customnames)) + theme_bw()

              But it would be nice to have that capability built into the function.

              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
              25 views
              0 reactions
              Last Post SEQadmin2  
              Started by SEQadmin2, 08-11-2026, 10:35 AM
              0 responses
              21 views
              0 reactions
              Last Post SEQadmin2  
              Started by SEQadmin2, 08-06-2026, 07:41 AM
              0 responses
              34 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...