Michael Schubert
Michael Schubert
Related: https://github.com/BioinformaticsFMRP/TCGAbiolinks/issues/516 The annotation at position 640 is now also the canonical transcript in Ensembl, so this should be the "correct" name
Well, also not really. Hence the _probably_ and the question mark. But the more important part is that reading the usage documentation, I've got no idea how to write such...
Drive-by comment for ***Realloc***, ***Free***. Maybe this helps someone. Either [undefine the allocs](https://tolstoy.newcastle.edu.au/R/e2/devel/06/11/1242.html): ```c #include #undef Realloc #define R_Realloc(p,n,t) (t *) R_chk_realloc( (void *)(p), (size_t)((n) * sizeof(t)) ) #include ```...
I'm sorry, this query might not have been entirely clear. Yes, `tracks()` constructs a `Tracks` object in a similar way that `ggplot()` only constructs the `gg ggplot` object without actually...
Thank you for your help! The following works: ```r p = tryCatch(as(tracks(...), "grob"), error = function(e) ggplotGrob(ggplot() + annotate("text", x=1, y=1, label=conditionMessage(e) + theme_void())) plot(p) ```
I see this may be the same issue as https://github.com/stemangiola/tidyHeatmap/issues/116
In my case that would be i) same offset for all samples, but if the offset was determined per sample that would also work
Upon reading the `guide-counter count --help` page again, I realized that I misunderstood what the `--offset-min-fraction` does. In fact, this option already makes it possible to set a minimum amount...
Thanks for your quick answer @tfenne! I should be able to build this locally. Be aware that I'm already using `--exact-match`, so the no-mismatch before 1-mismatch will not affect my...
Loading the libraries in the following order, it makes sense that _ensembldb_ hides _dplyr_ functions: ```r library(dplyr) library(ensembldb) ``` A similar (and a bit less obvious) issue is when using...