I have a luigi pipeline. There is a file where Google Cloud is set as a target location:
Now, there is run_vep() method that calls other ones ultimately ending up calling the following, different run_vep():
There we are using Google Cloud path to access the files, but I want now to access local files instead. Is there a way to change where luigi looks for files temporarily? The thing is that I have two locations for where luigi should get the files and need both of them to be accessible instead of just one or the other. How could this issue be handled in luigi?