DESEq2 erroe
1
0
Entering edit mode
Muhammad • 0
@b29d11d8
Last seen 2.1 years ago
Pakistan

Enter the body of text here

Code should be placed in three backticks as shown below

Hi! i am trying DESeq2 analysis but facing an issue when I used this command, can anyone help me, please.

dds <- DESeqDataSetFromMatrix(count_matrix = count_matrix, col_data = col_data, design = ~ condition) dds <- DESeqDataSetFromMatrix(count_matrix = count_matrix,

  • col_data = col_data,
  • design = ~ condition) Error in h(simpleError(msg, call)) : error in evaluating the argument 'x' in selecting a method for function 'ncol': argument "countData" is missing, with no default

    include your problematic code here with any corresponding output

    please also include the results of running the following in an R session

sessionInfo( )


hguatlas13k geNetClassifier ClusterJudge epigraHMM • 1.8k views
ADD COMMENT
0
Entering edit mode
ATpoint ★ 4.0k
@atpoint-13662
Last seen 30 minutes ago
Germany

Use ?DESeqDataSetFromMatrix, the argument in the function to accept the counts is countData, not count_matrix. It's also colData and not col_data.

dds <- DESeqDataSetFromMatrix(countData= count_matrix, colData= col_data, design = ~ condition)
ADD COMMENT
0
Entering edit mode

thank you.

ADD REPLY

Login before adding your answer.

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