Skip to content

Commit

Permalink
fixes #178 (Parsing XXmotif output, thanks @kirbyziegler)
Browse files Browse the repository at this point in the history
  • Loading branch information
simonvh committed Apr 9, 2021
1 parent cbd75c9 commit db53846
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gimmemotifs/tools/motifprogram.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def _read_and_label_motifs(self, outfile, stdout, stderr, fmt="meme"):
stderr += "\nMotif file {0} not found!\n".format(outfile)
return [], stdout, stderr

motifs = read_motifs(outfile, fmt="meme")
motifs = read_motifs(outfile, fmt)
for m in motifs:
m.id = "{0}_{1}".format(self.name, m.id)
return motifs, stdout, stderr
Expand Down

0 comments on commit db53846

Please sign in to comment.