Skip to content

Commit

Permalink
renamed the tests for creating the inputs
Browse files Browse the repository at this point in the history
  • Loading branch information
ntalluri committed Oct 4, 2023
1 parent b314751 commit 32be496
Show file tree
Hide file tree
Showing 9 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docker-wrappers/Cytoscape/cytoscape_util.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ def load_pathways(pathways: List[str], output: str) -> None:
path, name = parse_name(pathway)
suid = p4c.networks.import_network_from_tabular_file(
file=path,
column_type_list='s,t,x',
column_type_list='s,t,x,ea',
delimiters='\t'
)
p4c.networks.rename_network(name, network=suid)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@

from src import runner

OUTDIR = "test/PrepareInputs/output/"
EXPDIR = "test/PrepareInputs/expected/"
OUTDIR = "test/GenerateInputs/output/"
EXPDIR = "test/GenerateInputs/expected/"
algorithms = ['mincostflow', 'meo', 'omicsintegrator1', "omicsintegrator2", "domino", "pathlinker", "allpairs"]
algo_exp_file = {'mincostflow': 'edges', 'meo': 'edges', 'omicsintegrator1': 'edges', 'omicsintegrator2': 'edges', 'domino': 'network', 'pathlinker': 'network', "allpairs": 'network'}

class TestPrepareInputs:
class TestGenerateInputs:
def setup_class(cls):
"""
Create the expected output directory
Expand Down

0 comments on commit 32be496

Please sign in to comment.