Skip to content

Commit

Permalink
Bugfix for CLI grn step
Browse files Browse the repository at this point in the history
- Determination of filename extension
- Related to #175
  • Loading branch information
cflerin committed Jun 5, 2020
1 parent bd27edc commit 264fc7e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pyscenic/cli/pyscenic.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ def find_adjacencies_command(args):

LOGGER.info("Writing results to file.")

extension = PurePath(fname).suffixes
extension = PurePath(args.output.name).suffixes
network.to_csv(args.output, index=False, sep=suffixes_to_separator(extension))


Expand Down

0 comments on commit 264fc7e

Please sign in to comment.