Contents

1 Introduction

This vignette describes the steps to generate supercells for cytometry data using SuperCellCyto R package.

Briefly, supercells are “mini” clusters of cells that are similar in their marker expressions. The motivation behind supercells is that instead of analysing millions of individual cells, you can analyse thousands of supercells, making downstream analysis much faster while maintaining biological interpretability.

See other vignettes for how to:

2 Installation

You can install stable version of SuperCellCyto from Bioconductor using:

if (!requireNamespace("BiocManager", quietly = TRUE))
    install.packages("BiocManager")
BiocManager::install("SuperCellCyto")

For the latest development version, you can install it from GitHub using pak:

if (!requireNamespace("pak", quietly = TRUE))
    install.packages("pak")
pak::install_github("phipsonlab/SuperCellCyto")

3 Preparing your dataset

The function which creates supercells is called runSuperCellCyto, and it operates on a data.table object, an enhanced version of R native data.frame.

In addition to needing the data stored in a data.table object it also requires:

  1. The markers you will be using to create supercells to have been appropriately transformed, typically using either arcsinh transformation or linear binning (using FlowJo). runSuperCellCyto does not perform any data transformation or scaling.
  2. The object to have a column denoting the unique ID of each cell. You most likely have to create this column yourself, and it can simply just be a numerical value ranging from 1 to however many cells you have in your data.
  3. The object to have a column denoting the biological sample each cell comes from. This column is critical to ensure that cells from different samples will not be mixed in a supercell.

If you are not sure how to import CSV or FCS files into data.table object, and/or how to subsequently prepare the object ready for SuperCellCyto, please consult this vignette. In that vignette, we also provide an explanation behind why we need to have the cell ID and sample column.

For this vignette, we will simulate some toy data using the simCytoData function. Specifically, we will simulate 15 markers and 3 samples, with each sample containing 10,000 cells. Hence in total, we will have a toy dataset containing 15 markers and 30,000 cells.

n_markers <- 15
n_samples <- 3
dat <- simCytoData(nmarkers = n_markers, ncells = rep(10000, n_samples))
head(dat)
#>    Marker_1 Marker_2 Marker_3  Marker_4 Marker_5  Marker_6 Marker_7 Marker_8
#>       <num>    <num>    <num>     <num>    <num>     <num>    <num>    <num>
#> 1: 18.85440 16.14730 6.429708  8.850862 14.87319 11.727419 6.301132 9.669446
#> 2: 19.68428 15.96727 5.463370  7.482602 15.72874 12.118923 5.285626 9.756979
#> 3: 21.21862 17.71473 4.848143  8.303224 15.67270 10.626191 4.958997 8.320184
#> 4: 19.90953 15.48402 6.030136  9.956417 16.14721  9.749188 4.679804 8.857849
#> 5: 19.51910 16.81226 4.116140  9.358668 16.57591 12.462574 6.555932 8.071700
#> 6: 20.01331 13.76621 7.124191 10.961582 15.90356 11.602222 7.720262 9.224173
#>     Marker_9 Marker_10 Marker_11 Marker_12 Marker_13 Marker_14 Marker_15
#>        <num>     <num>     <num>     <num>     <num>     <num>     <num>
#> 1: 11.424526  19.05450  3.990255  13.34864  6.780332  7.397103  20.43970
#> 2:  9.752347  18.88644  4.628939  11.68598  6.466633  4.817963  19.91975
#> 3:  9.273126  20.14386  5.426783  10.93335  6.388795  5.127388  17.42473
#> 4: 10.468346  19.34911  5.810724  12.88613  7.866252  6.525322  17.75858
#> 5: 11.298240  18.06356  6.498749  13.11893  6.618882  5.912315  20.11957
#> 6: 10.920770  19.08256  5.193282  12.69877  7.200437  5.255554  20.97837
#>      Sample Cell_Id
#>      <char>  <char>
#> 1: Sample_1  Cell_1
#> 2: Sample_1  Cell_2
#> 3: Sample_1  Cell_3
#> 4: Sample_1  Cell_4
#> 5: Sample_1  Cell_5
#> 6: Sample_1  Cell_6

