... | ... |
@@ -81,6 +81,6 @@ LazyDataCompression: xz |
81 | 81 |
BugReports: https://github.com/kasperdanielhansen/bsseq/issues |
82 | 82 |
biocViews: DNAMethylation |
83 | 83 |
SystemRequirements: C++11 |
84 |
-LinkingTo: Rcpp, Rhdf5lib, beachmat |
|
84 |
+LinkingTo: Rcpp, beachmat |
|
85 | 85 |
NeedsCompilation: yes |
86 | 86 |
RoxygenNote: 6.1.0 |
... | ... |
@@ -2,11 +2,6 @@ |
2 | 2 |
#define BSSEQ_H |
3 | 3 |
|
4 | 4 |
#include "Rcpp.h" |
5 |
-#include "beachmat/integer_matrix.h" |
|
6 |
-#include "beachmat/numeric_matrix.h" |
|
7 |
- |
|
8 |
-// TODO: Remove if not using std::runtime_error() |
|
9 |
-#include <stdexcept> |
|
10 | 5 |
|
11 | 6 |
// Functions to be called from R. |
12 | 7 |
extern "C" { |
... | ... |
@@ -16,6 +11,4 @@ extern "C" { |
16 | 11 |
SEXP check_M_and_Cov(SEXP, SEXP); |
17 | 12 |
} |
18 | 13 |
|
19 |
-#include "utils.h" |
|
20 |
- |
|
21 | 14 |
#endif |
... | ... |
@@ -1,5 +1,10 @@ |
1 | 1 |
#include "BSseq.h" |
2 | 2 |
|
3 |
+#include "beachmat/integer_matrix.h" |
|
4 |
+#include "beachmat/numeric_matrix.h" |
|
5 |
+ |
|
6 |
+#include "utils.h" |
|
7 |
+ |
|
3 | 8 |
// NOTE: Returning Rcpp::CharacterVector rather than throwing an error because |
4 | 9 |
// this function is used within a validity method. |
5 | 10 |
|