Browse code

Added importFrom statements Edited vignette to remove structure related sections Remove structure related tests Updated Rd files

cannin authored on 17/04/2020 15:48:36
Showing 1 changed files
... ...
@@ -5,9 +5,14 @@
5 5
 \title{Compute a binary gene mutation data matrix from SNP and other mutation
6 6
 event-level data.}
7 7
 \usage{
8
-getBinaryMutationData(mutInfo, mutData, maxVariantFreq = 0.2,
9
-  maxNormalPopulationFreq = 0.005, maxSiftScore = 0.05,
10
-  minPolyPhenScore = 0.85)
8
+getBinaryMutationData(
9
+  mutInfo,
10
+  mutData,
11
+  maxVariantFreq = 0.2,
12
+  maxNormalPopulationFreq = 0.005,
13
+  maxSiftScore = 0.05,
14
+  minPolyPhenScore = 0.85
15
+)
11 16
 }
12 17
 \arguments{
13 18
 \item{mutInfo}{A data frame with the following named columns:
... ...
@@ -48,6 +53,4 @@ along columns, and 1s indicating deleterious mutations.
48 53
 Compute a binary gene mutation data matrix from SNP and other mutation
49 54
 event-level data.
50 55
 }
51
-\concept{
52
-rcellminer
53
-}
56
+\concept{rcellminer}
Browse code

Minor documentation update Updated analytics Updated about.md

cannin authored on 29/03/2017 21:43:19
Showing 1 changed files
... ...
@@ -51,4 +51,3 @@ event-level data.
51 51
 \concept{
52 52
 rcellminer
53 53
 }
54
-
Browse code

Adding parCorPatternComparison() function to do pattern comparisons based on partial correlations with respect to a fixed pattern (whose influence with respect to a linear model is to be excluded).

Vinodh N. Rajapakse authored on 09/08/2016 18:28:29
Showing 1 changed files
... ...
@@ -1,4 +1,4 @@
1
-% Generated by roxygen2 (4.1.1): do not edit by hand
1
+% Generated by roxygen2: do not edit by hand
2 2
 % Please edit documentation in R/getBinaryMutationData.R
3 3
 \name{getBinaryMutationData}
4 4
 \alias{getBinaryMutationData}
... ...
@@ -15,7 +15,7 @@ Gene, the name of the gene associated with the mutation event;
15 15
 probe.ids, a unique identifier specifying the mutation event;
16 16
 SNP_1000_genome, the frequency of the mutation event in SNP 1000;
17 17
 ESP5400, the frequency of the mutation event in ESP5400;
18
-SNP_type, the type of mutation event, chosen from "MISSENSE", "FRAMESHIFT",
18
+SNP_type, the type of mutation event, chosen from "MISSENSE", "FRAMESHIFT", 
19 19
 "NONFRAMESHIFT", "NONSENSE", "SPLICING";
20 20
 SIFT_score, the SIFT score;
21 21
 Polyphen_score, the POLYPHEN score.
... ...
@@ -34,7 +34,7 @@ exclude frequently occuring events); default value = 0.2.}
34 34
 \item{maxNormalPopulationFreq}{The maximum freqency of a mutation in the normal
35 35
 population (used to exclude likely germline variants); default value = 0.005.}
36 36
 
37
-\item{maxSiftScore}{The maximum accepted SIFT score (used to exclude
37
+\item{maxSiftScore}{The maximum accepted SIFT score (used to exclude 
38 38
 presumed non-deleterious mutations); default value = 0.05.}
39 39
 
40 40
 \item{minPolyPhenScore}{The minimum accepted POLYPHEN score (used to
Browse code

Initial commit

cannin authored on 25/02/2016 02:26:31
Showing 1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,54 @@
1
+% Generated by roxygen2 (4.1.1): do not edit by hand
2
+% Please edit documentation in R/getBinaryMutationData.R
3
+\name{getBinaryMutationData}
4
+\alias{getBinaryMutationData}
5
+\title{Compute a binary gene mutation data matrix from SNP and other mutation
6
+event-level data.}
7
+\usage{
8
+getBinaryMutationData(mutInfo, mutData, maxVariantFreq = 0.2,
9
+  maxNormalPopulationFreq = 0.005, maxSiftScore = 0.05,
10
+  minPolyPhenScore = 0.85)
11
+}
12
+\arguments{
13
+\item{mutInfo}{A data frame with the following named columns:
14
+Gene, the name of the gene associated with the mutation event;
15
+probe.ids, a unique identifier specifying the mutation event;
16
+SNP_1000_genome, the frequency of the mutation event in SNP 1000;
17
+ESP5400, the frequency of the mutation event in ESP5400;
18
+SNP_type, the type of mutation event, chosen from "MISSENSE", "FRAMESHIFT",
19
+"NONFRAMESHIFT", "NONSENSE", "SPLICING";
20
+SIFT_score, the SIFT score;
21
+Polyphen_score, the POLYPHEN score.
22
+Rownames of mutInfo should be set to probe.ids, i.e., the unique mutation
23
+event specifier.}
24
+
25
+\item{mutData}{A matrix with event level mutation information, with SNPs, etc.
26
+along rows and samples along columns.  Rownames of mutData should exactly
27
+match those of mutInfo.  The i-th row of mutInfo should thus give detailed
28
+information for the mutation event with data specified in the i-th row of
29
+mutData.}
30
+
31
+\item{maxVariantFreq}{The maximum proportion of mutant samples (used to
32
+exclude frequently occuring events); default value = 0.2.}
33
+
34
+\item{maxNormalPopulationFreq}{The maximum freqency of a mutation in the normal
35
+population (used to exclude likely germline variants); default value = 0.005.}
36
+
37
+\item{maxSiftScore}{The maximum accepted SIFT score (used to exclude
38
+presumed non-deleterious mutations); default value = 0.05.}
39
+
40
+\item{minPolyPhenScore}{The minimum accepted POLYPHEN score (used to
41
+exclude presumed non-deleterious mutations); default value = 0.85.}
42
+}
43
+\value{
44
+A binary gene mutation matrix, with genes along rows, samples
45
+along columns, and 1s indicating deleterious mutations.
46
+}
47
+\description{
48
+Compute a binary gene mutation data matrix from SNP and other mutation
49
+event-level data.
50
+}
51
+\concept{
52
+rcellminer
53
+}
54
+