For our toy dataset, we will transform our data using arcsinh transformation. We will use the base R asinh function to do this:

# Specify which columns are the markers to transform
marker_cols <- paste0("Marker_", seq_len(n_markers))
# The co-factor for arc-sinh
cofactor <- 5

# Do the transformation
dat_asinh <- asinh(dat[, marker_cols, with = FALSE] / cofactor)

# Rename the new columns
marker_cols_asinh <- paste0(marker_cols, "_asinh")
names(dat_asinh) <- marker_cols_asinh

# Add them our previously loaded data
dat <- cbind(dat, dat_asinh)

head(dat[, marker_cols_asinh, with = FALSE])
#>    Marker_1_asinh Marker_2_asinh Marker_3_asinh Marker_4_asinh Marker_5_asinh
#>             <num>          <num>          <num>          <num>          <num>
#> 1:       2.037591       1.888614      1.0698503       1.335863       1.810396
#> 2:       2.079283       1.877909      0.9454100       1.192832       1.863555
#> 3:       2.152190       1.977452      0.8597339       1.280693       1.860155
#> 4:       2.090315       1.848622      1.0198259       1.439730       1.888609
#> 5:       2.071118       1.927230      0.7507038       1.384756       1.913668
#> 6:       2.095358       1.737385      1.1523346       1.526476       1.874095
#>    Marker_6_asinh Marker_7_asinh Marker_8_asinh Marker_9_asinh Marker_10_asinh
#>             <num>          <num>          <num>          <num>           <num>
#> 1:       1.588265      1.0539655       1.413673       1.564243        2.047798
#> 2:       1.618547      0.9211960       1.421685       1.421263        2.039232
#> 3:       1.498281      0.8755630       1.282442       1.376665        2.101667
#> 4:       1.420974      0.8353585       1.336550       1.484758        2.062646
#> 5:       1.644448      1.0852532       1.256559       1.554069        1.996232
#> 6:       1.578400      1.2189533       1.372009       1.523084        2.049222
#>    Marker_11_asinh Marker_12_asinh Marker_13_asinh Marker_14_asinh
#>              <num>           <num>           <num>           <num>
#> 1:       0.7311457        1.708486        1.112178       1.1832934
#> 2:       0.8279124        1.585009        1.074376       0.8553940
#> 3:       0.9404607        1.524131        1.064817       0.8992748
#> 4:       0.9915114        1.675536        1.234720       1.0815351
#> 5:       1.0782985        1.692248        1.092865       1.0046976
#> 6:       0.9084454        1.661895        1.161064       0.9170566
#>    Marker_15_asinh
#>              <num>
#> 1:        2.115823
#> 2:        2.090813
#> 3:        1.961577
#> 4:        1.979832
#> 5:        2.100496
#> 6:        2.141109

We will also create a column Cell_id_dummy which uniquely identify each cell. It will have values such as Cell_1, Cell_2, all the way until Cell_x where x is the number of cells in the dataset.

dat$Cell_id_dummy <- paste0("Cell_", seq_len(nrow(dat)))
head(dat$Cell_id_dummy, n = 10)
#>  [1] "Cell_1"  "Cell_2"  "Cell_3"  "Cell_4"  "Cell_5"  "Cell_6"  "Cell_7" 
#>  [8] "Cell_8"  "Cell_9"  "Cell_10"

By default, the simCytoData function will generate cells for multiple samples, and that the resulting data.table object will already have a column called Sample that denotes the sample the cells come from.

unique(dat$Sample)
#> [1] "Sample_1" "Sample_2" "Sample_3"

Let’s take note of the sample and cell id column for later.

sample_col <- "Sample"
cell_id_col <- "Cell_id_dummy"

4 Creating supercells

