From 455e1666a03d9918fe191d1969756d9755a3ecbb Mon Sep 17 00:00:00 2001 From: Justin Bedo Date: Wed, 6 Mar 2019 13:19:57 +1100 Subject: api docs: fix bwa type annotations --- tools/bwa.nix | 4 ++-- 1 file 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; } -- cgit v1.2.3