Job definition error for AWS Batch job #3694
-
Hi, I've been trying to adapt my pipeline to work on AWS Batch but the pipeline keeps on failing and I have some troubles to figure out where the issue is. My goal at the moment is to run the nextflow instance from my computer and send the jobs to AWS batch. When I run my pipeline I get the following error :
with the following command and config
I do not know from which side I should take the problem. Does the issue came from my container ? from how I configured the job definition using this container ? Is it an authentification problem (I have adminRights and it seems like my key is properly read from what I am seeing in my log). The weird thing is that the job properly stage my infile to the bucket as well as writing the work dir but nothing much is coming from it. If someone could share some light on this one, it would be helpful. Also here is the nextflow.log
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
I think the problem is that you have to define a "default" container via |
Beta Was this translation helpful? Give feedback.
I think the problem is that you have to define a "default" container via
process.container
, even if all of your processes are covered viawithName
/withLabel
. Also, not sure ifwithName
/withLabel
are case-sensitive ...