12 lines
367 B
Nix
12 lines
367 B
Nix
{
|
|
description =
|
|
"locimend is a tool that corrects DNA sequencing errors using Deep Learning";
|
|
|
|
inputs.flake-utils.url = "github:numtide/flake-utils";
|
|
|
|
outputs = { self, nixpkgs, flake-utils }:
|
|
flake-utils.lib.eachDefaultSystem (system:
|
|
let pkgs = nixpkgs.legacyPackages.${system};
|
|
in { devShell = import ./shell.nix { inherit pkgs; }; });
|
|
}
|