aboutsummaryrefslogtreecommitdiff
path: root/tools/hisat2-extractExons.nix
blob: 578595408b998190b56f1f7fc3be54cf366b9a0e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ bionix
, flags ? null
}:

gtf:

with bionix;
with lib;
with types;

stage {
  name = "hisat2-extractExons";
  buildInputs = with pkgs; [ hisat2 ];
  buildCommand = ''
    hisat2_extract_exons.py ${gtf} > $out
  '';
}