Closed uceleste closed 6 years ago
: command not foundstname
: command not foundrt
: command not foundd
We've never seen this and probably cannot help you from here. stname
problem comes from hostname
. rt
might come from sort
, and d
from pwd
. In each case, you are getting only the first two characters. Could this be a wide-character problem? Totally guessing.
My task.sh
looks like this:
$ cat 0-rawreads/build/task.sh
#!/bin/bash
onerror () {
set -vx
echo "FAILURE. Running top in $(pwd) (If you see -terminal database is inaccessible- you are using the python bin-wrapper, so you will not get diagnostic info. No big deal. This process is crashing anyway.)"
rm -f top.txt
which python
which top
env -u LD_LIBRARY_PATH top -b -n 1 >| top.txt &
env -u LD_LIBRARY_PATH top -b -n 1 2>&1
pstree -apl
}
trap onerror ERR
env | sort
echo "HOSTNAME=$(hostname)"
echo "PWD=$(pwd)"
time python2.7 -m pypeflow.do_task /localdisk/scratch/cdunn/repo/FALCON-examples/run/synth0/0-rawreads/build/task.json
Try the python command directly. If that works, then there is a problem with your bash -- maybe an old version of bash? If you solve this, please let us know what you did or learned.
Hi All,
I'm trying to run Falcon Unzip on my already obtained Falcon assembly. This is the error I obtain when I run the run.sh:
This is the ending part of the log file:
Thank you in advance for any advice.