s3 support for toil-cwl-runner?
See original GitHub issueThe quickstart guide states:
When running a CWL workflow on AWS, input files can be provided either on the local file system or in S3 buckets using s3:// URI references. Final output files will be copied to the local file system of the leader node."
However, I consistently get the error at this point in the code:
"file." % (knownfile, self.pathmapper.mapper(knownfile)[0]))
reporting:
WorkflowException: Input file https://s3.amazonaws.com/<bucket>/<file> (at //s3.amazonaws.com/<bucket>/<file>) not found or is not a regular file.
or, if I use the s3://
URI system I get:
WorkflowException: Input file s3://<bucket>/<file> (at //<bucket>/<file>) not found or is not a regular file.
where <bucket>
and <file>
are obviously filled in with my specific bucket and file.
┆Issue is synchronized with this JIRA Story ┆Issue Number: TOIL-103
Issue Analytics
- State:
- Created 5 years ago
- Comments:13 (6 by maintainers)
Top GitHub Comments
Yes here are my steps. Thanks!
forgot to add my input yaml:
Also is there a command that will terminate the instances after I run
toil destroy-cluster
? This didn’t shut down the instances and I was still billed. Do we manually need to terminate the instances through the aws cli or AWS console?