-
Hello, I was just wondering whether cooler can merge all single-cell cool files togeter to create a psudo-bulk cool file. Best, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hi @BenxiaHu. The answer is yes! Single-cell You can also do it via the CLI: $ cooler merge `cooler ls example.scool` pseudobulk.cool
$ cooler zoomify --balance pseudobulk.cool # make multi-resolution if desired |
Beta Was this translation helpful? Give feedback.
Hi @BenxiaHu. The answer is yes!
Single-cell
.scool
files contain a cooler data collection for each cell, defined by the unique URIexample.scool::cells/{cell_id}
for each cell ID. Each one of those points to a standard cooler collection, so you can feed them all tomerge_coolers
to produce a pseudo-bulk output file.You can also do it via the CLI: