My Dockerfile (run by a much larger docker-compose): and the relevant code from the docker-compose.yml: The Python code I’m using to check the directory structure: and its output: I don’t understand why the directory structure seen/output by the Dockerfile would be completely different from the directory structure seen/output by my Python file. For some reason, even though the Python code
Tag: directory-structure
Snakemake: Expand Incorrectly Defining Output Folders
I have a workaround based upon this discussion, so I don’t think this problem is especially urgent. However, before applying code to a larger number of folders, I would like to see if I can better understand what went wrong in an earlier version of the code. Here is the Snakemake code: I think that the problem is that the
Not able to import python files needed in main.py
I have this file structure which i am not too sure is considered good practice. here is the directory structure I am trying to import the content of seed.py and wallet_generation.py into my main.py file. But when I try import the files through a relative path ie (../../bitcoinBackend/seed and ../../bitcoinBackend/wallet_generation) I get errors where the files are not recognized. Im