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

with bionix;

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

    /* Check and filter fastqs
    Type: { ... } -> { input1, input2 ? null } -> { out :: html, fastq1 :: fastq, fastq2 :: fastq, json :: JSON } 
    */
    check = callBionixE ./fastp-check.nix;
}