Skip to content

Commit

Permalink
Use local temporary directory for output
Browse files Browse the repository at this point in the history
  • Loading branch information
benmwebb committed Jun 26, 2024
1 parent 2f7f242 commit 3a79478
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/spatiotemporal/test/test_make_graph.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def test_prepare_protein_library(self):
input = os.path.join(tmpdir, 'data/')
shutil.copytree(self.get_input_file_name('data/'), input)
# set output dir
output = self.get_tmp_file_name('output')
output = os.path.join(tmpdir, 'output')
# run code
exp_comp_map = {'A': input+'exp_comp_A.csv', 'B': input+'exp_comp_B.csv'}
prepare_protein_library.prepare_protein_library(list(state_dict.keys()), exp_comp_map, expected_subcomplexes, 2, output_dir=output)
Expand Down

0 comments on commit 3a79478

Please sign in to comment.