A short description of your package.
#clone git repo and navigate to directory containing the setup.py file
pip install .
#or run this command in your jupyter notebook
!pip install git+https://github.com/menchelab/EndotypY.gitView the full documentation here
import EndotypY as edyendo = edy.Endotyper()
path_network = <path_to_network_file.tsv>
path_seed = <path_to_seed_file.txt>
endo.import_network(path_network)
endo.import_seeds(path_seed)endo.prepare_rwr(r=0.8)#k is the size of the neighborhoods to explore
endo.explore_seed_clusters(scaling=True, k=50)endo.extract_disease_module(seed_cluster_id = None, scaling=True, k=200)endo.define_local_neighborhood(scaling=True, neighbor_percentage=1)endo.annotate_local_neighborhood(enrichr_lib='GO_Biological_Process_2023',
organism='Human',
sig_threshold=0.05)endo.define_endotypes()endo.plot_endotype(iteration=1, cluster_id=2, node_size='betweenness', path_length=3)endo.visualize_network()endo.plot_multiple_endotypes(node_size='degree', path_length=2)
