Skip to content

Commit

Permalink
updates with revisions
Browse files Browse the repository at this point in the history
  • Loading branch information
SaniyaKhullar committed May 7, 2024
1 parent b9d6acf commit e861f4e
Show file tree
Hide file tree
Showing 13 changed files with 2,366 additions and 431 deletions.
Binary file modified NetREm_pipeline_figure.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1,442 changes: 1,012 additions & 430 deletions README.md

Large diffs are not rendered by default.

6 changes: 5 additions & 1 deletion code/Netrem_model_builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -299,6 +299,8 @@ def updating_network_and_X_during_fitting(self, X, y):
else:
self.A_df = self.network.A_df
self.A = self.network.A
self.W_df = self.network.W_df
self.final_input_W_df = self.W_df
self.nodes = self.A_df.columns.tolist()
self.network_info = "fitted_network"
self.M = y.shape[0]
Expand Down Expand Up @@ -327,7 +329,8 @@ def organize_B_interaction_list(self): # TF-TF interactions to output :)
max_other = np.max(np.abs(result)).max()
coord_matrix = 100.0*result/max_other
self.coord_score_df = coord_matrix
self.TF_interaction_df = self.coord_score_df
self.TF_interaction_df = self.coord_score_df
self.B_interaction_df = self.coord_score_df
return self


Expand Down Expand Up @@ -743,6 +746,7 @@ def updating_network_A_matrix_given_X(self) -> np.ndarray:

self.W = W
self.W_df = W_df
self.final_input_W_df = W_df
# Feb 12, 2024
edge_list = (
W_df
Expand Down
1,349 changes: 1,349 additions & 0 deletions code/previous_version/README.md

Large diffs are not rendered by default.

File renamed without changes
Binary file added code/previous_version/netrem_expression_demo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added code/previous_version/netrem_final_demo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes
Binary file added netrem_estimator_new.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified netrem_expression_demo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified netrem_final_demo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed netrem_pipeline.PNG
Binary file not shown.
Binary file added output_3_1_new.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit e861f4e

Please sign in to comment.