Seems to be associated with MPI call here:
|
cmd = ["mpirun", "-np", str(args.np), |
|
"python3", "trim.py", paths.name, processed_files.name, |
|
"--freyja", args.freyja, |
|
"--minimap2", args.minimap2, |
|
"--cutadapt", args.cutadapt, |
|
"--outdir", args.outdir, |
|
"--indir", args.indir] |
|
|
|
if args.sendemail: |
|
cmd.append("--sendemail") |
|
|
|
try: |
|
subprocess.check_call(cmd) |
|
except subprocess.CalledProcessError: |
|
sys.stderr.write(f"Error running {' '.join(cmd)}\n") |
Seems to be associated with MPI call here:
gromstole/freyja/process.py
Lines 567 to 581 in 8917d1e