Tardi Gradus

Results 29 comments of Tardi Gradus

> something advanced like: > > ``` > for x in {1..1000000}; do > qsub my-job.sh > done > ``` Yes, exactly :-) We have many users who just inherit...

> For this reason, to encourage our community to use array jobs, we even set default per-user job/submission limits, so we don't get spammed by non-array jobs, e.g. via `MaxSubmitJobsPerUser`...

I'm glad to see this going forward. > The main thing I'm wondering is, how do you specify resources for array jobs? If people could chime in for their executor,...

As a local fix, in the file ```hist.py``` in my ```venv``` I have replaced the line ``` f"{bin_edges[k]:+.2e} - {bin_edges[k+1]:+.2e}" ``` with ``` f"{bin_edges[k]:>6.2f} - {bin_edges[k+1]:>6.2f}" ```

[snip (11 lines)] > This however would break the group job feature when dealing with pipes in group jobs. It would, however, be a remedy for your case and one...

Could you elaborate on how stage-in / -out might alleviate the problem which job arrays address? BTW: Nextflow's [support for job arrays](https://github.com/nextflow-io/nextflow/pull/3892) seems to be progressing.

Thanks. I missed the initial, incorrect solution, but the current one works. However, I also have a similar problem with my ```abbrev_defs``` file, which by default is ```~/.emacs.d/abbrev_defs```, if ```~/.emacs.d```...

Moreover, how is stuff dealt with in general which should be the independent of the profile? Abbreviations are one thing I probably want the same across profiles (I see that...

Sorry, I didn't read the documentation carefully enough and didn't spot ```--format```. I almost wrote that it would be nice to be able to configure the output, so it's great...