Bill Flynn
Bill Flynn
Any updates on this issue? Snooped around the dev branch and it looks like it's still custom formatting rather than using `pyyaml` or another package. Currently getting around it by...
Similarly, there is unexpected behavior for evaluating functions at asymptotes: ``` >>> x = Symbol("x") >>> N(cot(x),subs={x: 0}) cot(x) >>> N(cot(x).subs(x, 0)) zoo ```
FWIW, I have this implemented in my personal build and it greatly improves readability for me. > We might want a config option to overcome this as well as a...
Thoughts on specific formatting? A: [citekey1 ] description B: [citekey2] description I've also added configuration options for the following two things: 1. wrapping long lines at specified width (and for...
Agreed. I think the following options should be included: -r, --reverse -o, --order field1[,field2,...] so that these use cases can be supported: pubs list -r pubs list -ir -o author,date...
I'd also argue if changes are coming to `list_cmd`, then citekey justification on listing should be added too (e.g. adding some string formatting to `pretty.py: paper_oneliner`), though this should probably...
@falexwolf Mostly just following along with the Seurat vignettes here using scanpy: * [Demultiplexing with cell hashing](https://satijalab.org/seurat/hashing_vignette.html) * [Multimodal analysis with CITE-seq ADTs](https://satijalab.org/seurat/multimodal_vignette.html) Mostly I'm using [CITE-seq-count](https://github.com/Hoohm/CITE-seq-Count) to generate counts...
@gokceneraslan Hey, sorry for my long silence on this. I've been using @Hoohm's [https://github.com/Hoohm/CITE-seq-Count](CITE-seq-Count) for ADT/HTO tag counting which produces (in recent versions) a 10X v3 style `mtx` directory for...
Any consensus here on how HTO/ADT information should be stored within the AnnData object? Relevant threads: * https://github.com/theislab/anndata/issues/237 * https://github.com/theislab/scanpy/issues/479
I've been using a rough python implementation of Chris McGinnis's MULTIseq demuxing code for all my multiplexed experiments. This algorithm has been incorporated into Seurat as an alternative to their...