Package lncDIFF input files format
1
0
Entering edit mode
3.1 years ago
valopes ▴ 30

Hi, all!

I am trying to run Package ‘lncDIFF’ in R. However, the description of file formats is so poor.

I need a better description for the all required files: edata, group, covariate, and CompareGroups. Is there someone that could help me?

RNA-Seq • 853 views
ADD COMMENT
0
Entering edit mode

Hi, Do you mean the description here in the lncDIFF topic is not enough ?

ADD REPLY
0
Entering edit mode

Please use comments to request more details/clarification. Answers must answer the question.

ADD REPLY
0
Entering edit mode
3.1 years ago

I've being working on it and it is easier than expected. Simple example, comparison between disease and control with 3 libraries each:

Data must be a data.frame of expression normalized values with genes (rows) and samples/libraries (columns). Prepare the required options:

libraries <- c("disease","disease","disease","control","control","control")
comp <- c("disease","control")

DELnc <- lncDIFF(edata= exp, 
        group = libraries, 
        covariate = NULL,
        link.function = "log",
        CompareGroups = comp,
        simulated.pvalue = FALSE,
        permutation = 100)

table(DELnc$DE.results$DE.Gene)
ADD COMMENT
0
Entering edit mode

Note that the first level alphabetically is treated as the reference group in R. In this case, R is taking control as reference.

ADD REPLY

Login before adding your answer.

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