This is a test version of Biostars. For the public version, visit https://www.biostars.org.
Rnaseq correlation between two samples

Dear All,

I have two samples they are extracted from the same source at different times. What I want to do is to understand if inside at unsupervised analysis cluster this samples goes close.

In my hand at the moment both sample are not cluster together but they have a R^2 0f 0.94.

ddHTSeq <- DESeqDataSetFromHTSeqCount(sampleTable=SampleTable,directory="Count/", design= ~1)
dds <- DESeq(ddHTSeq)

 we do blind estimation once, then re-use these for both:
rld <- rlog(ddsblind, blind=FALSE)

## ----euclDist------------------------------------------------------------
sampleDists <- dist(t(assay(rld)))
sampleDists
hc =hclust(sampleDists,labels=metadata$CDT)

What do you think? Could be useful to delete all the counts gene are zero? Or maybe it is wrong the normalization methods I use

deseq2 rna-seq

How close/distant any given samples will be after clustering is dependent on the other samples present. Do you only have these two samples in the dataset? If not, it'd be impossible for them to cluster together unless all of their normalized values were identical.

0 answers

No answers yet.

Log in to answer this question.