Announcement

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

  • DESeq error that has me worried.

    So I'm reading in data like this:

    Code:
    datafile<-file.choose() # choose input file
    counttable = read.table( datafile,sep=",", header=TRUE, row.names=1 )
    head(counttable)
    I get the design working and proceed with the following:
    Code:
    pairedSamples = design$libType == "paired-end"
    countTable = counttable[ , pairedSamples ]
    condition = design$condition[ pairedSamples ]
    head(countTable)
    that last line returns:
    Code:
            untreated1 untreated2 untreated3 untreated4 untreated5 treated1 treated2 treated3 treated4 treated5
    gene5518002       2370        804       1621       1824       3571     2920     2228     4168     1197     1981
    gene5518003        624        439        710        967       1162     1076      748     1120      304      624
    gene5518004        284        104        356        627        644      301      284      487       64      348
    gene5518005         17         22         38         59         16       63       11       14       14       34
    gene5518007          0          2          0          6          0        4        0        4        0        0
    gene5518008        611        230        500        861        962      674      518     1130      201      806
    The problem occurs here:
    Code:
    cds <- newCountDataSet(countTable, conds)
    which returns:
    Error in round(countData) : Non-numeric argument to mathematical function

    This isn't a new error. If I do a bit of digging around the general consensus appears to be that for some reason countData is fitting the letters in the gene name and spitting the dummy.

    When I'm reading my table in though I specify row.names=1 specifically so that this sort of thing shouldn't happen. If I rename all my genes to purely numeric, i.e. get rid of the word gene, everything works fine.

    After reading http://seqanswers.com/forums/showthread.php?t=26598 it makes me suspect that my now numeric gene names might be being used as gene counts which would screw things up spectacularly. Given that I've removed the letters from the gene names and everything works, it implies that there's nothing wrong with the rest of my data.

    Coincidently, when I run through the viginette with the Pasilla data, the everything works fine, and there are letters in the gene names.

    Is anyone able to enlighten me as to what might be going wrong here?

  • #2
    Does this also happen when you add 'stringsAsFactors = FALSE' to the table read function? It sounds a bit like a data formatting error.

    Comment


    • #3
      Yup. Adding that to the table read didn't change anything.

      My first thought was data formatting - given that it works fine for the pasilla viginette. After having removed all of the letters from the gene names though, it runs fine. Which makes me think there's nothing wrong with the rest of my data.

      Which means for some reason that I can't fathom, it's trying to use the first column as read counts rather than genenames. Or at least, i think that's what it's trying to do.

      Cheers
      Ben.

      Comment

      Latest Articles

      Collapse

      • seqadmin
        Advanced Tools Transforming the Field of Cytogenomics
        by seqadmin


        At the intersection of cytogenetics and genomics lies the exciting field of cytogenomics. It focuses on studying chromosomes at a molecular scale, involving techniques that analyze either the whole genome or particular DNA sequences to examine variations in structure and behavior at the chromosomal or subchromosomal level. By integrating cytogenetic techniques with genomic analysis, researchers can effectively investigate chromosomal abnormalities related to diseases, particularly...
        09-26-2023, 06:26 AM
      • seqadmin
        How RNA-Seq is Transforming Cancer Studies
        by seqadmin



        Cancer research has been transformed through numerous molecular techniques, with RNA sequencing (RNA-seq) playing a crucial role in understanding the complexity of the disease. Maša Ivin, Ph.D., Scientific Writer at Lexogen, and Yvonne Goepel Ph.D., Product Manager at Lexogen, remarked that “The high-throughput nature of RNA-seq allows for rapid profiling and deep exploration of the transcriptome.” They emphasized its indispensable role in cancer research, aiding in biomarker...
        09-07-2023, 11:15 PM

      ad_right_rmr

      Collapse

      News

      Collapse

      Topics Statistics Last Post
      Started by seqadmin, Yesterday, 09:36 AM
      0 responses
      8 views
      0 likes
      Last Post seqadmin  
      Started by seqadmin, 10-02-2023, 07:14 AM
      0 responses
      15 views
      0 likes
      Last Post seqadmin  
      Started by seqadmin, 09-29-2023, 09:38 AM
      0 responses
      16 views
      0 likes
      Last Post seqadmin  
      Started by seqadmin, 09-27-2023, 06:57 AM
      0 responses
      16 views
      0 likes
      Last Post seqadmin  
      Working...
      X