-
Notifications
You must be signed in to change notification settings - Fork 19
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
Align result format to what is expected from website #269
Merged
Conversation
This file contains 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
KaiWaldrant
previously approved these changes
Oct 20, 2023
KaiWaldrant
dismissed
their stale review
October 20, 2023 06:41
error in ci test due to changes in script
KaiWaldrant
suggested changes
Oct 20, 2023
@@ -22,7 +24,7 @@ def check_structure(slot_info, adata_slot): | |||
return missing | |||
|
|||
print('Load data', flush=True) | |||
adata = ad.read_h5ad(par['input']).copy() | |||
adata = ad.read_h5ad(par['input'], backed='r') |
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.
Due to this change .X
is not available anymore if it is empty/None and causes an error downstream on line 100:
rcannood
changed the title
wip attempt at storing metadata as part of the pipeline
Generate website result files
Nov 21, 2023
rcannood
changed the title
Generate website result files
Align result format to what is expected from website
Nov 22, 2023
rcannood
added a commit
that referenced
this pull request
Nov 24, 2023
* wip attempt at storing metadata as part of the pipeline * extract scores as yaml * fix metadata storage * undo extract scores changes * make sure check_dataset_schema also works with np.ndarray and pd.core.series.Series * fix is_atomic * simplify types * require less resources * remove unnecessary changes * collect data in separate steps * revert andata import * add trace collectin for seqera platform * refactor get_results * update get_method info * update metric * refactor task_info * WIP workflow transform inf yamls * fix common workflow * remove local trace * update transform workflow cmd * remove view * WIP fix test * update res test scripts * fix test resource script * fix common tests * fix typo * disable api_info comp * add labelsto common configs * add nf_tower test * convert nan to none * wip add normalize results * add normalize function * update workflow * fix adding resources * fix errors in get_results output * add method info * reformat nextflow wf * ignore different normalization methods in the dataset meta * add missing uns fields * clean up script * use solution to check dataset uns * fix comment in script * flatten method info results --------- Co-authored-by: Kai Waldrant <[email protected]>
rcannood
added a commit
that referenced
this pull request
Nov 28, 2023
* WIP cellxgene component * update to specific cellxgene version * Add initial cellxgene comp * small update * add source download componnent * update cellcensus query comp * remove cellcensus_source, rename cellxgene to query_cellxgene_census * use formatter * update component * add todo to test * fix test * remove filter function * Ali (#269) * wip attempt at storing metadata as part of the pipeline * extract scores as yaml * fix metadata storage * undo extract scores changes * make sure check_dataset_schema also works with np.ndarray and pd.core.series.Series * fix is_atomic * simplify types * require less resources * remove unnecessary changes * collect data in separate steps * revert andata import * add trace collectin for seqera platform * refactor get_results * update get_method info * update metric * refactor task_info * WIP workflow transform inf yamls * fix common workflow * remove local trace * update transform workflow cmd * remove view * WIP fix test * update res test scripts * fix test resource script * fix common tests * fix typo * disable api_info comp * add labelsto common configs * add nf_tower test * convert nan to none * wip add normalize results * add normalize function * update workflow * fix adding resources * fix errors in get_results output * add method info * reformat nextflow wf * ignore different normalization methods in the dataset meta * add missing uns fields * clean up script * use solution to check dataset uns * fix comment in script * flatten method info results --------- Co-authored-by: Kai Waldrant <[email protected]> * change namespace * update component --------- Co-authored-by: Robrecht Cannoodt <[email protected]>
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.
Describe your changes
Issue ticket number and link
Closes #xxxx (Replace xxxx with the GitHub issue number)
Checklist before requesting a review
I have performed a self-review of my code
Check the correct box. Does this PR contain:
Proposed changes are described in the CHANGELOG.md
CI Tests succeed and look good!