Features:
- Add the argument `inplace` to AnnData `subset` function. As a result, if you
want to perform out-of-place subset, you need to set `inplace=False` explicitly.
Before you just need to set the `out` parameter. The benefit of this change
is that you can save the subset in memory by setting `out=None, inplace=False`,
which cannot be achieved before.
- Use only the unique TSSs instead of all TSSs read from the GTF file in `metrics.tsse` calculation.
Bugs fixed:
- Fix 252: `tl.spectral` does not raise an error when the input matrix is in
compressed column format, whereas it should expect a compressed sparse row format.
- Fix a bug in `pp.import_data` which produces incorrect duplication rates when
the input data contains mitochondrial reads.