Iakov Davydov

Results 14 issues of Iakov Davydov

Hi, I've discovered an obscure issue. `birth_death_tree` results are changing if `numpy.save` was used in the code. You need two mostly identical files `1.py` and `2.py`: ```python # 1.py import...

In the documentation, `extract_tree_with_taxa` and `extract_tree_with_taxa_labels` have parameters `is_apply_filter_to_leaf_nodes` and `is_apply_filter_to_internal_nodes`. In reality there are no such parameters, if you are trying to call: ``` subtree = t.extract_tree_with_taxa_labels([...], is_apply_filter_to_leaf_nodes=True) ```...

When calling nested functions, the error is reported in the outer function `outer_f()`, while it happens in the inner function `inner_f()`. In complex cases this is very difficult to debug....

Hi, Looking at the source code, it seems to me that parallelization beyond a single node is currently not supported for Tabular by autogluon. I didn't find an issue dedicated...

enhancement
module: tabular
feature: distributed

Hi, I would like to show canvas on the mainScreen (`hs.screen.mainScreen`). Unfortunately, canvas is always created on the same screen (I'd guess primary screen). Here's the code I'm using: ```lua...

Hi, In our settings there is often a need to read a `.gctx` file from a non-file (i.e. python file object). Currently it is not possible with cmapPy. The parse...

### Summary `DESCRIPTION` file has the following line: ``` Remotes: GuangchuangYu/treeio ``` This line forces tools like renv (or pak, I think) to gather the latest treeio from github.com, instead...

**Describe the bug** R doesn't execute `~/.Rprofile` if renv is enabled and `RENV_CONFIG_USER_PROFILE=TRUE` is set in `~/.Renviron`. Background: renv is not supposed to source `~/.Rprofile` by default, but this can...

bug

Normally, when adding two heatmaps with different number of rows, an error is generated. However in this code, a message is outputted instead of an error: ``` r m1 heatmap...

As far as I understand, the following code: `pak::repo_add("foo")` is equivalent to `pak::repo_add(EXTRA='foo')`. This could lead to an unexpected behavior when having something like this: ``` echo "pak::repo_add('foo1')" >> ~/.Rprofile...

feature