Skip to content

Commit

Permalink
Fix bug where the GRN CLI step would not compress the output if the file
Browse files Browse the repository at this point in the history
had a gz ending.
  • Loading branch information
cflerin committed Jun 11, 2020
1 parent 6e3ca77 commit aa577d5
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 @@ -78,7 +78,7 @@ def find_adjacencies_command(args):
LOGGER.info("Writing results to file.")

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


def adjacencies2modules(args):
Expand Down

0 comments on commit aa577d5

Please sign in to comment.