# S3 method for memoMDB
filter_mdb_matrix(x, tableName, ...)
# S3 method for metaMDB
filter_mdb_matrix(x, tableName, ...)
Value
A sub-matrix of tableName in x. Only existing elements are returned.
No error is raised if any element is missing. The result must be checked
and adapted to user needs.
Arguments
x
an MDB object
tableName
a character vector of length 1 corresponding to the name of
the table to filter (must be a matrix)
...
character vectors with the row names and/or columns names to
select. The names of the parameters must correspond to the name of the
column and of the row fields (the matrix cannot be filtered from values).
.by
the size of the batch: number of lines to process
together (default: 10000)
if (FALSE) {
## Return the matrix of expression values focused on the selected genesfilter_mdb_matrix(x=db, "Expression_value", gene=c("SNCA", "MAPT"))
}