Skip to content

Commit

Permalink
Fix bug #64
Browse files Browse the repository at this point in the history
  • Loading branch information
martin-steinegger committed May 18, 2018
1 parent 8d00369 commit a58d383
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/util/extractorfs.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ int extractorfs(int argc, const char **argv, const Command& command) {
}

char buffer[LINE_MAX];
snprintf(buffer, LINE_MAX, "%s [Orf: %zu, %zu, %d, %d, %d]\n", header.c_str(), loc.from, loc.to, loc.strand, loc.hasIncompleteStart, loc.hasIncompleteEnd);
snprintf(buffer, LINE_MAX, "%s [Orf: %d, %zu, %zu, %d, %d, %d]\n", header.c_str(), key, loc.from, loc.to, loc.strand, loc.hasIncompleteStart, loc.hasIncompleteEnd);

headerWriter.writeData(buffer, strlen(buffer), id, thread_idx);

Expand Down

0 comments on commit a58d383

Please sign in to comment.