Kai Zhang

Results 94 comments of Kai Zhang

I had the same issue. This happens when I set "plot_bars_alignment" to "BarsLeft".

Agree. It looks like when applying "BarsLeft", the bars are shifted to the right. I guess a simple fix would be reducing the bar width or spacing to make them...

@cfhammill I'm rewriting my scientific workflow manager based on funflow. Currently I've implemented a DRMAA coordinator (compatible with slurm or sge) that can submit native haskell codes to remote compute...

In funflow the coordinator is used to distribute external tasks. But my coordinator can distribute arbitrary Haskell codes. Because the purpose is different, the interfaces of the two coordinators are...

I'm thinking can we combine funflow and Cloud Haskell together to distribute the workflow?

@cfhammill In case you are still interested, I've developed a prototype that uses Cloud Haskell to distribute workflows. This is an example code: ``` {-# LANGUAGE TemplateHaskell #-} {-# LANGUAGE...

It's good to have a DSL for "external" case. But I would like to have a DSL for ***internal*** case as well. I think both SciFlow and funflow define the...

Disabling compression on scalar values seems to resolve this issue: https://github.com/kaizhang/hdf5-rust/actions/runs/2168782015

I did this in my SnapATAC2 package, in which I created an anndata object without `X` using foreign codes for performance reasons. The "empty" anndata stores base-resolution TN5 insertions in...

I implemented an experimental Rust port of anndata which operates in an out-of-core fashion. Individual elements can be put into memory by enabling cache. See an example here: https://github.com/kaizhang/anndata-rs. I...