Now that we have our data, let’s create some supercells. To do this, we will use runSuperCellCyto function and pass the markers, sample and cell ID columns as parameters.

The reason why we need to specify the markers is because the function will create supercells based on only the expression of those markers. We highly recommend creating supercells using all markers in your data, let that be cell type or cell state markers. However, if for any reason you only want to only use a subset of the markers in your data, then make sure you specify them in a vector that you later pass to runSuperCellCyto function.

For this tutorial, we will use all the arcsinh transformed markers in the toy data.

supercells <- runSuperCellCyto(
    dt = dat,
    markers = marker_cols_asinh,
    sample_colname = sample_col,
    cell_id_colname = cell_id_col
)

Let’s dig deeper into the object it created:

class(supercells)
#> [1] "list"

It is a list containing 3 elements:

names(supercells)
#> [1] "supercell_expression_matrix" "supercell_cell_map"         
#> [3] "supercell_object"

4.1 Supercell object

The supercell_object contains the metadata used to create the supercells. It is a list, and each element contains the metadata used to create the supercells for a sample. This will come in handy if we need to either regenerate the supercells using different gamma values (so we get more or less supercells) or do some debugging later down the line. More on regenerating supercells on Controlling supercells granularity section below.

4.2 Supercell expression matrix

The supercell_expression_matrix contains the marker expression of each supercell. These are calculated by taking the average of the marker expression of all the cells contained within a supercell.

head(supercells$supercell_expression_matrix)
#>    Marker_1_asinh Marker_2_asinh Marker_3_asinh Marker_4_asinh Marker_5_asinh
#>             <num>          <num>          <num>          <num>          <num>
#> 1:       2.096636       1.859556      1.0118745       1.369860       1.871566
#> 2:       2.111449       1.857228      1.0168416       1.370573       1.883261
#> 3:       2.063928       1.822110      0.9937078       1.354898       1.831955
#> 4:       2.090111       1.849695      0.9033486       1.423432       1.855198
#> 5:       2.098205       1.845467      1.0793469       1.286840       1.854311
#> 6:       2.099120       1.851909      1.1244656       1.463177       1.880397
#>    Marker_6_asinh Marker_7_asinh Marker_8_asinh Marker_9_asinh Marker_10_asinh
#>             <num>          <num>          <num>          <num>           <num>
#> 1:       1.501902      1.0985685       1.363515       1.533103        2.045407
#> 2:       1.438977      0.8443778       1.382868       1.561513        2.036103
#> 3:       1.463809      1.0977708       1.302591       1.463636        2.034749
#> 4:       1.484231      0.8130881       1.422238       1.500159        2.044742
#> 5:       1.470791      1.0231467       1.409543       1.418565        2.039799
#> 6:       1.545463      0.9161976       1.481102       1.519544        2.039779
#>    Marker_11_asinh Marker_12_asinh Marker_13_asinh Marker_14_asinh
#>              <num>           <num>           <num>           <num>
#> 1:       0.9167735        1.619301       1.1118518       0.9279958
#> 2:       0.9450716        1.644804       0.8285308       0.7935053
#> 3:       0.8916328        1.620450       1.1266096       0.5047158
#> 4:       0.8633762        1.622171       0.9574752       1.0076991
#> 5:       1.0928003        1.642784       1.1554202       0.8830620
#> 6:       1.0176729        1.627728       0.9775209       1.0174257
#>    Marker_15_asinh   Sample                 SuperCellId
#>              <num>   <char>                      <char>
#> 1:        2.090282 Sample_1 SuperCell_1_Sample_Sample_1
#> 2:        2.096721 Sample_1 SuperCell_2_Sample_Sample_1
#> 3:        2.078219 Sample_1 SuperCell_3_Sample_Sample_1
#> 4:        2.103131 Sample_1 SuperCell_4_Sample_Sample_1
#> 5:        2.081854 Sample_1 SuperCell_5_Sample_Sample_1
#> 6:        2.107863 Sample_1 SuperCell_6_Sample_Sample_1

