Hugo Lapré
Hugo Lapré
#### Report an Issue / Request a Feature I'm submitting a (Check one with "x") : - [ ] bug report - [x] feature request *** ##### Issue Severity Classification...
**Stub bugreport, will append to later.** While changing the reader signature a bug was introduced that the sheetnames were incrementally appended to the variable name, instead of to the workbook...
Currently we have custom functions because certain functionality was only introduced in "newer" versions of R. For example the `.list.files.and.directories` function that strips the `.` and `..` entries because the...
#### Report an Issue / Request a Feature I'm submitting a (Check one with "x") : - feature request *** ##### Issue Severity Classification - - 3 - Low #####...
While documenting all functions I discovered a few functions that seem to be unused anywhere. They are not called from other functions and are not exported into the namespace. I'm...
When a parameter_list contains a empty named entry it is deleted by snakefmt upon formatting if there are other entries. Somewhat related to #104. ``` rule foo: input: bar="fileA.data", baz=...
`PyEmu` implements a custom logger to log messages from various parts of the package. Python comes with a `logging` module that provides the same functionality, and more. Also, `PstFrom` is...
I include several altair plots in a Sphinx project, and I wish to set the locale to Dutch. In Jupyter I can use the following to set the locale: ```python...
Done so far: - Make equations inherit from abstract Equation - Add new Equation class that defines abstract equation() method - Make all *Equation classes inherit from the base Equation
Python supports abstract base classes (ABCs) through the [`abc`](https://docs.python.org/3.7/library/abc.html) module in stdlib. This allows you to mark methods that should be overloaded by child classes as such by using the...