Skip to content
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

Extend cell cycle conservation support for zebrafish and C. elegans #22

Merged
merged 3 commits into from
Jan 11, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -146,3 +146,18 @@ To run the benchmark, you can use the following command:
```bash
scripts/run_benchmark/run.sh
```

## Debugging nf-tower runs

The actual benchmark is run on the [nf-tower platform](https://cloud.seqera.io/orgs/openproblems-bio/workspaces/openproblems-bio/watch).
You can find runs related to the batch integration by filtering for `label:task_batch_integration`, selecting a specific run and browsing the outputs.

For debugging purposes, you can download the output of a task run from nf-tower following command:

```bash
common/scripts/fetch_task_run \
--input s3://openproblems-work/work/<process ID>\
--output temp_output
```

You can find the process ID under the "Work directory" section of the Task details.
Comment on lines +149 to +163
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nice! We should port this info to openproblems-bio/docs too! -- added github issue :P

4 changes: 2 additions & 2 deletions src/metrics/cell_cycle_conservation/config.vsh.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ info:
doi: 10.1038/s41592-021-01336-8
links:
homepage: https://scib.readthedocs.io/en/latest/
documentation: https://scib.readthedocs.io/en/latest/api/scib.metrics.silhouette_batch.html
documentation: https://scib.readthedocs.io/en/latest/api/scib.metrics.cell_cycle.html
repository: https://github.com/theislab/scib
min: 0
max: 1
Expand All @@ -43,7 +43,7 @@ engines:
setup:
- type: python
pypi:
- scib==1.1.5
- git+https://github.com/theislab/scib.git@extend_cell_cycle_genes
runners:
- type: executable
- type: nextflow
Expand Down
2 changes: 1 addition & 1 deletion src/metrics/kbet/config.vsh.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ engines:
github: theislab/kBET
- type: python
pypi:
- scib==1.1.5
- scib==1.1.6
- rpy2>=3
- anndata2ri
- scipy<=1.13
Expand Down
Loading