saezlab / transcriptutorial

This is a tutorial to guide the analysis of RNAseq dataset using footprint based tools such as DOROTHEA, PROGENY and CARNIVAL
https://saezlab.github.io/transcriptutorial/
GNU General Public License v3.0
55 stars 30 forks source link

Regarding of CARNIVAL installing #8

Closed hmkim closed 4 years ago

hmkim commented 4 years ago

Hi,

Thank you for the awesome tutorial.

Please write this in the md file.

BiocManager::install("CARNIVAL")

https://github.com/saezlab/transcriptutorial/blob/master/INSTALL.md

hmkim commented 4 years ago

Please write the installing of ILP solvers.

(Refer to this: https://bioconductor.org/packages/release/bioc/vignettes/CARNIVAL/inst/doc/CARNIVAL.html)

In my case, I choose the Cbc in my ubuntu system.

apt install coinor-cbc

and then modified the script.

"scripts/05_network_reconstruction_with_CARNIVAL.md"

# run carnival
carnival_result = runCARNIVAL( inputObj= iniciators,
                               measObj = tfList$t, 
                               netObj = sif, 
                               weightObj = progenylist$score, 
                               solverPath = "/usr/bin/cbc", 
                               solver = "cbc",
                               timelimit=7200,
                               mipGAP=0,
                               poolrelGAP=0 )
hmkim commented 4 years ago

In this script "06_analysis_CARNIVAL_results.Rmd"

Check the path in your case.

setwd("/Users/rosherbal/Projects/transcriptutorial/scripts")

hmkim commented 4 years ago

In this script "06_analysis_CARNIVAL_results.Rmd"

../../Hepatoblastoma-iPC/proteomics/data/c2.cp.v7.1.symbols.gmt

I got this file from here.

https://data.broadinstitute.org/gsea-msigdb/msigdb/release/7.1/c2.cp.v7.1.symbols.gmt

jperales commented 4 years ago

@hmkim , thank you very much for your comments! @rosherbal will include the rest and close the issue when finished. Let me know if I could help with anything else.

Javier

rosherbal commented 4 years ago

@hmkim , thanks for your comments. I have added the information about the ILPs. For the pathway analysis, it was already included in the description pointing to MSigDB.

Rosa