Skip to content

Commit

Permalink
fix: write_fseqs
Browse files Browse the repository at this point in the history
  • Loading branch information
chungongyu committed Mar 24, 2024
1 parent 747115b commit 077c5d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kclust2db.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
"$cdhit -i $infile -o $outfile -c $c -n $n -T $ncpu -M 8000")


def write_fseqs(txt, outfile, max_name_len=32): # pylint: disable=redefined-outer-name
def write_fseqs(outfile, txt, max_name_len=32): # pylint: disable=redefined-outer-name
with open(outfile, "w") as f:
for line in txt.splitlines():
if line.startswith(">"):
Expand Down

0 comments on commit 077c5d2

Please sign in to comment.