Description Usage Arguments Value Author(s) Examples
A function to generate the search space for sffs
1 | searchSpace(drug_number, k_set, profile_data, y_actual)
|
drug_number |
an integer to specify the number of drugs |
k_set |
a vector to specify the selected target set |
profile_data |
drug-target interaction data |
y_actual |
the drug sensitivity data |
a list of the following components:
IM_d |
search space of identical sets |
IM_superset |
search space of supersets |
IM_subset |
search space of subsets |
Liye He liye.he@helsinki.fi
1 2 3 4 5 6 | data(tyner_interaction_binary)
data(tyner_sensitivity)
num<-length(tyner_sensitivity[,1])
k_set<-rep(0, dim(tyner_interaction_binary)[2])
k_set[1]<-1
space<-searchSpace(num, k_set, tyner_interaction_binary, tyner_sensitivity[,1])
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.