I'd like to run MetaEuk on hundreds of eukaryotic genome assemblies using AWS but the cost for writing to disk on EFS is extremely expensive. The alternative is to use an s3 bucket for temporary storage. However, this currently isn't possible with MetaEuk because it creates a symlink called "latest" in temporary which isn't support on s3 since it's not a traditional file system even when mounted (e.g., you can't create symlinks, remove files, or edit files once they are created w/ the latter being possible using the aws cli).
Would it be possible to make the temporary files more "s3 friendly" by creating an option to not create any symlinks in temporary directory (also not edit or remove files once they are created)?
Also, unrelated questions while I have your attention. If you run the following command:
metaeuk easy-predict ${FASTA} ${DB} ${OUTPUT_DIRECTORY} ${TMP} where FASTA is a genome assembly fasta and DB is MMseqs2 protein database, does the input fasta file get converted to a MMseqs2 database in the backend?