Retrieves the list of FCS files in an experiment. This does not download the FCS files themselves; this only returns information about the FCS files. Only returns non-control FCS files unless "includeControls"=T is passed in params.

getFcsFiles(experimentId, params = list())

Arguments

experimentId

ID of experiment.

params

Optional query parameters.

Examples

if (FALSE) { # \dontrun{
# List all FCS files in the experiment
getFcsFiles(experimentId)

# List the filename of the the first five files
getFcsFiles(experimentId, params = list("limit" = "5", "fields" = "+filename"))
} # }