aboutsummaryrefslogtreecommitdiff
path: root/tools/bowtie.nix
blob: 2208dff9c168001284d0f7bbef67080c5bbcde57 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ bionix }:

with bionix;

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

  /* Create a Bowtie index
    Type: index :: {seed :: int, ...} -> fasta -> index
  */
  index = callBionixE ./bowtie-index.nix;
}