Therein, we will have the following columns:

  1. All the markers we previously specified in the markers_col variable. In this example, they are the arcsinh transformed markers in our toy data.
  2. A column (Sample in this case) denoting which sample a supercell belongs to, (note the column name is the same as what is stored in sample_col variable).
  3. The SuperCellId column denoting the unique ID of the supercell.

4.2.1 SuperCellId

Let’s have a look at SuperCellId:

head(unique(supercells$supercell_expression_matrix$SuperCellId))
#> [1] "SuperCell_1_Sample_Sample_1" "SuperCell_2_Sample_Sample_1"
#> [3] "SuperCell_3_Sample_Sample_1" "SuperCell_4_Sample_Sample_1"
#> [5] "SuperCell_5_Sample_Sample_1" "SuperCell_6_Sample_Sample_1"

Let’s break down one of them, SuperCell_1_Sample_Sample_1. SuperCell_1 is a numbering (1 to however many supercells there are in a sample) used to uniquely identify each supercell in a sample. Notably, you may encounter this (SuperCell_1, SuperCell_2) being repeated across different samples, e.g.,

supercell_ids <- unique(supercells$supercell_expression_matrix$SuperCellId)
supercell_ids[grep("SuperCell_1_", supercell_ids)]
#> [1] "SuperCell_1_Sample_Sample_1" "SuperCell_1_Sample_Sample_2"
#> [3] "SuperCell_1_Sample_Sample_3"

While these 3 supercells’ id are pre-fixed with SuperCell_1, it does not make them equal to one another! SuperCell_1_Sample_Sample_1 will only contain cells from Sample_1 while SuperCell_1_Sample_Sample_2 will only contain cells from Sample_2.

By now, you may have noticed that we appended the sample name into each supercell id. This aids in differentiating the supercells in different samples.

4.3 Supercell cell map

supercell_cell_map maps each cell in our dataset to the supercell it belongs to.

head(supercells$supercell_cell_map)
#>                      SuperCellID CellId   Sample
#>                           <char> <char>   <char>
#> 1: SuperCell_102_Sample_Sample_1 Cell_1 Sample_1
#> 2: SuperCell_336_Sample_Sample_1 Cell_2 Sample_1
#> 3: SuperCell_243_Sample_Sample_1 Cell_3 Sample_1
#> 4: SuperCell_125_Sample_Sample_1 Cell_4 Sample_1
#> 5: SuperCell_130_Sample_Sample_1 Cell_5 Sample_1
#> 6:   SuperCell_1_Sample_Sample_1 Cell_6 Sample_1

This map is very useful if we later need to expand the supercells out. Additionally, this is also the reason why we need to have a column in the dataset which uniquely identify each cell.

5 Running runSuperCellCyto in parallel

By default, runSuperCellCyto will process each sample one after the other. As each sample is processed independent of one another, strictly speaking, we can process all of them in parallel.

To do this, we need to:

  1. Create a BiocParallelParam object from the BiocParallel package. This object can either be of type MulticoreParamor SnowParam. We highly recommend consulting their vignette for more information.
  2. Set the number of tasks for the BiocParallelParam object to the number of samples we have in the dataset.
  3. Set the load_balancing parameter for runSuperCellCyto function to TRUE. This is to ensure even distribution of the supercell creation jobs. As each sample will be processed by a parallel job, we don’t want a job that processs large sample to also be assigned other smaller samples if possible. If you want to know more how this feature works, please refer to our manuscript.
supercell_par <- runSuperCellCyto(
    dt = dat,
    markers = marker_cols_asinh,
    sample_colname = sample_col,
    cell_id_colname = cell_id_col,
    BPPARAM = MulticoreParam(tasks = n_samples),
    load_balancing = TRUE
)

6 Controlling supercells granularity

This is described in the runSuperCellCyto function’s documentation, but let’s briefly go through it here.

The runSuperCellCyto function is equipped with various parameters which can be customised to alter the composition of the supercells. The one that is very likely to be used the most is the gamma parameter, denoted as gam in the function. By default, the value for gam is set to 20, which we found work well for most cases.

