Peter Vegh
Peter Vegh
Thank you for trying out pdf_reports -- did you manage to solve the issue? Unfortunately this package wasn't tested on Windows and there are no plans for this in the...
The pug template refers to the `GLOBALS` variable. One option is adding the image path: ```python import pdf_reports pdf_reports.GLOBALS["avocado"] = "/path/to/avocado.png" ``` Then modify the pug template: ```pug img(style="width:200px; display:block;...
Where did you define `img_files`? This works for me: `pdf_reports.GLOBALS["img_files"] = ["file:///path/to/avocado.png", "file:///path/to/screenshot.png"]` Pug template: ``` each fpath in img_files img(style="width:200px; display:block; margin:0 auto;" src=fpath) ``` 
Great, I'm glad it works now!
I can confirm we have the same issue. [This answer](https://stackoverflow.com/a/49202811/6574993) suggests to prepend the logging command ```python logging.basicConfig( format='%(asctime)s %(message)s', filename="logfile.txt", level=logging.DEBUG) ``` with ```python for handler in logging.root.handlers[:]: logging.root.removeHandler(handler)...
After registration and careful reading of the [EULA](https://www.maxmind.com/en/geolite2/eula), one can download a CSV database: make sure you tick **NO** for _"Old versions of our GeoIP Update program use a different...
Hi, no not at the moment. If you mean file encryption, that's outside the scope of the package, if you mean password-protection then the following applies: the document is generated...
Hi, Thanks & I agree this could be a good enhancement. First implementing the double-arrow feature to make a hexagon, which could be potentially easy (but I need to review...
I had a similar problem recently, where I needed to assemble a circular plasmid. But I used Golden Gate so the problem was finding overhangs with [GoldenHinges](https://github.com/Edinburgh-Genome-Foundry/goldenhinges) (or [design overhangs...
Yes you're right, I got it confused with TmSegmentSelector's parameter min_size and max_size; see here: https://github.com/Edinburgh-Genome-Foundry/DnaWeaver/blob/f72d79f13c3e17501616944ca636aa530a1a6ed9/dnaweaver/SegmentSelector/TmSegmentSelector.py#L28 Defaults are 18 and 22