-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' of github.com:openproblems-bio/task_grn_inference
- Loading branch information
Showing
18 changed files
with
227 additions
and
139 deletions.
There are no files selected for viewing
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
#!/bin/bash | ||
|
||
RUN_ID="process_multiomics" | ||
# resources_dir="s3://openproblems-data/resources/grn/" | ||
resources_dir="resources" | ||
publish_dir="${resources_dir}/results/${RUN_ID}" | ||
|
||
cat > ./params/${RUN_ID}.yaml << HERE | ||
param_list: | ||
- id: process_multiomics | ||
multiome_counts: $resources_dir/datasets_raw/multiome_counts.h5ad | ||
output_state: "state.yaml" | ||
publish_dir: "$publish_dir" | ||
HERE | ||
|
||
|
||
# ./tw-windows-x86_64.exe launch https://github.com/openproblems-bio/task_grn_inference.git ` | ||
# --revision build/main --pull-latest ` | ||
# --main-script target/nextflow/workflows/process_multiomics/main.nf ` | ||
# --workspace 53907369739130 --compute-env 6TeIFgV5OY4pJCk8I0bfOh ` | ||
# --params-file ./params/process_multiomics.yaml ` | ||
# --config src/common/nextflow_helpers/labels_tw.config | ||
|
||
|
||
nextflow run . \ | ||
-main-script target/nextflow/workflows/process_multiomics/main.nf \ | ||
-profile docker -with-trace -c src/common/nextflow_helpers/labels_ci.config \ | ||
-params-file params/${RUN_ID}.yaml |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
#!/bin/bash | ||
|
||
RUN_ID="process_perturbation" | ||
resources_dir="s3://openproblems-data/resources/grn/" | ||
publish_dir="${resources_dir}/results/${RUN_ID}" | ||
|
||
cat > ./params/${RUN_ID}.yaml << HERE | ||
param_list: | ||
- id: test_process_perturatbion | ||
perturbation_counts: $resources_dir/datasets_raw/perturbation_counts.h5ad | ||
output_state: "state.yaml" | ||
publish_dir: "$publish_dir" | ||
HERE | ||
|
||
|
||
# ./tw-windows-x86_64.exe launch https://github.com/openproblems-bio/task_grn_inference.git ` | ||
# --revision build/main --pull-latest ` | ||
# --main-script target/nextflow/workflows/process_perturbation/main.nf ` | ||
# --workspace 53907369739130 --compute-env 6TeIFgV5OY4pJCk8I0bfOh ` | ||
# --params-file ./params/process_perturbation.yaml ` | ||
# --config src/common/nextflow_helpers/labels_tw.config | ||
|
||
|
||
nextflow run . \ | ||
-main-script target/nextflow/workflows/process_perturbation/main.nf \ | ||
-profile docker -with-trace -c src/common/nextflow_helpers/labels_ci.config \ | ||
-params-file params/${RUN_ID}.yaml |
This file was deleted.
Oops, something went wrong.
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
This file was deleted.
Oops, something went wrong.
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
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
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
|
||
functionality: | ||
name: subset_hvg | ||
namespace: "multiomics" | ||
info: | ||
label: subset_hvg | ||
summary: "Receives multiomics data and subsets it for hvg" | ||
arguments: | ||
- name: --multiomics_rna | ||
type: file | ||
required: true | ||
direction: input | ||
example: resources/grn-benchmark/multiomics_rna.h5ad | ||
- name: --multiomics_atac | ||
type: file | ||
required: true | ||
direction: input | ||
example: resources/grn-benchmark/multiomics_atac.h5ad | ||
|
||
- name: --multiomics_rna_d0_hvg | ||
type: file | ||
required: false | ||
direction: output | ||
example: resources/grn-benchmark/multiomics_rna_d0_hvg.h5ad | ||
- name: --multiomics_atac_d0 | ||
type: file | ||
required: false | ||
direction: output | ||
example: resources/grn-benchmark/multiomics_atac_d0.h5ad | ||
|
||
resources: | ||
- type: python_script | ||
path: script.py | ||
platforms: | ||
- type: docker | ||
image: ghcr.io/openproblems-bio/base_python:1.0.4 | ||
setup: | ||
- type: python | ||
packages: [ scikit-misc ] | ||
|
||
|
||
- type: native | ||
- type: nextflow | ||
directives: | ||
label: [midtime,midmem,midcpu] |
Oops, something went wrong.