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

Increase subsample dimensions #392

Merged
merged 3 commits into from
Mar 6, 2024
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
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ param_list:
dataset_organism: mus_musculus

normalization_methods: [log_cp10k]
n_obs: 600
n_vars: 1500
output_dataset: '\$id/dataset.h5ad'
output_meta: '\$id/dataset_metadata.yaml'
output_state: '\$id/state.yaml'
Expand All @@ -39,6 +41,7 @@ HERE

nextflow run . \
-main-script target/nextflow/datasets/workflows/process_cellxgene_census/main.nf \
-c src/wf_utils/labels_ci.config \
-profile docker \
-params-file "/tmp/params.yaml"

Expand Down
4 changes: 3 additions & 1 deletion src/datasets/resource_test_scripts/pancreas.sh
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,8 @@ nextflow run . \
--seed 123 \
--normalization_methods log_cp10k \
--do_subsample true \
--n_obs 600 \
--n_var 1500 \
--output_raw '$id/raw.h5ad' \
--output_normalized '$id/normalized.h5ad' \
--output_hvg '$id/hvg.h5ad' \
Expand All @@ -56,4 +58,4 @@ rm -r $DATASET_DIR/temp_*
src/tasks/batch_integration/resources_test_scripts/process.sh
src/tasks/denoising/resources_test_scripts/pancreas.sh
src/tasks/dimensionality_reduction/resources_test_scripts/pancreas.sh
src/tasks/label_projection/resources_test_scripts/pancreas.sh
src/tasks/label_projection/resources_test_scripts/pancreas.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
# use metric api spec
__merge__: ../../api/comp_metric_embedding.yaml
functionality:
status: disabled
name: cell_cycle_conservation
info:
metrics:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ functionality:
- name: batch_integration/transformers/embed_to_graph
- name: batch_integration/metrics/asw_batch
- name: batch_integration/metrics/asw_label
# - name: batch_integration/metrics/cell_cycle_conservation
- name: batch_integration/metrics/cell_cycle_conservation
- name: batch_integration/metrics/clustering_overlap
- name: batch_integration/metrics/graph_connectivity
- name: batch_integration/metrics/hvg_overlap
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ workflow run_wf {
metrics = [
asw_batch,
asw_label,
// cell_cycle_conservation,
cell_cycle_conservation,
clustering_overlap,
graph_connectivity,
hvg_overlap,
Expand Down