18 months ago by
Netherlands
Galaxy makes clones of these loc files for each revision of each installed tool and does not write content always to the loc file directly in ./tool-data. In older versions of Galaxy it was possible to find all corresponding loc files via the web interface but this has disappeared some time ago. Anyway, you can find the loc files as follows:
cd galaxy ; find tool-data -name all_fasta.loc
cd galaxy ; wc -l $( find tool-data -name "*.loc" )
That will show you all *.loc
files (not .sample, but those that are actively used) and the number of lines in those files.
When I do the following:
~/src/galaxy (dev)✭ ᐅ wc -l $( find tool-data -name "*.loc" ) | grep star_index2
23 tool-data/127.0.0.1/repos/iuc/rgrnastar/5d734e53a0d0/rnastar_index2.loc
25 tool-data/127.0.0.1/repos/iuc/data_manager_star_index_builder/c6bec9468b26/rnastar_index2.loc
23 tool-data/rnastar_index2.loc
There are 2 files with 23 lines and one with 25. This means that there are two entries in the one located at tool-data/127.0.0.1/repos/iuc/data_manager_star_index_builder/c6bec9468b26/rnastar_index2.loc
Youri