chore: 🏗️ add REDCap data download step to pytask#171
Draft
martonvago wants to merge 3 commits into
Draft
Conversation
martonvago
commented
Jul 24, 2026
|
|
||
| import feasibility_data.common.json as cj | ||
| import feasibility_data.common.redcap as cr | ||
| import feasibility_data.data.redcap.raw as dr |
Collaborator
Author
There was a problem hiding this comment.
These abbreviations are starting to get a bit confusing 😅
martonvago
commented
Jul 24, 2026
| ], | ||
| ) -> None: | ||
| """Download the latest data from all centers to `RAW_REDCAP/<timestamp>.csv.gz`.""" | ||
| for center in [cr.Center.Copenhagen]: |
Collaborator
Author
There was a problem hiding this comment.
This is a nod towards being aware that we need to handle different centers without actually handling them.
martonvago
commented
Jul 24, 2026
| def task_download_data( | ||
| raw_data_dir: Annotated[ | ||
| Path, | ||
| DirectoryNode(root_dir=RAW_REDCAP, pattern="*.csv.gz"), |
Collaborator
Author
There was a problem hiding this comment.
Tells Pytask that this task produces files in the specified directory that match the pattern. Later steps will be triggered by changes in this folder (i.e. file additions).
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
This PR adds the REDCap data download step to Pytask.
Closes #167
Needs a quick review.
Checklist
just run-all