aboutsummaryrefslogtreecommitdiff
path: root/tools/kallisto.nix
blob: e096d11d2c443610beee7d41e55bcb810718beec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{ bionix }:

with bionix;

{
  index = callBionixE ./kallisto-index.nix;

  /* Quantify reads against a transcriptome
    Type: { bias :: bool, bootstrapSamples :: int, seed :: int, plaintext :: bool, fusion :: bool, single :: bool, frStranded :: bool, rfStranded :: bool, fragmentLength :: Int, fragmentSD :: real } -> [fastq] -> kallisto
  */
  quant = callBionixE ./kallisto-quant.nix;
}