From a719ec06337643949bb0a9cbbecb7425340c49af Mon Sep 17 00:00:00 2001 From: Justin Bedo Date: Mon, 2 Nov 2020 11:11:42 +1100 Subject: star: init --- tools/star-align.nix | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 tools/star-align.nix (limited to 'tools/star-align.nix') diff --git a/tools/star-align.nix b/tools/star-align.nix new file mode 100644 index 0000000..0cf9ab9 --- /dev/null +++ b/tools/star-align.nix @@ -0,0 +1,38 @@ +{ bionix +, ref +, bamOutput ? true +, flags ? null +, indexAttrs ? {} +}: + +{ input1 +, input2 ? null +}: + +with bionix; +with lib; +with types; +with compression; + +let + fa = f: matchFiletype "star-ref" { fa = _: f; } f; + fq = f: matchFiletype "star-input" { fq = _: f; gz = matchFiletype' "star-input" { fq = _: "<(gunzip < ${f})"; }; } f; + +in stage { + name = "star-align"; + buildInputs = with pkgs; [ star bc samtools ]; + buildCommand = '' + ln -s ${fa ref} ref.fa + cores=$(echo $NIX_BUILD_CORES ${optionalString bamOutput "- 1"} | bc) + if [[ $cores -lt 1 ]] ; then + cores=1 + fi + STAR ${optionalString (flags != null) flags} \ + --runThreadN $cores \ + --genomeDir ${star.index indexAttrs ref} \ + --readFilesIn ${fq input1} ${optionalString (input2 != null) (fq input2)} + ${if bamOutput then "samtools view -b Aligned.out.sam > $out" else "cp Aligned.out.sam $out"} + ''; + passthru.filetype = if bamOutput then filetype.bam {ref = ref; sorting = sort.name {};} else filetype.sam {ref = ref; sorting = sort.name {};}; + passthru.multicore = true; +} -- cgit v1.2.3