Skip to content

Commit

Permalink
fly updates
Browse files Browse the repository at this point in the history
  • Loading branch information
ntalluri committed Mar 5, 2024
1 parent 9f9d437 commit c957ec4
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 19 deletions.
51 changes: 33 additions & 18 deletions config/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,16 +45,15 @@ algorithms:
params:
include: true
run1:
r: [5]
b: [5, 6]
w: np.linspace(0,5,2)
mu: [0.1,0.5]
g: [3]
w: np.linspace(1,5,2)
mu: np.linspace(.5,6,.5)
d: [10]


- name: "omicsintegrator2"
params:
include: true
include: false
run1:
b: [4]
g: [0]
Expand All @@ -64,26 +63,26 @@ algorithms:

- name: "meo"
params:
include: true
include: false
run1:
max_path_length: [3]
local_search: ["Yes"]
rand_restarts: [10]

- name: "mincostflow"
params:
include: true
include: false
run1:
flow: [1] # The flow must be an int
capacity: [1]

- name: "allpairs"
params:
include: true
include: false

- name: "domino"
params:
include: true
include: false
run1:
slice_threshold: [0.3]
module_threshold: [0.05]
Expand All @@ -94,19 +93,35 @@ algorithms:
# Assume that if a dataset label does not change, the lists of associated input files do not change
datasets:
-
label: data0
node_files: ["node-prizes.txt", "sources.txt", "targets.txt"]
label: HSD-div-ND
node_files: ["flies/HSD-div-ND-node-prizes.txt", "sources.txt", "targets.txt"]
# DataLoader.py can currently only load a single edge file, which is the primary network
edge_files: ["network.txt"]
edge_files: ["flies/fly-uniprot-network.txt"]
# Placeholder
other_files: []
# Relative path from the spras directory
data_dir: "input"
-
label: data1
label: HSD-H2O-div-ND-H2O
# Reuse some of the same sources file as 'data0' but different network and targets
node_files: ["flies/HSD-H2O-div-ND-H2O-node-prizes.txt", "sources.txt", "targets.txt"]
edge_files: ["flies/fly-uniprot-network.txt"]
other_files: []
# Relative path from the spras directory
data_dir: "input"
-
label: HSD-H2O-div-ND
# Reuse some of the same sources file as 'data0' but different network and targets
node_files: ["flies/HSD-H2O-div-ND-node-prizes.txt", "sources.txt", "targets.txt"]
edge_files: ["flies/fly-uniprot-network.txt"]
other_files: []
# Relative path from the spras directory
data_dir: "input"
-
label: ND-H2O-div-ND
# Reuse some of the same sources file as 'data0' but different network and targets
node_files: ["node-prizes.txt", "sources.txt", "alternative-targets.txt"]
edge_files: ["alternative-network.txt"]
node_files: ["flies/ND-H2O-div-ND-node-prizes.txt", "sources.txt", "targets.txt"]
edge_files: ["flies/fly-uniprot-network.txt"]
other_files: []
# Relative path from the spras directory
data_dir: "input"
Expand All @@ -131,13 +146,13 @@ analysis:
include: true
# Create output files for each pathway that can be visualized with GraphSpace
graphspace:
include: true
include: false
# Create Cytoscape session file with all pathway graphs for each dataset
cytoscape:
include: true
include: false
# Machine learning analysis (e.g. clustering) of the pathway output files for each dataset
ml:
include: true
include: false
# specify how many principal components to calculate
components: 2
# boolean to show the labels on the pca graph
Expand Down
1 change: 0 additions & 1 deletion input/flies/fly-uniprot-network.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
Node1 Node2 Rank Direction
P32234 P32234 1 U
P32234 P29310 1 U
P32234 Q9Y0Y2 1 U
Expand Down

0 comments on commit c957ec4

Please sign in to comment.