mirror of
https://github.com/galaxyproject/galaxy.git
synced 2026-09-21 13:50:20 +08:00
Don't expose Galaxy's environment to tools unless there is evidence we need to. This should restrict future bugs by limitting what tools are exposed to Galaxy's internals and will fix bugs related to Conda dependencies masking Galaxy - such as #2994. Should fix #2994. Rebased with language and tool best practice fixes thanks to @mvdbeek.
13 lines
160 B
Python
13 lines
160 B
Python
import sys
|
|
|
|
import galaxy.eggs # NOQA
|
|
|
|
|
|
def main():
|
|
with open(sys.argv[1], "w") as f:
|
|
f.write("out_file1")
|
|
|
|
|
|
if __name__ == '__main__':
|
|
main()
|