Skip to content

Commit

Permalink
implemented command generateDazzlerOptions
Browse files Browse the repository at this point in the history
  • Loading branch information
a-ludi committed Aug 13, 2018
1 parent d819c7d commit 56014f4
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 82 deletions.
8 changes: 7 additions & 1 deletion source/dentist/commands/generateDazzlerOptions.d
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,14 @@
*/
module dentist.commands.generateDazzlerOptions;

import std.string : join;
import std.stdio : writefln, writeln;

/// Execute the `generateDazzlerOptions` command with `options`.
void execute(Options)(in Options options)
{
assert(0, "not implemented");
writeln("# self alignment options (consider using `HPC.daligner`)");
writefln!"daligner %-(%s %) <reference> <reference>"(options.selfAlignmentOptions);
writeln("# ref vs reads alignment options (consider using `HPC.damapper`)");
writefln!"damapper %-(%s %) <reference> <reads>"(options.refVsReadsAlignmentOptions);
}
81 changes: 0 additions & 81 deletions source/dentist/util/testing.d

This file was deleted.

0 comments on commit 56014f4

Please sign in to comment.