Replies: 1 comment 2 replies
-
Will
|
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Came across some difficulties trying to get the workflow files (e.g.
config/
,workflow/
, andresources/
) properly packaged up when building with poetry/pyproject, specifically when the workflow exists in the root directory of the repository.In order to have the files included in the build package, they need to be in the package sub-directory. One workaround was to create symlinks in the root directory. I've done this in funcmasker-flex.
Let me know what you guys think about this or if there is another way to do this. The workflow files existing as symlinks is not ideal, and means that the repository doesn't automatically get included in the snakemake workflow catalog
A hacky fix that could allow the workflow files to exist in the main directory (and not be symlinks) could be to move/copy the files to the package directory just before building..
Beta Was this translation helpful? Give feedback.
All reactions