Retrieves the list of gates in an experiment.

getGates(experimentId, params = list())

Arguments

experimentId

ID of experiment.

params

Optional query parameters.

Examples

if (FALSE) { # \dontrun{
# List all gates in the experiment
getGates(experimentId)

# List the name and GID of the first five gates
getGates(experimentId, params = list("limit" = "5", "fields" = "+name,+gid"))
} # }