The gamma parameter controls how many supercells to generate, and indirectly, how many cells are captured within each supercell. This parameter is resolved into the following formula gamma=n_cells/n_supercells where n_cell denotes the number of cells and n_supercells denotes the number of supercells.

In general, the larger gamma parameter is set to, the less supercells we will get. Say for instance we have 10,000 cells. If gamma is set to 10, we will end up with about 1,000 supercells, whereas if gamma is set to 50, we will end up with about 200 supercells.

You may have noticed, after reading the sections above, runSuperCellCyto is ran on each sample independent of each other, and that we can only set 1 value as the gamma parameter. Indeed, for now, the same gamma value will be used across all samples, and that depending on how many cells we have in each sample, we will end up with different number of supercells for each sample. For instance, say we have 10,000 cells for sample 1, and 100,000 cells for sample 2. If gamma is set to 10, for sample 1, we will get 1,000 supercells (10,000/10) while for sample 2, we will get 10,000 supercells (100,000/10).

Do note: whatever gamma value you chose, you should not expect each supercell to contain exactly the same number of cells. This behaviour is intentional to ensure rare cell types are not intermixed with non-rare cell types in a supercell.

6.1 Adjusting gamma value after one run of runSuperCellCyto

If you have run runSuperCellCyto once and have not discarded the SuperCell object it generated (no serious, please don’t!), you can use the object to quickly regenerate supercells using different gamma values.

As an example, using the SuperCell object we have generated for our toy dataset, we will regenerate the supercells using gamma of 10 and 50. The function to do this is recomputeSupercells. We will store the output in a list, one element per gamma value.

addt_gamma_vals <- c(10, 50)
supercells_addt_gamma <- lapply(addt_gamma_vals, function(gam) {
    recomputeSupercells(
        dt = dat,
        sc_objects = supercells$supercell_object,
        markers = marker_cols_asinh,
        sample_colname = sample_col,
        cell_id_colname = cell_id_col,
        gam = gam
    )
})

We should end up with a list containing 2 elements. The 1st element contains supercells generated using gamma = 10, and the 2nd contains supercells generated using gamma = 50.

