Browse code

Added nopackage option for krlmm

git-svn-id: file:///home/git/hedgehog.fhcrc.org/bioconductor/trunk/madman/Rpacks/crlmm@117087 bc3139a8-67e5-0310-9ffc-ced21a209358

unknown authored on 03/05/2016 23:39:54
Showing 1 changed files
... ...
@@ -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);
Browse code

fix conflict in description

git-svn-id: file:///home/git/hedgehog.fhcrc.org/bioconductor/trunk/madman/Rpacks/crlmm@80947 bc3139a8-67e5-0310-9ffc-ced21a209358

Rob Scharp authored on 30/09/2013 14:07:17
Showing 1 changed files
... ...
@@ -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);
Browse code

Adding crlmm package

git-svn-id: file:///home/git/hedgehog.fhcrc.org/bioconductor/trunk/madman/Rpacks/crlmm@36653 bc3139a8-67e5-0310-9ffc-ced21a209358

Benilton Carvalho authored on 14/01/2009 22:00:52
Showing 1 changed files
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);