Unconfigured Ad

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts
  • crh
    Member
    • Dec 2009
    • 46

    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
  • NicoBxl
    not just another member
    • Aug 2010
    • 264

    #2
    it's

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

    Comment

    • vyellapa
      Member
      • Oct 2011
      • 59

      #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

      • Simon Anders
        Senior Member
        • Feb 2010
        • 995

        #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

        • vyellapa
          Member
          • Oct 2011
          • 59

          #5
          Thank you, that worked!

          Comment

          • AsoBioInfo
            Member
            • Dec 2011
            • 37

            #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

            • sheibani
              Junior Member
              • Jun 2014
              • 6

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

              Comment

              Latest Articles

              Collapse

              ad_right_rmr

              Collapse

              News

              Collapse

              Topics Statistics Last Post
              Started by SEQadmin2, Today, 11:58 AM
              0 responses
              9 views
              0 reactions
              Last Post SEQadmin2  
              Started by SEQadmin2, 06-05-2026, 10:09 AM
              0 responses
              25 views
              0 reactions
              Last Post SEQadmin2  
              Started by SEQadmin2, 06-04-2026, 08:59 AM
              0 responses
              34 views
              0 reactions
              Last Post SEQadmin2  
              Started by SEQadmin2, 06-02-2026, 12:03 PM
              0 responses
              56 views
              0 reactions
              Last Post SEQadmin2  
              Working...