Commit information:
Commit id: 340895e9278ddab0693e734a9ed34a65e34d1196
Properly register some additional .Call() functions
Committed by: Ben Bolstad
Author Name: Ben Bolstad
Commit date: 2014-09-08 18:20:24 -0700
Author date: 2014-09-08 18:20:24 -0700
git-svn-id: https://hedgehog.fhcrc.org/bioconductor/trunk/madman/Rpacks/preprocessCore@93929 bc3139a8-67e5-0310-9ffc-ced21a209358
... | ... |
@@ -54,12 +54,15 @@ __declspec(dllexport) |
54 | 54 |
|
55 | 55 |
|
56 | 56 |
static const R_CallMethodDef callMethods[] = { |
57 |
- {"R_qnorm_c",(DL_FUNC)&R_qnorm_c,2}, |
|
57 |
+ {"R_qnorm_c",(DL_FUNC)&R_qnorm_c,2}, |
|
58 |
+ {"R_qnorm_c_handleNA",(DL_FUNC)&R_qnorm_c_handleNA,2}, |
|
58 | 59 |
{"R_qnorm_robust_weights", (DL_FUNC)&R_qnorm_robust_weights, 3}, |
59 | 60 |
{"R_qnorm_robust_c",(DL_FUNC)&R_qnorm_robust_c,6}, |
60 | 61 |
{"R_qnorm_determine_target",(DL_FUNC)&R_qnorm_determine_target,2}, |
61 | 62 |
{"R_qnorm_using_target",(DL_FUNC)&R_qnorm_using_target,3}, |
62 | 63 |
{"R_qnorm_within_blocks",(DL_FUNC)&R_qnorm_within_blocks,3}, |
64 |
+ {"R_qnorm_determine_target_via_subset",(DL_FUNC)&R_qnorm_determine_target_via_subset,3}, |
|
65 |
+ {"R_qnorm_using_target_via_subset",(DL_FUNC)&R_qnorm_using_target_via_subset,4}, |
|
63 | 66 |
{"R_rlm_rma_default_model",(DL_FUNC)&R_rlm_rma_default_model,4}, |
64 | 67 |
{"R_wrlm_rma_default_model", (DL_FUNC)&R_wrlm_rma_default_model,5}, |
65 | 68 |
{"R_medianpolish_rma_default_model", (DL_FUNC)&R_medianpolish_rma_default_model,1}, |
... | ... |
@@ -31,7 +31,9 @@ SEXP R_qnorm_determine_target(SEXP X, SEXP targetlength); |
31 | 31 |
SEXP R_qnorm_using_target(SEXP X, SEXP target,SEXP copy); |
32 | 32 |
SEXP R_qnorm_within_blocks(SEXP X,SEXP blocks,SEXP copy); |
33 | 33 |
|
34 |
- |
|
34 |
+SEXP R_qnorm_c_handleNA(SEXP X, SEXP copy); |
|
35 |
+SEXP R_qnorm_determine_target_via_subset(SEXP X, SEXP subset, SEXP targetlength); |
|
36 |
+SEXP R_qnorm_using_target_via_subset(SEXP X, SEXP subset, SEXP target,SEXP copy); |
|
35 | 37 |
|
36 | 38 |
#endif |
37 | 39 |
|