... | ... |
@@ -1,8 +1,8 @@ |
1 | 1 |
Package: RNAmodR |
2 | 2 |
Type: Package |
3 | 3 |
Title: Detection of post-transcriptional modifications in high throughput sequencing data |
4 |
-Version: 1.7.0 |
|
5 |
-Date: 2021-04-23 |
|
4 |
+Version: 1.7.1 |
|
5 |
+Date: 2021-07-27 |
|
6 | 6 |
Authors@R: c(person("Felix G.M.", |
7 | 7 |
"Ernst", |
8 | 8 |
email = "felix.gm.ernst@outlook.com", |
... | ... |
@@ -249,7 +249,7 @@ setClass("Modifier", |
249 | 249 |
"required", call. = FALSE) |
250 | 250 |
} |
251 | 251 |
elementTypes <- elementTypes[match(elementTypes,dataType(x))] |
252 |
- if(is.na(elementTypes) || any(elementTypes != dataType(x))){ |
|
252 |
+ if(any(is.na(elementTypes)) || any(elementTypes != dataType(x))){ |
|
253 | 253 |
stop("Type of SequenceData elements does not match the requirements of ", |
254 | 254 |
class(x),". '",paste(dataType(x), collapse = "','"),"' are ", |
255 | 255 |
"required", call. = FALSE) |