Estimatelog2Foldchange In Dexseq
1
0
Entering edit mode
10.8 years ago
venks ▴ 740

Hi,

I am using DEXSeq function

                 `ecs <- estimatelog2FoldChanges(ecs,denominator=condition1)`

Here I have tow conditions, condition1 and condition2.

In the result table that is created I see the results for log2Fold(Condition1/condition2).

I assumed that with the argument (denominator=condition1) I will get the result tables with log2Fold(condition2/condition1)

Can someone explain me what is happening here.

Thanks in advance

rna-seq deseq • 2.1k views
ADD COMMENT
1
Entering edit mode
10.8 years ago

Instead, try:

ecs <- estimatelog2FoldChanges(ecs,denominator="condition1")

If you look at the help page for that function, you'll see 'denominator=""', indicating that it's expecting a character string (or whatever the R terminology is for "char *") rather than a variable.

ADD COMMENT
0
Entering edit mode

Thank You @dpryan. Here condition1 is a variable where I have saved "case" and for condition2 its "control" and your answer helped.

ADD REPLY

Login before adding your answer.

Traffic: 2046 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6