Recommend workflow for multiple targets within same project #389
Replies: 1 comment
-
If the paper is a As for multiple sub-pipelines in general, I think we are still working that out, and the discussion is mostly at #297. The When I work with multiple pipelines for the same overall project, I split them into one pipeline per repo or branch, with different branches concurrently running in different parts of the local file system. Otherwise, the nested folder structure makes version control and source file management cumbersome. |
Beta Was this translation helpful? Give feedback.
-
I'm curious what you recommend workflow-wise for large projects. I am currently using
targets
for a research paper. In the paper, I both run an extensive simulation, and then do a fairly involved data analysis. The simulations and data analysis are totally distinct code wise, but I want to keep them in the same repo as the paper manuscript to make paper writing easy. The issue is now that I have two huge, separate "flows" living in the same_targets.R
file, and there are fair number of name collisions, etc, etc.Ideally I'd be able to have subfolders for each flow, but
targets
no longer allows this if I understand correctly (i.e. 1_targets.R
<-> 1 RStudio project) is my understanding. Thoughts on how to organize this?Beta Was this translation helpful? Give feedback.
All reactions