-
Notifications
You must be signed in to change notification settings - Fork 4
remote-job-local-storage-prefix
gets parsed in local context
#22
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
Comments
This bug specifically prevents this snippet from the documentation from working:
|
From the help text:
But I agree, the example in the docs here should explain that as well. This is done here now: #27 |
Actually the masking seems to never have properly worked. Hence, I have now changed the behavior into the more robust approach to always only expand the vars in this particular argument within the remote job: snakemake/snakemake#3222. |
…x within the remote job, not the main snakemake job (#3222) fixes #3049, snakemake/snakemake-storage-plugin-fs#22 ### QC <!-- Make sure that you can tick the boxes below. --> * [x] The PR contains a test case for the changes or the changes are already covered by an existing test case. * [x] The documentation (`docs/`) is updated to reflect the changes or this is not necessary (e.g. if the change does neither modify the language nor the behavior or functionalities of Snakemake). <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit - **New Features** - No new features introduced. - **Bug Fixes** - Clarified help text for the `--remote-job-local-storage-prefix` argument. - **Chores** - Minor formatting adjustments and removal of unnecessary comments in the argument parser. <!-- end of auto-generated comment: release notes by coderabbit.ai -->
In our cluster environment the job specific tmp directory is accessible through both
$MXQ_JOB_TMPDIR
and$TMPDIR
. The first one doesn't exist in the local context, the second one points to/scratch/local
locally.With
files are copied to
/scratch/local
while with
files land in the correct location
The text was updated successfully, but these errors were encountered: