![]() |
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
ExomeCNV - R - data.frame error | sophiespo | Bioinformatics | 4 | 02-25-2016 01:16 AM |
DESeq2 | Simon Anders | Bioinformatics | 123 | 07-06-2015 02:45 AM |
six frame translation | Alagurajvelu | Bioinformatics | 1 | 08-12-2013 07:51 AM |
Creating haplotypes from vcf/NGS data | pettervikman | Bioinformatics | 0 | 02-08-2013 04:33 AM |
Creating a BedGraph file for STRAND-SPECIFIC short read data | woolfman | RNA Sequencing | 0 | 02-23-2011 07:49 AM |
![]() |
|
Thread Tools |
![]() |
#1 |
Junior Member
Location: Baltimore Join Date: May 2011
Posts: 8
|
![]()
Hey All,
I am a novice R user and am having a difficult time getting a data.frame set up for DESeq2. I have done the following: datafile <- "E:/Longitudinal Paper/DESeq/0 to 1.txt" > datafile [1] "E:/Longitudinal Paper/DESeq/0 to 1.txt" > countTable = read.delim(datafile, header=TRUE, row.names=1) > head(countTable) C1 C2 C3 D1 D2 D3 D4 COX1 244969 257554 243872 235001 237881 178634 202627 Hsp90ab1 185595 200135 228766 143571 147350 99427 116190 CYTB 149810 151470 148100 129141 140353 86705 107290 Eef2 142818 151153 163043 140762 134884 94678 99470 Col4a1 126366 130972 227447 126424 122709 83403 77633 ND1 116379 117694 111396 91746 99802 62038 76769 > ExpDesign = data.frame(row.names=colnames(countTable), + condition=c("C1", "C2", "C3", "D1", "D2", "D3", "D4"), + libType = c("paired-end","paired-end","paired-end","paired-end","paired-end","paired-end","paired-end")) > ExpDesign condition libType C1 C1 paired-end C2 C2 paired-end C3 C3 paired-end D1 D1 paired-end D2 D2 paired-end D3 D3 paired-end D4 D4 paired-end I then try to do the following and get the subsequent errors: > data("countTable") Warning message: In data("countTable") : data set ‘countTable’ not found > countData <- counts(countTable) Error in (function (classes, fdef, mtable) : unable to find an inherited method for function ‘counts’ for signature ‘"data.frame"’ > colData <- pData(countTable)[,c("condition", "type")] Error: could not find function "pData" What steps am I missing in between? Thanks for any help! Last edited by KHubbard; 10-11-2013 at 01:50 PM. |
![]() |
![]() |
![]() |
#2 |
Devon Ryan
Location: Freiburg, Germany Join Date: Jul 2011
Posts: 3,480
|
![]()
data("countTable") doesn't mean what you think. It tries to load an R dataset called "countTable", not convert your data.frame into a format for DESeq2. In the vignette, that works, since it's just loading a specific dataset that comes with an R package. Instead, just use:
Code:
cds <-DESeqDataSetFromMatrix(countData = countTable, colData=ExpDesign$condition, design=~ExpDesign$condition) |
![]() |
![]() |
![]() |
#3 |
Junior Member
Location: Baltimore Join Date: May 2011
Posts: 8
|
![]()
Thanks for the reply!
In answer to your question, all the "C's" are replicates of one another as are the "D's". |
![]() |
![]() |
![]() |
#4 |
Devon Ryan
Location: Freiburg, Germany Join Date: Jul 2011
Posts: 3,480
|
![]()
Ah, good. Then you want instead:
Code:
condition=c("C", "C", "C", "D", "D", "D", "D") |
![]() |
![]() |
![]() |
Thread Tools | |
|
|