You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Adding the kinase-substrate sets to the results
* Adding a function to run MEA with custom kinase-substrate sets
* Fixing misspelling
* Converting kinase name in custom sets to uppercase for consistency
* Fixing description misspelling
* Bumping version
enrichment_data['FDR'] =enrichment_data['FDR'].replace(0,enrichment_data['FDR'][enrichment_data['FDR'] !=0].min()).astype(float) #Setting FDR of zero to lowest FDR in data
Kinase enrichment analysis based on pre-ranked GSEA substrates list using custom kinase-substrate sets.
214
+
215
+
Parameters
216
+
----------
217
+
custom_kin_sets : dict
218
+
A dictionary of custom kinase-substrate sets where keys are kinase names and values are lists of substrates.
219
+
kinases : list, optional
220
+
If provided, kinase enrichment will only be calculated for the specified kinases from custom_kin_sets. The default is None, which uses all kinases in custom_kin_sets.
221
+
kin_type : str, optional
222
+
A label to identify the type of custom kinase sets being used. The default is 'custom'.
enrichment_data['p-value'] =enrichment_data['p-value'].replace(0,1/permutation_num).astype(float) #Setting p-value of zero to 1/(# of permutations)
263
+
enrichment_data['FDR'] =enrichment_data['FDR'].replace(0,enrichment_data['FDR'][enrichment_data['FDR'] !=0].min()).astype(float) #Setting FDR of zero to lowest FDR in data
0 commit comments