Skip to content

Commit 3d12178

Browse files
committed
documentation fixes
1 parent 6bc53be commit 3d12178

File tree

6 files changed

+44
-29
lines changed

6 files changed

+44
-29
lines changed

DESCRIPTION

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
Roxygen: list(wrap = FALSE)
21
Package: rncl
32
Title: An Interface to the Nexus Class Library
43
Version: 0.8.4
@@ -30,4 +29,5 @@ License: BSD_2_clause + file LICENSE
3029
URL: https://github.com/fmichonneau/rncl
3130
BugReports: https://github.com/fmichonneau/rncl/issues
3231
LazyData: true
33-
RoxygenNote: 6.0.1
32+
RoxygenNote: 7.0.2.9000
33+
Encoding: UTF-8

R/RcppExports.R

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
# Generated by using Rcpp::compileAttributes() -> do not edit by hand
22
# Generator token: 10BE3573-1514-4C36-9D1C-5A225CD40393
33

4+
RNCL <- function(params, paramsVecR) {
5+
.Call('_rncl_RNCL', PACKAGE = 'rncl', params, paramsVecR)
6+
}
7+
48
n_singletons <- function(ances) {
59
.Call('_rncl_n_singletons', PACKAGE = 'rncl', ances)
610
}
@@ -9,7 +13,3 @@ collapse_single_cpp <- function(ances, desc, elen, nnode, show_progress) {
913
.Call('_rncl_collapse_single_cpp', PACKAGE = 'rncl', ances, desc, elen, nnode, show_progress)
1014
}
1115

12-
RNCL <- function(params, paramsVecR) {
13-
.Call('_rncl_RNCL', PACKAGE = 'rncl', params, paramsVecR)
14-
}
15-

R/rncl.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
##' @references Maddison DR, Swofford DL, Maddison WP (1997).
3333
##' "NEXUS: An extensible file format for systematic information".
3434
##' Systematic Biology 46(4) : 590-621.
35-
##' doi:\href{http://dx.doi.org/10.1093/sysbio/46.4.590}{10.1093/sysbio/46.4.590}
35+
##' doi:\href{https://doi.org/10.1093/sysbio/46.4.590}{10.1093/sysbio/46.4.590}
3636
##'
3737
##' Lewis, P. O. 2003. NCL: a C++ class library for interpreting data
3838
##' files in NEXUS format. Bioinformatics 19 (17) : 2330-2331.

man/read_nexus_phylo.Rd

Lines changed: 14 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

man/rncl.Rd

Lines changed: 11 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/RcppExports.cpp

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,18 @@
55

66
using namespace Rcpp;
77

8+
// RNCL
9+
Rcpp::List RNCL(SEXP params, SEXP paramsVecR);
10+
RcppExport SEXP _rncl_RNCL(SEXP paramsSEXP, SEXP paramsVecRSEXP) {
11+
BEGIN_RCPP
12+
Rcpp::RObject rcpp_result_gen;
13+
Rcpp::RNGScope rcpp_rngScope_gen;
14+
Rcpp::traits::input_parameter< SEXP >::type params(paramsSEXP);
15+
Rcpp::traits::input_parameter< SEXP >::type paramsVecR(paramsVecRSEXP);
16+
rcpp_result_gen = Rcpp::wrap(RNCL(params, paramsVecR));
17+
return rcpp_result_gen;
18+
END_RCPP
19+
}
820
// n_singletons
921
int n_singletons(Rcpp::IntegerVector ances);
1022
RcppExport SEXP _rncl_n_singletons(SEXP ancesSEXP) {
@@ -31,15 +43,3 @@ BEGIN_RCPP
3143
return rcpp_result_gen;
3244
END_RCPP
3345
}
34-
// RNCL
35-
Rcpp::List RNCL(SEXP params, SEXP paramsVecR);
36-
RcppExport SEXP _rncl_RNCL(SEXP paramsSEXP, SEXP paramsVecRSEXP) {
37-
BEGIN_RCPP
38-
Rcpp::RObject rcpp_result_gen;
39-
Rcpp::RNGScope rcpp_rngScope_gen;
40-
Rcpp::traits::input_parameter< SEXP >::type params(paramsSEXP);
41-
Rcpp::traits::input_parameter< SEXP >::type paramsVecR(paramsVecRSEXP);
42-
rcpp_result_gen = Rcpp::wrap(RNCL(params, paramsVecR));
43-
return rcpp_result_gen;
44-
END_RCPP
45-
}

0 commit comments

Comments
 (0)