Seqanswers Leaderboard Ad

Collapse

Announcement

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

  • Help with DESeq please

    Hello everyone
    I am new in the use of DESeq and I have problems for obtain Diferencial Expression of an Output of EDGE-Pro.
    In R, I followed the steps on this page:

    https://wikis.utexas.edu/display/bio...ssion+analysis

    In where are the next steps:

    login1$ R
    ...
    > library("DESeq")
    > counts = read.delim("gene_counts.tab", header=F, row.names=1)
    > head(counts)
    > colnames(counts) = c("wt1", "mut1", "wt2", "mut2")
    > head(counts)
    > my.design <- data.frame(row.names = colnames( counts ),condition = c( "wt", "mut", "wt", "mut"), libType = c( "single-end", "single-end", "single-end", "single-end" ))
    > conds <- factor(my.design$condition)
    > cds <- newCountDataSet( counts, conds )

    BUT, in this point, I have the next error:

    Error en round(countData) : non-numeric argument to mathematical function

    Someone can help me? please

    My file is the next (the firsts five lines):

    gene 571A.rpkm_0 571B.rpkm_0 571C.rpkm_0 571D.rpkm_0
    geneA 406 609 423 477
    geneB 67 117 76 64
    geneC 21134 18099 14720 14153
    geneD 810 857 725 691

    Each 571 is one condition, without replicates.

  • #2
    Is counts formatted correctly, does
    Code:
    head(counts)
    look like you'd expect?

    Is there a reason you are not using DESeq2? In DESeq2 you'd use DESeqDataSetFromMatrix instead of newCountDataSet:

    Code:
    dds <- DESeqDataSetFromMatrix(countData = counts,
                                  colData = my.design,
                                  design = <formula>)
    You should follow the PDFs available here:
    Estimate variance-mean dependence in count data from high-throughput sequencing assays and test for differential expression based on a model using the negative binomial distribution.

    Comment


    • #3
      The table looks as expected, but I will try of use DESeq2. However, still I can not solve this problem in DESEQ.

      Comment


      • #4
        Check to make sure your sample and gene names do not include spaces. If they do, it will throw off the column numbers.

        Comment


        • #5
          Hi
          Finally I used DEseq2 and I could get what I expected. Thanks for all and greetings !!

          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...
            04-22-2024, 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, Today, 08:47 AM
          0 responses
          10 views
          0 likes
          Last Post seqadmin  
          Started by seqadmin, 04-11-2024, 12:08 PM
          0 responses
          60 views
          0 likes
          Last Post seqadmin  
          Started by seqadmin, 04-10-2024, 10:19 PM
          0 responses
          59 views
          0 likes
          Last Post seqadmin  
          Started by seqadmin, 04-10-2024, 09:21 AM
          0 responses
          53 views
          0 likes
          Last Post seqadmin  
          Working...
          X