Deseq2 - Pairwise results from 6 conditions - error non-conformable arguments
1
0
Entering edit mode
claire • 0
@2a044aa5
Last seen 5 months ago
United Kingdom

Hi,

I am using Deseq2 to do comparisons between regions of tissue.

I have set one region as the the "control" region - BLE.

I am trying to pull out the pairwise comparisons for the region named BJK which is third in the factor list. I can run results with contrast for "BLE" vs "BJK" fine but when I try to run results for "BJK" vs "PEK" I run into an error: non-conformable arguments.

All the comparisons to BLE the control region work fine but any other results I try to run have this error. Is this beacuse I have 6 samples. I have previously used contrast = to pull out A vs B, A vs C and C vs B without any problems when A was the control population.

Any help would be great, Thanks

e15.5metadata$Region <- factor(e15.5metadata$Region, 
                               levels = c("BLE","LLE", "BJK", 
                                          "LJK", "CL", "PEK")) 

> results(ddsM_15.5_r1, contrast = c("Region", "BJK", "PEK"))
Error in counts(object) %*% whichSamples : non-conformable arguments


sessionInfo( )
DESeq2 • 486 views
ADD COMMENT
0
Entering edit mode
@mikelove
Last seen 1 day ago
United States

What is table(ddsM_15.5_r1$Region)?

ADD COMMENT
0
Entering edit mode
> table(ddsM_15.5_r1$Region)

BLE LLE BJK LJK CL PEK

2 2 2 2 2 2

ADD REPLY
0
Entering edit mode

I don't seem to have the same issue if I use relevel

ddsM_15.5_r1$Region <- relevel(   ddsM_15.5_r1, ref = "BLE")

I can pull out all the comparisons but I'm not sure what the difference between setting up the factors and releveling to one control is?

ADD REPLY

Login before adding your answer.

Traffic: 463 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