Skip to content

Commit

Permalink
Temporary changes to OI2 test data
Browse files Browse the repository at this point in the history
  • Loading branch information
agitter committed Oct 18, 2023
1 parent 6b13ff7 commit c5b9183
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 9 deletions.
14 changes: 9 additions & 5 deletions test/OmicsIntegrator2/input/oi2-edges.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
protein1 protein2 cost
A B 0.9
A C 0.1
B D 0.9
C D 0.1
A D 10
A B 0.52
B C 0.73
A D 1.38
C D 0.61
C E 0.91
C F 1.0
F G 0.74
G H 0.58
G I 0.84
6 changes: 3 additions & 3 deletions test/OmicsIntegrator2/input/oi2-prizes.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
name prize
A 10.0
D 10.0
name prize
C 5.7
A 2.0
4 changes: 3 additions & 1 deletion test/OmicsIntegrator2/test_oi2.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,9 @@ def test_oi2_required(self):
OUT_FILE.unlink(missing_ok=True)
OmicsIntegrator2.run(edges=EDGE_FILE,
prizes=PRIZE_FILE,
output_file=OUT_FILE)
output_file=OUT_FILE,
b=2,
g=0)
assert OUT_FILE.exists()

def test_oi2_some_optional(self):
Expand Down

0 comments on commit c5b9183

Please sign in to comment.