Is your feature request related to a problem? Please describe
I'm not entirely sure why this line is used on gtdbtk/classifywf module:
|
export GTDBTK_DATA_PATH="\$(find -L ${db} -name 'metadata' -type d -exec dirname {} \\;)" |
export GTDBTK_DATA_PATH="\$(find -L ${db} -name 'metadata' -type d -exec dirname {} \\;)"
It recursively searches the directory and takes way longer than it should.
Describe the solution you'd like
Why not just use?
export GTDBTK_DATA_PATH="${db}"
Describe alternatives you've considered
I can have my own local copy but I guess I'm trying to understand why dev added this in the first place. What edge case was this solving?
Additional context
No response