supercells_addt_gamma[[1]]
#> $supercell_expression_matrix
#>       Marker_1_asinh Marker_2_asinh Marker_3_asinh Marker_4_asinh
#>                <num>          <num>          <num>          <num>
#>    1:       2.091184       1.871714      0.8140983       1.299690
#>    2:       2.100164       1.853475      1.0581097       1.268434
#>    3:       2.098657       1.858897      0.9993700       1.346252
#>    4:       2.100578       1.840230      1.0182558       1.318204
#>    5:       2.122896       1.824310      1.0917089       1.426426
#>   ---                                                            
#> 2996:       1.650936       1.718638      1.3276530       1.372981
#> 2997:       1.761584       1.762647      1.3655291       1.515476
#> 2998:       1.776764       1.608978      1.2729668       1.625868
#> 2999:       1.730309       1.851276      1.2295428       1.493336
#> 3000:       1.738462       1.780153      1.2809312       1.556413
#>       Marker_5_asinh Marker_6_asinh Marker_7_asinh Marker_8_asinh
#>                <num>          <num>          <num>          <num>
#>    1:       1.860574       1.599050      0.7202341       1.335586
#>    2:       1.866264       1.387657      0.8087814       1.324498
#>    3:       1.878845       1.479838      0.8866449       1.371970
#>    4:       1.835181       1.499402      0.6858331       1.425903
#>    5:       1.838082       1.478182      0.8869411       1.385704
#>   ---                                                            
#> 2996:       1.792049       2.025923      1.7925775       1.947901
#> 2997:       1.825954       2.112660      1.8938340       2.059222
#> 2998:       1.848645       2.090589      1.8452766       1.975798
#> 2999:       1.873215       2.118175      1.9117701       2.015078
#> 3000:       1.867165       2.082029      1.8642402       2.068679
#>       Marker_9_asinh Marker_10_asinh Marker_11_asinh Marker_12_asinh
#>                <num>           <num>           <num>           <num>
#>    1:       1.482217        2.043403       0.7858242       1.6558360
#>    2:       1.374539        2.019308       0.7737487       1.6202364
#>    3:       1.472294        2.042281       0.9401912       1.6492148
#>    4:       1.464015        2.033498       0.8388169       1.6263509
#>    5:       1.504308        2.057409       0.8630894       1.6117883
#>   ---                                                               
#> 2996:       1.789143        1.123735       1.7450836       1.0550301
#> 2997:       1.769299        1.006029       1.7384732       1.0135206
#> 2998:       1.754042        1.082864       1.6528512       0.9188736
#> 2999:       1.674430        1.241565       1.8005683       1.0659505
#> 3000:       1.829871        1.321892       1.8177940       1.0244326
#>       Marker_13_asinh Marker_14_asinh Marker_15_asinh   Sample
#>                 <num>           <num>           <num>   <char>
#>    1:        1.141922       0.8876102        2.095794 Sample_1
#>    2:        1.085885       0.9013888        2.077417 Sample_1
#>    3:        1.104052       0.7492022        2.097252 Sample_1
#>    4:        1.119270       0.9823026        2.093722 Sample_1
#>    5:        1.296009       0.8156014        2.098910 Sample_1
#>   ---                                                         
#> 2996:        1.475509       1.0076381        1.533230 Sample_3
#> 2997:        1.627724       1.1394558        1.466597 Sample_3
#> 2998:        1.562948       1.4030577        1.457832 Sample_3
#> 2999:        1.641782       1.2697986        1.528913 Sample_3
#> 3000:        1.567148       1.2648482        1.484207 Sample_3
#>                          SuperCellId
#>                               <char>
#>    1:    SuperCell_1_Sample_Sample_1
#>    2:    SuperCell_2_Sample_Sample_1
#>    3:    SuperCell_3_Sample_Sample_1
#>    4:    SuperCell_4_Sample_Sample_1
#>    5:    SuperCell_5_Sample_Sample_1
#>   ---                               
#> 2996:  SuperCell_996_Sample_Sample_3
#> 2997:  SuperCell_997_Sample_Sample_3
#> 2998:  SuperCell_998_Sample_Sample_3
#> 2999:  SuperCell_999_Sample_Sample_3
#> 3000: SuperCell_1000_Sample_Sample_3
#> 
#> $supercell_cell_map
#>                          SuperCellID     CellId   Sample
#>                               <char>     <char>   <char>
#>     1: SuperCell_384_Sample_Sample_1     Cell_1 Sample_1
#>     2: SuperCell_241_Sample_Sample_1     Cell_2 Sample_1
#>     3: SuperCell_294_Sample_Sample_1     Cell_3 Sample_1
#>     4: SuperCell_395_Sample_Sample_1     Cell_4 Sample_1
#>     5: SuperCell_544_Sample_Sample_1     Cell_5 Sample_1
#>    ---                                                  
#> 29996: SuperCell_497_Sample_Sample_3 Cell_29996 Sample_3
#> 29997: SuperCell_295_Sample_Sample_3 Cell_29997 Sample_3
#> 29998: SuperCell_330_Sample_Sample_3 Cell_29998 Sample_3
#> 29999: SuperCell_520_Sample_Sample_3 Cell_29999 Sample_3
#> 30000: SuperCell_217_Sample_Sample_3 Cell_30000 Sample_3

The output generated by recomputeSupercells is essentially a list:

  1. supercell_expression_matrix: A data.table object that contains the marker expression for each supercell.
  2. supercell_cell_map: A data.table that maps each cell to its corresponding supercell.

As mentioned before, gamma dictates the granularity of supercells. Compared to the previous run where gamma was set to 20, we should get more supercells for gamma = 10, and less for gamma = 50. Let’s see if that’s the case.

