aboutsummaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorJustin Bedo <cu@cua0.org>2019-12-12 15:25:31 +1100
committerJustin Bedo <cu@cua0.org>2019-12-12 15:25:55 +1100
commit352425b6065d752cd065fda5fbcd4b8d253d4626 (patch)
tree179518b4007cd9001134d742920e007b55b5de81 /tools
parentce7603274e146a3c63d2d090c7bf2293a6b028c9 (diff)
octopus: fix incorrect error message
Diffstat (limited to 'tools')
-rw-r--r--tools/octopus-call.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/octopus-call.nix b/tools/octopus-call.nix
index f88960c..37a6400 100644
--- a/tools/octopus-call.nix
+++ b/tools/octopus-call.nix
@@ -10,7 +10,7 @@ with types;
inputs:
let
- getref = f: matchFiletype "octopus-callSomatic" { bam = {ref, ...}: ref; cram = {ref, ...}: ref;} f;
+ getref = f: matchFiletype "octopus-call" { bam = {ref, ...}: ref; cram = {ref, ...}: ref;} f;
refs = map getref inputs;
ref = head refs;