Description Usage Arguments Value Functions See Also Examples
View source: R/ContigCellDB-methods.R
Create new or update existing columns of ContigCellDB
tables
1 2 3 | filter_cdb(ccdb, ..., tbl = "contig_tbl")
mutate_cdb(ccdb, ..., tbl = "contig_tbl")
|
ccdb |
|
... |
name and value pair of column that will be updated |
tbl |
|
ContigCellDB object with updated table
filter_cdb
: Filter rows of a table in a ContigCellDB
object
1 2 3 4 5 6 7 | data(ccdb_ex)
subset_contig = filter_cdb(ccdb_ex,full_length, productive == 'True',
high_confidence, chain != 'Multi', nchar(cdr3) > 5)
subset_cell = filter_cdb(ccdb_ex, sample == 4, tbl = 'cell_tbl')
data(ccdb_ex)
new_contig = mutate_cdb(ccdb_ex, new_col = 1)
new_cell = mutate_cdb(ccdb_ex, new_col = 1, tbl = 'contig_tbl')
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.