Dimred methods preprocessing - #301
Merged
dburkhardt merged 10 commits intoApr 7, 2021
Merged
Conversation
This file should contain standard pre-processing functions used to create variations on different methods
Create a new PHATE variant using Scanpy pre-processing
* master: Update alra.py Update alra.R pre-commit Create alra.R pre-commit Update alra.py Create alra.py Delete alra.py Create alra.py
Member
Author
|
Hmmm...looks like the actions are failing on my repo because phate isn't available https://github.com/lazappi/SingleCellOpenProblems/runs/2237020126?check_suite_focus=true. Not sure why that is because I haven't modified any of the containers but I'll see if I can fix it before making any updates here. |
Member
Author
|
Ok, think I have fixed the PHATE issue (now I understand how things are run). Seems to be running but I'll wait for it to finish before I update here. |
* master: Update README.md Update README.md Update README.md
dburkhardt
self-requested a review
April 5, 2021 18:59
dburkhardt
approved these changes
Apr 5, 2021
dburkhardt
left a comment
Member
There was a problem hiding this comment.
Looks good, I like this contribution. We might like to in the long term think about a way to do more comparisons between available preprocessing methods as described in #310
lazappi
added a commit
to lazappi/openproblems
that referenced
this pull request
Apr 16, 2021
* master: fix region fix nf wkdir use env.BRANCH rm echo BRANCH -> WKDIR for s3 set branch variable in S3 setup job Fix s3 bucket clash Dimred methods preprocessing (openproblems-bio#301) Add trustworthiness score for dimred task (openproblems-bio#258) Add Method SCOT to Multi-modal data Integration Task (openproblems-bio#298) Update README.md Update README.md Update README.md
lazappi
added a commit
to lazappi/openproblems
that referenced
this pull request
Apr 16, 2021
* master: fix region fix nf wkdir use env.BRANCH rm echo BRANCH -> WKDIR for s3 set branch variable in S3 setup job Fix s3 bucket clash Dimred methods preprocessing (openproblems-bio#301) Add trustworthiness score for dimred task (openproblems-bio#258) Add Method SCOT to Multi-modal data Integration Task (openproblems-bio#298) Update README.md Update README.md Update README.md
lazappi
added a commit
to lazappi/openproblems
that referenced
this pull request
Apr 16, 2021
* master: fix region fix nf wkdir use env.BRANCH rm echo BRANCH -> WKDIR for s3 set branch variable in S3 setup job Fix s3 bucket clash Dimred methods preprocessing (openproblems-bio#301) Add trustworthiness score for dimred task (openproblems-bio#258) Add Method SCOT to Multi-modal data Integration Task (openproblems-bio#298) Update README.md Update README.md Update README.md
lazappi
added a commit
to lazappi/openproblems
that referenced
this pull request
May 12, 2021
…ction * dimred-methods: (34 commits) Update alra.py (openproblems-bio#304) updated template for PR with PR evaluation checks (openproblems-bio#314) pre-commit Fix preprocessing Fix preprocessing Add new preprocessing Add new preprocessing fix region fix nf wkdir use env.BRANCH rm echo BRANCH -> WKDIR for s3 set branch variable in S3 setup job Fix s3 bucket clash Dimred methods preprocessing (openproblems-bio#301) Add trustworthiness score for dimred task (openproblems-bio#258) Add Method SCOT to Multi-modal data Integration Task (openproblems-bio#298) Change batch size to 1k cells for aff. matrix Add preprocessing Fix some small bugs ...
rcannood
pushed a commit
that referenced
this pull request
Sep 4, 2024
* Add nf-tower cli for dataset loader * add mising directive labels for dataset loader * add missing directive labels process datasets * remove space in file name * update s3 bucket * increase yaml limit to 5mb * Fix dataset schema validation and remove unnecessary code to fix meta file size * Update dataset schema file path in config.vsh.yaml and main.nf * Add script for processing datasets on nf-tower in bat_int * Remove dataset_schema input from config.vsh.yaml * Add output_task_info to workflow configuration * Update publish directory in process_datasets.sh for bat_int * Update denoising process_datasets wf * Add dimensionality reduction dataset processing script and configuration files for nf-tower * Add label projection nf-tower scripts * add nf-tower scripts match_modalities * Add nf-tower scripts and configuration files for processing and running benchmark in predict_modality workflow * Add dataset info fields to benchmark API files
rcannood
pushed a commit
that referenced
this pull request
Sep 4, 2024
* Add nf-tower cli for dataset loader * add mising directive labels for dataset loader * add missing directive labels process datasets * remove space in file name * update s3 bucket * increase yaml limit to 5mb * Fix dataset schema validation and remove unnecessary code to fix meta file size * Update dataset schema file path in config.vsh.yaml and main.nf * Add script for processing datasets on nf-tower in bat_int * Remove dataset_schema input from config.vsh.yaml * Add output_task_info to workflow configuration * Update publish directory in process_datasets.sh for bat_int * Update denoising process_datasets wf * Add dimensionality reduction dataset processing script and configuration files for nf-tower * Add label projection nf-tower scripts * add nf-tower scripts match_modalities * Add nf-tower scripts and configuration files for processing and running benchmark in predict_modality workflow * Add dataset info fields to benchmark API files Former-commit-id: cc1fd42
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.
Submission type
Take 2 at adding standard pre-processing to the dimensionality (2D) task, replacing #289.
This submission modifies the dimensionality reduction (2D) task to include a script with standard pre-processing functions for use by methods (See #279). These should store a transformed expression matrix in
adata.Xand a higher dimensional embedding inadata.obsm['X_input']which is then used as the input for (most) methods.preprocessing.pyfunction that has pre-processing functions (one currently)Testing
Submission guidelines