Question: (Closed) Basemean always multiples of 0.5 in deseq2 results
0
gravatar for batmaiden
4 months ago by
batmaiden0
batmaiden0 wrote:

Hi,

I analyzing RNA-seq with two samples: control and treatment. I use the following sequence of software: sortmerna -> hisat2 -> DESeq2. This is my R code for DESeq2:

library( "GenomicFeatures" )
hse <- makeTxDbFromGFF( "~/Homo_sapiens.GRCh38.92.gtf", format="gtf" )
trans <- transcriptsBy( hse, by="gene" )

fls <- list.files( "./", pattern="bam$", full=TRUE )

library( "Rsamtools" )
bamLst <- BamFileList( fls, yieldSize=100000 )

library( "GenomicAlignments" )
se <- summarizeOverlaps( trans, bamLst,
mode="Union",
singleEnd=FALSE,
ignore.strand=TRUE,
fragments=TRUE )

library( "DESeq2" )

sampleInfo <- read.csv( "sample.csv" )
sampleInfo <- DataFrame( sampleInfo )
seIdx <- match(colnames(se), sampleInfo$run)

colData(se) <- cbind( colData(se), sampleInfo)

ddsFull <- DESeqDataSet( se, design= ~run )

countdata <- assay(se)
coldata <- colData (se)


ddsFullCountTable <- DESeqDataSetFromMatrix(
countData = countdata,
colData = coldata,
design = ~run)

dds <- ddsFullCountTable

dds <- DESeq(dds)
res <- results( dds )

write.csv( as.data.frame(res), file="results.csv" )

Everything works, but there is a problem with the results: all values ​​in the column "Basemean" are multiples of 0.5 (apparently some setting). What parameters need to be changed? Thank you so much!

basemean rna-seq deseq2 results • 130 views
ADD COMMENTlink written 4 months ago by batmaiden0

Hello batmaiden!

We believe that this post does not fit the main topic of this site.

This forum focuses on Galaxy usage. A better place to ask this question is https://support.bioconductor.org/.

For this reason we have closed your question. This allows us to keep the site focused on the topics that the community can help with.

If you disagree please tell us why in a reply below, we'll be happy to talk about it.

Cheers!

ADD REPLYlink written 4 months ago by Jennifer Hillman Jackson25k
Please log in to add an answer.
The thread is closed. No new answers may be added.

Help
Access

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.
Powered by Biostar version 16.09
Traffic: 174 users visited in the last hour