n_supercells_gamma20 <- nrow(supercells$supercell_expression_matrix)
n_supercells_gamma10 <- nrow(
    supercells_addt_gamma[[1]]$supercell_expression_matrix
)
n_supercells_gamma50 <- nrow(
    supercells_addt_gamma[[2]]$supercell_expression_matrix
)
n_supercells_gamma10 > n_supercells_gamma20
#> [1] TRUE
n_supercells_gamma50 < n_supercells_gamma20
#> [1] TRUE

6.2 Specifying different gamma value for different samples

In the future, we may add the ability to specify different gam value for different samples. For now, if we want to do this, we will need to break down our data into multiple data.table objects, each containing data from 1 sample, and run runSuperCellCyto function on each of them with different gam parameter value. Something like the following:

n_markers <- 10
dat <- simCytoData(nmarkers = n_markers)
markers_col <- paste0("Marker_", seq_len(n_markers))
sample_col <- "Sample"
cell_id_col <- "Cell_Id"

samples <- unique(dat[[sample_col]])
gam_values <- c(10, 20, 10)

supercells_diff_gam <- lapply(seq_len(length(samples)), function(i) {
    sample <- samples[i]
    gam <- gam_values[i]
    dat_samp <- dat[dat$Sample == sample, ]
    supercell_samp <- runSuperCellCyto(
        dt = dat_samp,
        markers = markers_col,
        sample_colname = sample_col,
        cell_id_colname = cell_id_col,
        gam = gam
    )
    return(supercell_samp)
})

Subsequently, to extract and combine the supercell_expression_matrix and supercell_cell_map, we will need to use rbind:

supercell_expression_matrix <- do.call(
    "rbind", lapply(
        supercells_diff_gam, function(x) x[["supercell_expression_matrix"]]
    )
)

supercell_cell_map <- do.call(
    "rbind", lapply(
        supercells_diff_gam, function(x) x[["supercell_cell_map"]]
    )
)
rbind(
    head(supercell_expression_matrix, n = 3),
    tail(supercell_expression_matrix, n = 3)
)
#>    Marker_1 Marker_2 Marker_3  Marker_4 Marker_5 Marker_6  Marker_7  Marker_8
#>       <num>    <num>    <num>     <num>    <num>    <num>     <num>     <num>
#> 1: 6.674807 11.92058  9.05714  8.963321 18.16876 16.53325  7.770012 14.348756
#> 2: 6.565126 10.84632 10.91324  9.326203 18.48789 15.05420  8.168926 14.820848
#> 3: 5.525939 11.58042  9.28018  9.084018 17.38818 13.87761  8.266965 14.197187
#> 4: 8.755750 12.84089 18.86411 14.342320 16.80635 15.65205 20.140237  5.127224
#> 5: 8.347419 11.58993 17.84598 11.764507 14.87955 16.52605 19.115338  5.146529
#> 6: 8.269431 12.50586 18.99793 13.368811 15.11017 15.51260 20.342555  6.235972
#>     Marker_9 Marker_10   Sample                   SuperCellId
#>        <num>     <num>   <char>                        <char>
#> 1:  9.657023  15.39192 Sample_1   SuperCell_1_Sample_Sample_1
#> 2:  9.550155  15.84285 Sample_1   SuperCell_2_Sample_Sample_1
#> 3: 10.720200  14.37135 Sample_1   SuperCell_3_Sample_Sample_1
#> 4:  6.395666  10.99317 Sample_2 SuperCell_498_Sample_Sample_2
#> 5:  5.773336  14.34108 Sample_2 SuperCell_499_Sample_Sample_2
#> 6:  5.780960  13.64476 Sample_2 SuperCell_500_Sample_Sample_2
rbind(head(supercell_cell_map, n = 3), tail(supercell_cell_map, n = 3))
#>                      SuperCellID     CellId   Sample
#>                           <char>     <char>   <char>
#> 1: SuperCell_834_Sample_Sample_1     Cell_1 Sample_1
#> 2: SuperCell_974_Sample_Sample_1     Cell_2 Sample_1
#> 3: SuperCell_428_Sample_Sample_1     Cell_3 Sample_1
#> 4:  SuperCell_94_Sample_Sample_2 Cell_19998 Sample_2
#> 5:  SuperCell_42_Sample_Sample_2 Cell_19999 Sample_2
#> 6: SuperCell_346_Sample_Sample_2 Cell_20000 Sample_2

