Hello All,
I am new to Cumulus and this group. We are trying to run a workflow in AWS using AWS Batch and running into an issue with our jobs. It keeps failing with the following messages:
--
--
In cloudwatch I see:
--
/bin/bash: /var/scratch/fetch_and_run.sh: Is a directory
--
Here is the sample wdl file:
--
task hello {
String addressee = "Cromwell"
command {
echo "Hello ${addressee}! Welcome to Cromwell . . . on AWS!"
}
output {
String message = read_string(stdout())
}
runtime {
}
}
workflow wf_hello {
call hello
output { hello.message }
}
--
Can you please help me with why this might be failing?
Thanks in advance for your assistance!