endrebak.ada

Results 56 issues of endrebak.ada

When using Bullet I always get this error. ``` File "bin/extract_genotypes", line 28, in result = cli.launch() File "/home/endrebak/anaconda3/lib/python3.6/site-packages/bullet/client.py", line 670, in launch self.result.append((ui.prompt, ui.launch())) File "/home/endrebak/anaconda3/lib/python3.6/site-packages/bullet/client.py", line 213, in...

Would you be interested in adding Google Scholar to the sidebar?

I want a simple way to open the javascript console from cvim. I know the console has a keyboard shortcut, but I want a vim-like one, not an emacs-like one....

``` >>> "hi".replace("h", "H") Hi ``` Would be neat if it could take a dict so this worked: ``` >>> "hi".replace({"h": "i", "i": "h"}) ih ``` Or a regex (see...

enhancement

Your library seems like it could take advantage of Cython for greater speedups (but no increase in mem-efficiency). See https://cython.org/

Would it be possible for instant-markdown-d to take a stylesheet as a command line arg and also autoreload when it is changed? Thanks for the great work btw.

I get the error ``` ValueError: supplied range of [0.0, inf] is not finite ``` when doing ``` DataFrameSummary(df)["OR"] ``` on a column with `inf` values. Thanks for the library...

bug

Thanks for ChIPseeker. The biologists I work for always tell me how great these graphs are. I have a small problem though: between different runs of ChIPseeker annobar, the features...

https://github.com/biocore-ntnu/pyranges/issues/167

``` from ncls import NCLS import numpy as np def test_all_containments_both(): starts = np.array([0], dtype=np.int64) ends = np.array([2048], dtype=np.int64) ids = np.array([0], dtype=np.int64) ncls = NCLS(starts, ends, ids) subs, covers...