name: Bug report or feature request about: Describe a bug you've seen or make a case for a new feature title: "[BUG] Your bug or feature request" labels: '' assignees: ''
Please briefly describe your problem and what output you expect. If you have a question, please don't use this form. Instead, ask on https://support.bioconductor.org/ using the appropriate tag(s) including one for this package.
Provide some context for your bug report or feature request. This could be the:
Include the code you ran and comments
## prompt an error
stop('hola')
## check the error trace
traceback()
If you copy the lines of code that lead to your error, you can then run reprex::reprex()
which will create a small website with code you can then easily copy-paste here in a way that will be easy to work with later on.
## prompt an error
stop('hola')
#> Error in eval(expr, envir, enclos): hola
## check the error trace
traceback()
#> No traceback available
Remember to include your full R session information.
options(width = 120)
sessioninfo::session_info()
The output of sessioninfo::session_info()
includes relevant GitHub installation information and other details that are missed by sessionInfo()
.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.