Seqanswers Leaderboard Ad

Collapse

Announcement

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

  • Cannot reproduce the DEXSeq example

    Hi, All,

    I recently try to perform alternative splicing analysis on my RNA-seq data sets.
    I tried DEXSeq package. However, I got almost all NAs in the padj column for my data sets.

    Therefore, I planed to reproduce the example in DEXSeq library, but I have problems to reproduce the example (pasilla).
    I used the exact code in the DEXSeq manual as follows, but I got an error message at the near last step.
    When I tried to get the number of significant genes using "table ( dxr1$padj 0.1 )", I got an error message "Error: unexpected numeric constant in "table ( dxr1$padj 0.1" ".

    I think this may due to the NAs in the padj column. Is there any way to deal with this?
    When comparing my results with the results in the DEXSeq manual, the only difference I can tell is that: the numbers in the columns of exonBaseMean and exonBaseVar in the manual is integer ( such as 64 and 1251)
    whereas in my analysis has four significant numbers (64.0000 and 1250.667).

    Codes:
    inDir = system.file("extdata",package="pasilla")
    countFiles= list.files(inDir, pattern="fb.txt$",full.names=TRUE)
    countFiles
    flattenedFile = list.files (inDir, pattern="gff$",full.names=TRUE)
    flattenedFile

    sampleTable = data.frame(
    row.names = c("treated1","treated2","treated3","untreated1","untreated2","untreated3","untreated4"),
    condition = c("knockdown","knockdown","knockdown","control","control","control","control"),
    libType = c("single-end","paired-end","paired-end","single-end","single-end","paired-end","paired-end"))

    sampleTable
    suppressPackageStartupMessages(library("DEXSeq"))
    dxd = DEXSeqDataSetFromHTSeq(countFiles,sampleData=sampleTable,
    design=~sample+exon+condition:exon,flattenedfile=flattenedFile)

    genesForSubset = read.table(file.path(inDir,"geneIDsinsubset.txt"),stringsAsFactors=FALSE)[[1]]

    dxd =dxd[geneIDs( dxd ) %in% genesForSubset,]
    colData(dxd)
    head(counts(dxd), 5)
    split(seq_len(ncol(dxd)), colData(dxd)$exon)
    head(featureCounts(dxd), 5)
    head(rowData(dxd), 3)
    sampleAnnotation(dxd)
    dxd = estimateSizeFactors(dxd)
    dxd = estimateDispersions(dxd)
    plotDispEsts(dxd)
    dxd = testForDEU(dxd)
    dxd = estimateExonFoldChanges(dxd, fitExpToVar="condition")
    dxr1 = DEXSeqResults(dxd)
    dxr1
    elementMetadata(dxr1)$description

    table ( dxr1$padj 0.1 )
    table(tapply(dxr1$padj 0.1, drx1$groupID, any))
    plotMA(dxr1, cex=0.8)

  • #2
    Looks like either you or Alejandro forget a "<". Try:
    Code:
    table(dxr1$padj < 0.1 )

    Comment


    • #3
      Thanks!

      I forgot the "<". This is such an obvious mistake.


      Best,
      Jerry

      Comment


      • #4
        I've long ago lost track of how many times I've made simple mistakes like that.

        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 on Modified Bases...
          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
        39 views
        0 likes
        Last Post seqadmin  
        Started by seqadmin, 04-10-2024, 10:19 PM
        0 responses
        41 views
        0 likes
        Last Post seqadmin  
        Started by seqadmin, 04-10-2024, 09:21 AM
        0 responses
        35 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