Skip to content

Commit 1397a9e

Browse files
committed
remove warning about missing strandSpecific field for empty and example fds
1 parent 6984d2c commit 1397a9e

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

R/AllGenerics.R

+3-1
Original file line numberDiff line numberDiff line change
@@ -152,9 +152,11 @@ setReplaceMethod("workingDir", "FraserDataSet", function(object, value) {
152152
#' @rdname fds-methods
153153
setMethod("strandSpecific", "FraserDataSet", function(object) {
154154
if(!"strand" %in% colnames(colData(object))){
155-
warning("Strand is not specified. Please set the used RNA-seq",
155+
if(ncol(object) > 0){
156+
warning("Strand is not specified. Please set the used RNA-seq",
156157
" protocol by using 'strandSpecific(object) <- c(...)'.",
157158
"\n\nWe assume as default a non stranded protocol.")
159+
}
158160
return(rep(0, ncol(object)))
159161
}
160162
return(colData(object)$strand)

R/example_functions.R

+1
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ createTestFraserSettings <- function(workingDir="FRASER_output"){
4545

4646
# create FRASER object
4747
fds <- FraserDataSet(colData=sampleTable, workingDir=workingDir)
48+
strandSpecific(fds) <- 'no'
4849

4950
# dont use hdf5 for example data set
5051
dontWriteHDF5(fds) <- TRUE

0 commit comments

Comments
 (0)