aboutsummaryrefslogtreecommitdiff
path: root/tools/snap.nix
blob: 851c51ac8a2fbbf7e9ad2029092e7dd6ea2f79eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ bionix }:

with bionix;

rec {
  app = pkgs.callPackage ./snap-app.nix {};

  /* Align reads against a reference
  Type: snap :: {ref :: fasta, bamOutput :: bool, ...} -> {input1, input2} -> bam/sam
  */
  align = callBionixE ./snap-align.nix;

  /* Creates an reference index for SNAP
  Type: index :: {...} -> fasta -> SNAP index
  */
  index = callBionixE ./snap-index.nix;
}