Hi,
I have a list of drugs ranked by a score ( from -1 to 1, higher is more correlated) defining the likelihood to target a specific disease.
If I have a list of drugs that I know that are used to treat this disease. Is there any way to determine the significance of the method to prioritize these drugs.
ranked list <- a,b,c,d,e,f,g,h,i...(n drugs)
known drugs <- b,i
Cheers
You can try something like cogena, written by a colleague of mine. In the vignette, take a look at section 6: Drug repositioning
Kevin
Thanks Kevin. Unfortunatelly, I don't understand really how can I apply this method to my problem. Can you explain a little more please
Slightly misread your question and assumed that you had genes and wanted to see in which drug pathways they were appearing. If you currently have correlation values, then you can also derive a p-value from the correlation test - why not try that? The function in R (looks like you're using R) is
cor.test
Knowing the values to what, exactly, you are correlating these drugs would also help. If you have some numerical representation of disease activity, for example, then you could easily build a linear regression model and refine it via stepwise regression in order to build an 'official' cross-validated predictive model with AUC. Take a quick look here: A: Resources for gene signature creation