Closed asenetcky closed 3 weeks ago
Do I even need a modules folder?
I feel like instead of :
project_folder/ └── pipelines └── my_pipeline └── modules ├── my_first_module │ ├── my_first_script.R │ └── my_second_script.R └── my_second_module └── my_first_script.R (forgot to add the .tomls - pretend they're in their respective folders (pipelines/ and modules/)
it should be something like: project_folder/ └── pipelines ├── my_pipeline │ ├── .modules.toml │ ├── my_first_module │ │ ├── my_first_script.R │ │ └── my_second_script.R │ └── my_second_module │ └── my_first_script.R ├── my_second_pipeline │ ├── .modules.toml │ ├── my_first_module │ │ ├── my_first_script.R │ │ └── my_second_script.R │ └── my_second_module │ └── my_first_script.R └── .pipelines.toml
completed via commit 6df36bc03809ccde839f11609a9461a00691ab4b
Do I even need a modules folder?
I feel like instead of :
project_folder/ └── pipelines └── my_pipeline └── modules ├── my_first_module │ ├── my_first_script.R │ └── my_second_script.R └── my_second_module └── my_first_script.R (forgot to add the .tomls - pretend they're in their respective folders (pipelines/ and modules/)
it should be something like: project_folder/ └── pipelines ├── my_pipeline │ ├── .modules.toml │ ├── my_first_module │ │ ├── my_first_script.R │ │ └── my_second_script.R │ └── my_second_module │ └── my_first_script.R ├── my_second_pipeline │ ├── .modules.toml │ ├── my_first_module │ │ ├── my_first_script.R │ │ └── my_second_script.R │ └── my_second_module │ └── my_first_script.R └── .pipelines.toml