Skip to content

Commit

Permalink
revise fasta import logging #86
Browse files Browse the repository at this point in the history
  • Loading branch information
oschwengers committed Dec 1, 2021
1 parent 51e3fb4 commit 406a76a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bakta/io/fasta.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ def import_contigs(contigs_path):
'topology': bc.TOPOLOGY_LINEAR
}
log.info(
'imported: id=%s, length=%i, complete=%s, topology=%s, description=%s',
contig['id'], contig['length'], contig['complete'], contig['topology'], contig['description']
'imported: id=%s, length=%i, description=%s',
contig['id'], contig['length'], contig['description']
)
contigs.append(contig)
return contigs
Expand Down

0 comments on commit 406a76a

Please sign in to comment.