Seqanswers Leaderboard Ad

Collapse

Announcement

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

  • error in DESeq analysis

    Hello,

    I have RNA-seq data, which I am trying to analyze with DESeq. My file (.csv) appears to be correct

    >head(myfile)
    "
    gene_id VZ_w13 VZ_w14a VZ_w14b VZ_w15a VZ_w15b VZ_w16a
    1 ENSG00000253101 0 0 0 0 0 0
    ..."

    However, when I try

    >cds <- newCountDataSet(myfile,conds)

    I get the following error message:

    "Error in newCountDataSet(myfile, conds) : The countData is not integer."

    The problem, as far as I can tell, is that my data are numerical, not integer, because when I run

    >str(myfile)
    "'data.frame': 53507 obs. of 14 variables:
    $ VZ_w13 : num 0 0 0 0 8 0 0 0 0 0 ..."

    Does anyone have a way to make my data integer, not numerical? As you can see, the data are in fact integers.

    Thanks,
    Stephan

  • #2
    What about as.integer

    If that is really the problem then applying as.integer to your columns should work (note that: as.integer(12.9) == 12)

    Cheers,
    Paul

    "You are only young once, but you can stay immature indefinitely."

    Comment


    • #3
      Excuse my ignorance. How do I apply as.integer to my columns?

      Comment


      • #4
        Example

        Hi,

        here a toy example, which you can just transfer to your data-set:

        Code:
        > data.frame(SomeValue=seq(0,2,0.4))
          SomeValue
        1       0.0
        2       0.4
        3       0.8
        4       1.2
        5       1.6
        6       2.0
        > the.data <- data.frame(SomeValue=seq(0,2,0.4))
        > the.data$SomeValue
        [1] 0.0 0.4 0.8 1.2 1.6 2.0
        > as.integer(the.data$SomeValue)
        [1] 0 0 0 1 1 2
        > the.data$SomeValue <- as.integer(the.data$SomeValue)
        > the.data$SomeValue
        [1] 0 0 0 1 1 2
        Basically you just apply the function to the column and then replace the column with the result. If you have many columns you might want to use the apply function, which you would do like this:
        Code:
        > the.data <- data.frame(SomeValue=seq(0,2,0.4), AnotherValue=seq(4,6,0.4))
        > the.data
          SomeValue AnotherValue
        1       0.0          4.0
        2       0.4          4.4
        3       0.8          4.8
        4       1.2          5.2
        5       1.6          5.6
        6       2.0          6.0
        > apply( the.data, 2, as.integer )
             SomeValue AnotherValue
        [1,]         0            4
        [2,]         0            4
        [3,]         0            4
        [4,]         1            5
        [5,]         1            5
        [6,]         2            6
        When in doubt, use the R-help system to find out about things.

        Cheers,
        Paul

        "You are only young once, but you can stay immature indefinitely."

        Comment


        • #5
          Hi Stephen, looks like the first column of your data are the geneIDs (not integers). Just remove this column and it should be ok. You could use the row.names option when reading the file.

          Comment


          • #6
            Got it working now. Thanks for your help.

            Comment

            Latest Articles

            Collapse

            • seqadmin
              Best Practices for Single-Cell Sequencing Analysis
              by seqadmin



              While isolating and preparing single cells for sequencing was historically the bottleneck, recent technological advancements have shifted the challenge to data analysis. This highlights the rapidly evolving nature of single-cell sequencing. The inherent complexity of single-cell analysis has intensified with the surge in data volume and the incorporation of diverse and more complex datasets. This article explores the challenges in analysis, examines common pitfalls, offers...
              06-06-2024, 07:15 AM
            • seqadmin
              Latest Developments in Precision Medicine
              by seqadmin



              Technological advances have led to drastic improvements in the field of precision medicine, enabling more personalized approaches to treatment. This article explores four leading groups that are overcoming many of the challenges of genomic profiling and precision medicine through their innovative platforms and technologies.

              Somatic Genomics
              “We have such a tremendous amount of genetic diversity that exists within each of us, and not just between us as individuals,”...
              05-24-2024, 01:16 PM

            ad_right_rmr

            Collapse

            News

            Collapse

            Topics Statistics Last Post
            Started by seqadmin, Yesterday, 06:58 AM
            0 responses
            13 views
            0 likes
            Last Post seqadmin  
            Started by seqadmin, 06-06-2024, 08:18 AM
            0 responses
            20 views
            0 likes
            Last Post seqadmin  
            Started by seqadmin, 06-06-2024, 08:04 AM
            0 responses
            18 views
            0 likes
            Last Post seqadmin  
            Started by seqadmin, 06-03-2024, 06:55 AM
            0 responses
            13 views
            0 likes
            Last Post seqadmin  
            Working...
            X