Is there a way to make the ANSI log output wider when running in a non-interactive mode? I’d love to be able to see the full process name and tags. For example, I dispatch my pipelines on an HPC system with SLURM using sbatch
or srun
. The first part of the log has no line-wrapping or truncation. But once it reaches the process execution section, it is always fixed to a width of 80 characters.
I’m aware of the parameter -ansi-log false
, but the progress bar for each process in the ANSI log is really valuable.
I’m guessing this has something to do with sbatch
commands not running in an actual terminal. The closest workaround I have is to create a pseudo-terminal with srun, but that still doesn’t help for running in the background.
srun --pty nextflow run ...
Any suggestions are greatly appreciated!