Skip to content

Commit

Permalink
Merge pull request #20 from ag-computational-bio/fix/replicons_format…
Browse files Browse the repository at this point in the history
…ting

fix: replicons table
  • Loading branch information
oschwengers authored Jul 19, 2024
2 parents 6044da4 + 977d592 commit b7227df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bakta.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ function loadJobs() {
function generateRepliconTable(replicons) {
return replicons
.map((x) => [x.id, x.new, x.type, x.topology, x.name].join("\t"))
.join("\t");
.join("\n");
}

// eslint-disable-next-line no-unused-vars
Expand Down

0 comments on commit b7227df

Please sign in to comment.