DESeq2, function not found
when I use this line
ddsHTSeq <- DESeqDataSetFromHTSeqCount(sampleTable = sampleTable, directory = directory, design= ~ subtype)
I got this error:
could not find function DESeqDataSetFromHTSeqCount
please help
rna-seq
• 2,873 views
•
link
updated
by
WouterDeCoster
•
written
by
onemore100iq •
0 answers
No answers yet.
Log in to answer this question.
More posts like this
-
Error in DESeqDataSetFromHTSeqCount
written by abhay.kanodia •I am using HTseq pipeline for DESeq2: Directory = "/Users/abhaykanodia/Desktop/smallRNA/" condition = c("WT1", "WT2", "WT3", "NTC1", "NTC2", "NTC3) sampleFiles= c("AK1a_counts.txt","AK2a_counts.txt","AK3a_counts.txt"," AK4a_counts.txt","AK5a_counts.txt","AK6a_counts.txt") sampleName = c("AK1", "AK2", …
-
Specifying unequal replicates in deseq2 with htseq-count input
written by kousi31 •I have two controls and four treatments. I calculated gene-counts using htseq. directory <- "~/d/new_de/gene_counts/" sampleFiles <- c("P-1.deseqfile", "P-2.deseqfile", "P-3.deseqfile", "P-4.deseqfile", "NP-3.deseqfile", "NP-4.deseqfile" ) sampleNames …
-
DESeq DataSet from HTSeqCount Error
written by mahejabeen.nidhi •As my lab does not a lot of computational power, I had used Galaxy for alignment and HTSeq. To produce better graphs for downstream analysis, …
-
ExpressionNormalizationWorkflow R package throws error
written by rohitsatyam102Hi Everyone!! I am using the [following][1] package for SVA analysis. Using normalized log2 values from DESeq2 object. However, I am getting the error at …
-
deseq2 replicates error
written by Balatheskulter •> setwd("C:/Users/SKULTER/Desktop/New folder/") > directory <- 'C:/Users/SKULTER/Desktop/New folder/' > samplefiles <- grep("SRR",list.files(directory),value = TRUE) > condition <- c('SRR5500529.txt','SRR5500530.txt') > sampletable <- data.frame(samplname = samplefiles,filename = …
-
Error in DESeq analysis directory argument - No such file or directory
written by AW •Hello, I'm using DESeq2 for RNA-Seq data analysis. Everything looks great but I get an error about my directory at the final step even though …
-
Error when running ddsHTSeq command in DESeq2
written by Gabrielle.corso •Hi there- I am trying to analyze RNA seq counts in R and am receiving an error code when running this chunk of code: # …
-
How to give directory path in DESeq2
written by AP •Hello everyone, I did my transcripts count using Htseq and now I am trying to use DESeq2 package in R to see differential expression of …
-
DeSeq2 MA plot
written by niu.shengyong •I use the following codes and generate this MA plot. It looks quite weird for me. Is there any problem I should take care of? …
-
DESeq2 model design: dose and time effect
written by CuriusScientistI have three samples each with 3 biological replicates i.e. one control and other at dose 12ug/ml and 25ug/ml at 24hr ``` > library('DESeq2') > …
I added (code) markup to your post for increased readability. You can do this by selecting the text and clicking the 101010 button. When you compose or edit a post that button is in your toolbar, see image below:
Did you load the DESeq2 library?
Did you
library(DESeq2)?In case it's the first time you use R: you need to load the packages every time you run the environment (that is:
library(packagename). In this case:library("DESeq2").