You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if [ -z "${FIJI_PATH}" ]; # Test to see if it was set in the environment
then
# If not set in env, use first script parameter
FIJI_PATH=$1
fi
# Exit if we don't have a FIJI path
if [ ! -d "${FIJI_PATH}" ];
then
echo -e "${RED}ERROR: Specified path to FIJI does not exist. Either set the FIJI_PATH environment variable, or pass the path as the first parameter to the script!${NC}"