diff options
author | Justin Bedo <cu@cua0.org> | 2019-03-06 13:19:57 +1100 |
---|---|---|
committer | Justin Bedo <cu@cua0.org> | 2019-03-06 13:33:16 +1100 |
commit | 455e1666a03d9918fe191d1969756d9755a3ecbb (patch) | |
tree | f31c9ca9dd0df98fbe36bfff8ebd22480881b6a9 | |
parent | 1ff9422ec0ab086a97c4acab5c8f4d15c2026172 (diff) |
api docs: fix bwa type annotations
-rw-r--r-- | tools/bwa.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/bwa.nix b/tools/bwa.nix index 03735d1..58f9651 100644 --- a/tools/bwa.nix +++ b/tools/bwa.nix @@ -7,11 +7,11 @@ rec { align = bwa-mem; /* Align reads against a reference using bwa-mem - Type: bwa-mem :: {ref = fasta, bamOutput = bool, ...} -> {input1, input2} -> bam/sam + Type: bwa-mem :: {ref :: fasta, bamOutput :: bool, ...} -> {input1, input2} -> bam/sam */ bwa-mem = callBionixE ./bwa-mem.nix; /* Creates an reference index for BWA - Type: {...} -> fasta -> BWA index + Type: index :: {...} -> fasta -> BWA index */ index = callBionixE ./bwa-index.nix; } |