Results 27 comments of gdurif

Any update on this issue ? same problem with a very simple example. Here is a MWE, the inside box which is not collapsed by default is not rendered when...

With long content (static, not collapsible nor height varying), the part of the body that is outside the screen height is covered by the sidebar background. Example: ```R library(shiny) library(shinydashboard)...

Hi, apparently the issue is with the version of R-Portable (4.0.0). Current version of Rcpp available from CRAN was compiled for 4.0.2 and R 4.0.0 cannot load it. A 4.0.2...

A temporary fix is to install Rcpp from source, e.g. clone or download this `https://github.com/RcppCore/Rcpp.git` at DesktopDeployR project root and run from R-Portable: ```R devtools::install("Rcpp", args = c('--library="./app/library/"')) ``` but...

I get the same problem, any update on this issue ? I hoped switching to PyVCF3 (c.f. #335 ) would solve the issue but apparently not. My bad, in my...

Thank you very much @dridk Could you open the issues on your repository? I encounter #337 even with PyVCF3 (edit: the problem was the VCF file and not pyvcf)

Hi, is there any update on this issue ? If I run the following code on MacOS: ```python from setuptools import Extension from extension_helpers import add_openmp_flags_if_available # create a dummy...

Working on a fix here #42

@lukeolson What is your OS configuration? I tried compiling the following code ```c++ #include #include int main() { #pragma omp parallel printf("Hello from thread %d over %d\n", omp_get_thread_num(), omp_get_num_threads()); }...