Skip to content

Commit

Permalink
Merge pull request #26 from PathwayMerger/ppi-exporter
Browse files Browse the repository at this point in the history
Ppi exporter
  • Loading branch information
ddomingof authored Jan 15, 2020
2 parents bb7b390 + bc8fe4e commit 26451b2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/pathme/export_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,8 @@ def export_ppi_tsv(graph: BELGraph, path: Union[str, TextIO]):
if NAME not in u or NAME not in v:
continue
print(
(u[NAME], edge_data[RELATION], v[NAME]),
sep='tsv',
u[NAME], edge_data[RELATION], v[NAME],
sep='\t',
file=path,
)

Expand Down Expand Up @@ -118,7 +118,7 @@ def export_helper(

logger.info(f'A total of {len(paths)} will be exported')

paths = tqdm(paths, desc='Exporting SPIA excel files')
paths = tqdm(paths, desc='Exporting PPI files')

# Call Reactome manager and check that is populated
reactome_manager = ReactomeManager()
Expand Down

0 comments on commit 26451b2

Please sign in to comment.