Skip to content

Commit

Permalink
fix #27 - regression from previous push, I forgot AC * line has to ke…
Browse files Browse the repository at this point in the history
…ep fasta id anyway. Now it's fine...
  • Loading branch information
Jacques Dainat committed Oct 15, 2018
1 parent 9e8c435 commit 2b592c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion EMBLmyGFF3/EMBLmyGFF3.py
Original file line number Diff line number Diff line change
Expand Up @@ -444,7 +444,7 @@ def AC(self):
output += self.accession + "; "

#add the AC * _contig1 line
output += "\nXX\nAC * _"+self.accession
output += "\nXX\nAC * _"+self.record.id

return "\n" + output.strip() + self.spacer

Expand Down

0 comments on commit 2b592c5

Please sign in to comment.