diff options
-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; } |