-
Notifications
You must be signed in to change notification settings - Fork 1
Feature/improve id encoding and curated path #20
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
2973586
Prefix IDs with asap in GeoMx workflow
kfang4 5b26d5d
Save curated outputs in different path for GeoMx
kfang4 ee77e25
Prefix IDs with asap in Visium workflow
kfang4 60deab0
Save curated outputs in different path for Visium
kfang4 ddacb5c
Update README generate inputs
kfang4 e5c82db
Update README
kfang4 7f61ba4
Fix typo
kfang4 c00e06a
Update generate_inputs to include release_version arg in README
kfang4 8f047b6
Revert to sample_id since replicate is appended
kfang4 4fef07e
Update wf-common
kfang4 5012fdd
Fix typo
kfang4 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Submodule wf-common
updated
23 files
| +16 −0 | .gitignore | |
| +401 −21 | util/README.md | |
| +0 −0 | util/archive/transfer_raw_data | |
| +398 −0 | util/bucket_validation_utils.py | |
| +201 −0 | util/clean_wdl_raw_buckets | |
| +142 −182 | util/common.py | |
| +807 −85 | util/crn_cloud_collection_summary | |
| +1 −1 | util/data_promotion_diagram.svg | |
| +150 −0 | util/download_raw_bucket_metadata_to_local | |
| +293 −0 | util/generate_dataset_summary_table | |
| +152 −44 | util/generate_inputs | |
| +335 −0 | util/internal_qc_dataset_collection_summary | |
| +5 −6 | util/markdown_generator.py | |
| +253 −0 | util/promote_raw_data | |
| +87 −84 | util/promote_staging_data | |
| +3 −1 | util/requirements.txt | |
| +0 −190 | util/transfer_qc_metadata_and_contributed_data | |
| +90 −28 | util/transfer_qc_metadata_to_raw_bucket | |
| +0 −102 | util/transfer_raw_bucket_metadata_to_local | |
| +161 −0 | util/transfer_release_resources_to_raw_bucket.py | |
| +31 −146 | util/validate_raw_bucket_structure.py | |
| +3 −3 | wdl/structs.wdl | |
| +0 −39 | wdl/tasks/validate_workflow_name.wdl |
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
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
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
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
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
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
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
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
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
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same question as for the scRNA-seq pipeline, is this supposed to be hard-coded (and just updated per release?)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, it's helpful to keep the release version and workflow version history in the GitHub repo. It's rare that the pipeline won't need an update when running new datasets, so usually the
workflow_versionandcrn_release_versionwill both need to be bumped. Also, this is now the new way we'll be storing curated outputs-- in acrn_release_versionfolder instead ofworkflow_versionfolder.