Skip to content

Commit

Permalink
add forgotten namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
d-callan committed Feb 29, 2024
1 parent 5b7679c commit 2d29195
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions R/method-correlation.R
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ function(data1, data2, method = c('spearman','pearson'), format = c('ComputeRes
if (format == 'data.table') {
return(corrResult)
} else {
result <- buildCorrelationComputeResult(corrResult, data1, data1@sampleMetadata, method, verbose)
result <- veupathUtils::buildCorrelationComputeResult(corrResult, data1, data1@sampleMetadata, method, verbose)
return(result)
}
})
Expand Down Expand Up @@ -73,7 +73,7 @@ function(data, method = c('spearman','pearson','sparcc'), format = c('ComputeRes
if (format == 'data.table') {
return(corrResult)
} else {
result <- buildCorrelationComputeResult(corrResult, data, NULL, method, verbose)
result <- veupathUtils::buildCorrelationComputeResult(corrResult, data, NULL, method, verbose)
return(result)
}
})
Expand Down Expand Up @@ -103,7 +103,7 @@ function(data, method = c('spearman','pearson','sparcc'), format = c('ComputeRes
if (format == 'data.table') {
return(corrResult)
} else {
result <- buildCorrelationComputeResult(corrResult, data, NULL, method, verbose)
result <- veupathUtils::buildCorrelationComputeResult(corrResult, data, NULL, method, verbose)
return(result)
}
})
Expand Down Expand Up @@ -163,7 +163,7 @@ function(data1, data2, method = c('spearman','pearson'), format = c('ComputeResu
if (format == 'data.table') {
return(corrResult)
} else {
result <- buildCorrelationComputeResult(corrResult, data1, data2, method, verbose)
result <- veupathUtils::buildCorrelationComputeResult(corrResult, data1, data2, method, verbose)
return(result)
}
})

0 comments on commit 2d29195

Please sign in to comment.