From 58fa67ffd09d3bdfe72bef7c873ef94190dc6708 Mon Sep 17 00:00:00 2001 From: Justin Bedo Date: Tue, 12 Nov 2024 15:50:42 +1100 Subject: deprecate platypus --- examples/call.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'examples/call.nix') diff --git a/examples/call.nix b/examples/call.nix index 81a112e..7525835 100644 --- a/examples/call.nix +++ b/examples/call.nix @@ -1,7 +1,7 @@ # This is an example pipeline specification to do multi-sample variant calling -# with the Platypus variant caller. Each input is preprocessed by aligning +# with the Octopus variant caller. Each input is preprocessed by aligning # against a reference genome (defaults to GRCH38), fixing mate information, and -# marking duplicates. Finally platypus is called over all samples. +# marking duplicates. Finally octopus is called over all samples. { bionix ? import { } , inputs , ref ? bionix.ref.grch38.seq @@ -12,7 +12,7 @@ with lib; let preprocess = flip pipe [ - (bwa.align { inherit ref; }) + (bwa.align { inherit ref; RG = {SM = "sample"; ID = "sample";};}) (samtools.sort { nameSort = true; }) (samtools.fixmate { }) (samtools.sort { }) @@ -20,4 +20,4 @@ let ]; in -platypus.call { } (map preprocess inputs) +octopus.call { } (map preprocess inputs) -- cgit v1.2.3