R/oldNames.R

Defines functions runAlg dataGen tumorGen

Documented in dataGen runAlg tumorGen

### The first three functions are here for backwards compatibility.
### They are officially "deprecated", which means (a) you should not
### use them in new code because (b) at some point they will simply
### go away.
tumorGen <- function(...) {
  tumor <- Tumor(...)
  as(tumor, "list")
}

dataGen <- function(tumor, ...) {
  generateTumorData(as(tumor, "Tumor"), ...)
}

runAlg <- function(...) seekClones(...)

Try the CloneSeeker package in your browser

Any scripts or data that you put into this service are public.

CloneSeeker documentation built on July 1, 2022, 3 a.m.