| deseqAbs | R Documentation |
Class a simple interface to deseq data
deseqAbs
R6Class object.
Object of R6Class to store Deseq data.
namethe name of the experiment
filenamethe name of the raw featurecount output
rawfilethe raw featurecount file
rawCountsthe count matrix (removing position and length info column 1-6) with ID rownames
baseMeanlist of data.frames: Mean and SD: mean and SD of normalized count data
FPKMMeanlist of data.frames: Mean and SD: mean and SD of FPKM
geneIDgeneIDs
colDataa data.frame with condition information
sampleNamesa vector given by user to provide suitable sampleNames to replace filenames from featureCounts
VSTthe output from varianceStabilizingTransformation(dds)
deseqthe output from DESeq(dds)
FPKMmatrix with FPKM values for all genes
testoutput from diffex analysis results(dds)
posposition data for each gene
lengthof each gene
dnmt <- deseqAbs$new("DNMT1KO",fc.file)
dnmt$filename
head(dnmt$rawfile)
head(dnmt$pos)
head(dnmt$length)
head(dnmt$rawCounts)
## sampleNames
dnmt$sampleNames <- colnames(dnmt$rawCounts)
## define coldata conditions
dnmt$colData <- data.frame(condition=c(rep("CTR",3),rep("KO",3)))
dnmt$makeDESeq()
dnmt$deseq
dnmt$makeDiffex()
dnmt$test
dnmt$makeVST()
dnmt$makeFPKM()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.