-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Geneformer #472
Geneformer #472
Comments
@PetrKralCZ Can you summarize here what the problem is with the draft easyconfig for Geneformer? |
@PetrKralCZ We should look into implementing support for Maybe it's better to use Implementing support for
def fetch_step(...):
source_deps = self.cfg['source_deps']
pre_fetch_env = None
# load modules for source dependencies (if any)
if source_deps:
pre_fetch_env = copy.deepcopy(os.environ)
source_deps_mod_names = ...
self.modules_tool.load(source_deps_mod_names)
... # current body of fetch_step
# restore environment (unload source dependency modules)
if pre_fetch_env:
restore_env(pre_fetch_env) To facilitate getting the module names for the source dependencies, it's probably easiest to update the Do let me know if you need any further help with this! |
foss/2023a
PythonBundle
The text was updated successfully, but these errors were encountered: