aboutsummaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorJustin Bedo <cu@cua0.org>2019-03-06 13:25:52 +1100
committerJustin Bedo <cu@cua0.org>2019-03-06 13:33:16 +1100
commitbe9238d8266682925ae4ad4d291621c03ac38dfd (patch)
tree4c38efd2462dcf3c272a746beb85202aa18925c0 /tools
parent455e1666a03d9918fe191d1969756d9755a3ecbb (diff)
api docs: init ascatNGS
Diffstat (limited to 'tools')
-rw-r--r--tools/ascat.nix8
1 files changed, 8 insertions, 0 deletions
diff --git a/tools/ascat.nix b/tools/ascat.nix
index 05e2299..9e80e4a 100644
--- a/tools/ascat.nix
+++ b/tools/ascat.nix
@@ -4,6 +4,14 @@ with bionix;
{
app = pkgs.callPackage ./ascat-app.nix {};
+
+ /* Generate GC correction file for ascatNGS.
+ Type: {ref :: fasta, chrPrefix :: string, ...} -> (snps :: VCF) -> (gc :: GC)
+ */
gccorrect = callBionixE ./ascat-gccorrect.nix;
+
+ /* Call CNVs using ascatNGS. Gender is a string as per ascatNGS docs (e.g., "XX").
+ Type: {ref :: fasta, gc :: GC, ...} -> {tumour :: bam, normal :: bam, gender :: string} -> CNVs
+ */
callCNV = callBionixE ./ascat-callCNV.nix;
}