Sounds good. The critical thing that needs to be ensured is that the correct
version of each file is always used and that nothing bad happens if someone
performs e.g. a new preprocessor run while another experiment is running. I
would suggest using a hash signature mechanism for this: have a cache directory
somewhere where files can be indexed by md5 or sha1 hashes, and use these hash
values to refer to the correct file.
I would avoid using symbolic links explicitly in the experiment directory since
that hurts relocatability. Rather, I'd have a command like "fetch
aasg2525afasfawtn2j output.sas" in the experiment running script where the first
argument is the hash key and the second argument is the destination file we want
to have, and then the link is only generated when the experiment is run and
removed afterwards.
Am I making sense?
|