Skip to content

Commit

Permalink
PG formatter fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Artem Tarasov committed Sep 10, 2016
1 parent 128886f commit d87dc52
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions utils/version_.d
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ import std.array : join;

SamHeader addPG(string tool, string[] args, SamHeader header) {
auto pg_line = PgLine();
pg_line.identifier = "sambamba " ~ tool;
pg_line.command_line = args[0] ~ " " ~ tool ~ " " ~ join(args[1 .. $], " ");
pg_line.identifier = "sambamba";
pg_line.command_line = tool ~ " " ~ join(args[1 .. $], " ");
pg_line.program_version = VERSION;

if (header.programs.length > 0) {
Expand Down

0 comments on commit d87dc52

Please sign in to comment.