Skip to content

Commit

Permalink
Merge branch 'master' of github.com:maxibor/pydamage
Browse files Browse the repository at this point in the history
  • Loading branch information
maxibor committed Aug 4, 2023
2 parents 1912069 + c485103 commit cb7c158
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pydamage/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ def df_to_csv(
df = df.round(3)
if not outdir:
outdir = "."
df.to_csv(f"{outdir}/{outfile}")
df.to_csv(f"{outdir}/{outfile}", index=False)


def sort_dict_by_keys(adict: dict) -> dict:
Expand Down Expand Up @@ -247,4 +247,4 @@ def prepare_bam(bam: str, minlen: int) -> Tuple[Tuple, str]:
present_refs.add(refname)
alf.close()
return tuple(present_refs), mode


0 comments on commit cb7c158

Please sign in to comment.