Closed nickgladman closed 5 months ago
This doesn't look like an issue in verkko. It's complaining about a stale file handle in your home directory and a bus error typically means the binary changed while the program was running. I suspect something happened with the file system during the run or perhaps the job exceeded a time limit. Either way, you should be able to resume the run with the same command and have snakemake pick up where it left off. FYI, you can also run verkko with --slurm
which will submit jobs to the cluster rather than running them all on the single node you've reserved.
Thank you so much! I'll give that a go. I do have another basic question: when including the --slurm
option, should I remove the following sbatch options or keep them in:
`#SBATCH -N 1
The -N 1
should be OK, I don't think you ever want the -n 96, that's 96 tasks per node, you probably want -c
or --cpus-per-task
. You can request just 1 or 2 cores for the main verkko command you submit which will be a busy wait process that submits all the other computation to the grid.
Idle
Hello once more! Thanks yet again for this great resource. I'm running a new genome with Verkko v2.1 and got this error ~50% through all the steps (based on the log file). I've run this on a smaller genome in SGE without problem so I thought I requested enough resources, but maybe not?
Here is the input script (requested 96 cores and 100 Gb)
This is what halted the process