Skip to content

Commit

Permalink
Merge pull request #139 from jjavier-bm/master
Browse files Browse the repository at this point in the history
fix write seq filename bug
  • Loading branch information
jjavier-bm authored Nov 11, 2023
2 parents 4938d2b + 089f644 commit 17a0af9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crops/elements/sequences.py
Original file line number Diff line number Diff line change
Expand Up @@ -972,7 +972,7 @@ def write(self, outdir, infix="", split=False, oneline=False):

return outstring
else:
outpath = os.path.join(outdir, self.seq_id + infix + ".fasta")
outpath = os.path.join(outdir, self.oligoseq_id + infix + ".fasta")
for seq in self.imer.values():
seq.dump(outpath, split=split, oneline=oneline)

Expand Down

0 comments on commit 17a0af9

Please sign in to comment.