Seqanswers Leaderboard Ad

Collapse

Announcement

Collapse
No announcement yet.
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • DESeq - Error: subscript out of bounds

    Hi,

    I'm getting the following error when I try to take a subset from the data for analysis:

    > conds
    [1] "Ag" "Ti" "Qd" "Zn" "Ctrl"
    > head( counts(cds) )
    ag ti qd zn ctrl
    1 29 14 8 15 16
    2 3 2 1 3 2
    3 2 1 1 5 0
    4 3 2 1 5 1
    5 1 1 2 1 1
    6 2 1 1 2 4
    >cds <- estimateSizeFactors( cds )
    > cds2 <- cds[,c("Ag","Ctrl")]
    Error: subscript out of bounds


    Any suggestions?

    Charles

  • #2
    it's

    cds2 <- count(cds)[,c("Ag","Ctrl")]
    Last edited by NicoBxl; 11-16-2010, 06:44 AM.

    Comment


    • #3
      Did you find a solution for this? I am getting the same error and am not sure how to fix it:

      > conds
      [1] treated untreated
      Levels: treated untreated
      > cds2 <-cds[,c("treated", "untreated") ]
      Error: subscript out of bounds
      > cds2 <-count(cds)[,c("treated", "untreated") ]
      Error: could not find function "count"
      > cds2 <-counts(cds)[,c("treated", "untreated") ]
      Error: subscript out of bounds

      Comment


      • #4
        If you take a asubset from a matrix-like object such as an ExpressionSet or a CountDataSet, using the idiom
        Code:
        cds[,c("a","b","c")]
        , the strings "a", "b", "c" are supposed to be column names (here: sample names), not conditions.

        Comment


        • #5
          Thank you, that worked!

          Comment


          • #6
            Originally posted by Simon Anders View Post
            If you take a asubset from a matrix-like object such as an ExpressionSet or a CountDataSet, using the idiom
            Code:
            cds[,c("a","b","c")]
            , the strings "a", "b", "c" are supposed to be column names (here: sample names), not conditions.

            Thank you so much! It worked like a charm.... Keep up the good work!

            Comment


            • #7
              --------------------------------------------
              Last edited by sheibani; 07-29-2015, 02:39 AM.

              Comment

              Latest Articles

              Collapse

              • seqadmin
                Essential Discoveries and Tools in Epitranscriptomics
                by seqadmin




                The field of epigenetics has traditionally concentrated more on DNA and how changes like methylation and phosphorylation of histones impact gene expression and regulation. However, our increased understanding of RNA modifications and their importance in cellular processes has led to a rise in epitranscriptomics research. “Epitranscriptomics brings together the concepts of epigenetics and gene expression,” explained Adrien Leger, PhD, Principal Research Scientist...
                Yesterday, 07:01 AM
              • seqadmin
                Current Approaches to Protein Sequencing
                by seqadmin


                Proteins are often described as the workhorses of the cell, and identifying their sequences is key to understanding their role in biological processes and disease. Currently, the most common technique used to determine protein sequences is mass spectrometry. While still a valuable tool, mass spectrometry faces several limitations and requires a highly experienced scientist familiar with the equipment to operate it. Additionally, other proteomic methods, like affinity assays, are constrained...
                04-04-2024, 04:25 PM

              ad_right_rmr

              Collapse

              News

              Collapse

              Topics Statistics Last Post
              Started by seqadmin, 04-11-2024, 12:08 PM
              0 responses
              59 views
              0 likes
              Last Post seqadmin  
              Started by seqadmin, 04-10-2024, 10:19 PM
              0 responses
              57 views
              0 likes
              Last Post seqadmin  
              Started by seqadmin, 04-10-2024, 09:21 AM
              0 responses
              48 views
              0 likes
              Last Post seqadmin  
              Started by seqadmin, 04-04-2024, 09:00 AM
              0 responses
              55 views
              0 likes
              Last Post seqadmin  
              Working...
              X