Closed conchoecia closed 5 years ago
The first few lines of create_pseudohaploid.sh are:
create_pseudohaploid.sh
#!/bin/sh set -o pipefail
but running the script returned the error set: Illegal option -o pipefail.
set: Illegal option -o pipefail
I changed the first line to:
#!/bin/bash
and everything worked fine. Ubuntu 16.04.
Fixed. Good luck!
The first few lines of
create_pseudohaploid.sh
are:but running the script returned the error
set: Illegal option -o pipefail
.I changed the first line to:
and everything worked fine. Ubuntu 16.04.