Alexis Praga
Alexis Praga
Is there a built-in way to add a new tag from the prompt ? From what I understand, `g` only works with existing tag. Thanks !
Right, that’s what I’ve been doing. Here are 2 suggestions if other people are interested : - add a `G` option to add/modify/set tags by name - with this option,...
The culprit is `org-crypt` (the org-module as a before-save hook with org-crypt). As a temporary fix, I've disabled it in `packages.el` : ```(package! org-crypt :disable t)```
@EFLS Can you comment on the performance issue for a large number of files ? Can you give an estimate on the slowness and a threshold for the number of...
Thank you for the quick and detailed answer !
Thanks for the quick answer. By "crash", I mean the computer freezes and becomes unresponsive. I've monitored memory usage and you are right, I'm running out of memory. Is there...
Hi, It looks like I have a similar issue : submitting SLURM jobs to a given queue results in ` invalid status line: squeue: error: Invalid user: ?` And the...
I’ve tried `user.name = myuser` in `nextflow.config` to no avail. How does `system.getProperty` works ? Relevant code looks to be https://github.com/nextflow-io/nextflow/blob/58748225f9a2b296779f459016537bcf466dc645/src/main/groovy/nextflow/executor/SlurmExecutor.groovy#L121
More debugging info : - the issue does not seem to occur on Nextflow 22.04.0.5697 - With groovy, `println(System.getProperty(user.name))` returns my username as expected
After more testing : - building from source results in version 22.04.5.5708 : works - installing it from nix results in version 22.04.5.5709 : have the issue - running the...