7 Mixing cells from different samples in a supercell

If for whatever reason you don’t mind (or perhaps more to the point want) each supercell to contain cells from different biological samples, you still need to have the sample column in your data.table. However, what you need to do is essentially set the value in the column to exactly one unique value. That way, SuperCellCyto will treat all cells as coming from one sample.

Just note, the parallel processing feature in SuperCellCyto won’t work for this as you will essentially only have 1 sample and nothing for SuperCellCyto to parallelise.

8 I have more cells than RAM in my computer

Is your dataset so huge that you are constantly running out of RAM when generating supercells? This thing happens and we have a solution for it.

Since supercells are generated for each sample independent of others you can easily break up the process. For example:

  1. Load up a subset of the samples (say 1-10).
  2. Generate supercells for those samples.
  3. Save the output using the qs package.
  4. Extract the supercell_expression_matrix and supercell_cell_map, and export them out as a csv file using data.table’s fwrite function.
  5. Load another sets of samples (say 11-20), rinse and repeat step 2-4.

Once you have processed all the samples, you can then load all supercell_expression_matrix and supercell_cell_map csv files and analyse them.

If you want to regenerate the supercells using different gamma values, load the relevant output saved using the qs package and the relevant data (remember to note which output belongs to which sets of samples!), and run recomputeSupercells function.

9 Session information

sessionInfo()
#> R version 4.5.1 Patched (2025-09-10 r88807)
#> Platform: aarch64-apple-darwin20
#> Running under: macOS Ventura 13.7.7
#> 
#> Matrix products: default
#> BLAS:   /Library/Frameworks/R.framework/Versions/4.5-arm64/Resources/lib/libRblas.0.dylib 
#> LAPACK: /Library/Frameworks/R.framework/Versions/4.5-arm64/Resources/lib/libRlapack.dylib;  LAPACK version 3.12.1
#> 
#> locale:
#> [1] C/en_US.UTF-8/en_US.UTF-8/C/en_US.UTF-8/en_US.UTF-8
#> 
#> time zone: America/New_York
#> tzcode source: internal
#> 
#> attached base packages:
#> [1] parallel  stats     graphics  grDevices utils     datasets  methods  
#> [8] base     
#> 
#> other attached packages:
#> [1] BiocParallel_1.43.4  SuperCellCyto_0.99.3 BiocStyle_2.37.1    
#> 
#> loaded via a namespace (and not attached):
#>  [1] cli_3.6.5           knitr_1.50          rlang_1.1.6        
#>  [4] xfun_0.53           jsonlite_2.0.0      data.table_1.17.8  
#>  [7] plyr_1.8.9          htmltools_0.5.8.1   sass_0.4.10        
#> [10] rmarkdown_2.30      grid_4.5.1          evaluate_1.0.5     
#> [13] jquerylib_0.1.4     fastmap_1.2.0       yaml_2.3.10        
#> [16] lifecycle_1.0.4     bookdown_0.45       BiocManager_1.30.26
#> [19] compiler_4.5.1      igraph_2.2.0        codetools_0.2-20   
#> [22] Rcpp_1.1.0          pkgconfig_2.0.3     lattice_0.22-7     
#> [25] digest_0.6.37       SuperCell_1.0.1     R6_2.6.1           
#> [28] RANN_2.6.2          magrittr_2.0.4      bslib_0.9.0        
#> [31] Matrix_1.7-4        tools_4.5.1         cachem_1.1.0