git-svn-id: file:///home/git/hedgehog.fhcrc.org/bioconductor/trunk/madman/Rpacks/crlmm@117087 bc3139a8-67e5-0310-9ffc-ced21a209358
... | ... |
@@ -6,4 +6,4 @@ double sdCorrection(const int *n); |
6 | 6 |
int sort_double(const double *a1, const double *a2); |
7 | 7 |
void trimmed_mean(double *datavec, int *classvec, int class, double trim, int cols, int rows, double *m1, double *m2, double *m3, int i_ext); |
8 | 8 |
void trimmed_stats(double *data, double *m1, double *m2, double *m3, int *class, int rows, int cols, double *trim); |
9 |
-long Cmatrix(int row, int col, int totrow); |
|
9 |
+long CMatrixElementPosition(long row, long col, long totrow); |
git-svn-id: file:///home/git/hedgehog.fhcrc.org/bioconductor/trunk/madman/Rpacks/crlmm@80947 bc3139a8-67e5-0310-9ffc-ced21a209358
... | ... |
@@ -1,7 +1,9 @@ |
1 | 1 |
int genotypeConfidence(const double *prob); |
2 |
+int genotypeConfidence2(double probability); |
|
2 | 3 |
int intInSet(const int *x, const int *set, const int *n); |
3 | 4 |
int genotypeCall(const double *pAA, const double *pAB, const double *pBB); |
4 | 5 |
double sdCorrection(const int *n); |
5 | 6 |
int sort_double(const double *a1, const double *a2); |
6 | 7 |
void trimmed_mean(double *datavec, int *classvec, int class, double trim, int cols, int rows, double *m1, double *m2, double *m3, int i_ext); |
7 | 8 |
void trimmed_stats(double *data, double *m1, double *m2, double *m3, int *class, int rows, int cols, double *trim); |
9 |
+long Cmatrix(int row, int col, int totrow); |
git-svn-id: file:///home/git/hedgehog.fhcrc.org/bioconductor/trunk/madman/Rpacks/crlmm@36653 bc3139a8-67e5-0310-9ffc-ced21a209358
1 | 1 |
new file mode 100644 |
... | ... |
@@ -0,0 +1,7 @@ |
1 |
+int genotypeConfidence(const double *prob); |
|
2 |
+int intInSet(const int *x, const int *set, const int *n); |
|
3 |
+int genotypeCall(const double *pAA, const double *pAB, const double *pBB); |
|
4 |
+double sdCorrection(const int *n); |
|
5 |
+int sort_double(const double *a1, const double *a2); |
|
6 |
+void trimmed_mean(double *datavec, int *classvec, int class, double trim, int cols, int rows, double *m1, double *m2, double *m3, int i_ext); |
|
7 |
+void trimmed_stats(double *data, double *m1, double *m2, double *m3, int *class, int rows, int cols, double *trim); |