-
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.
- Loading branch information
Showing
50 changed files
with
2,099 additions
and
710 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
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 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 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
|
||
type: file | ||
example: 'resources/grn_models/op/collectri.h5ad' | ||
info: | ||
label: prediction | ||
summary: "File indicating the inferred GRN." | ||
file_type: h5ad | ||
slots: | ||
uns: | ||
- type: string | ||
name: dataset_id | ||
description: "A unique identifier for the dataset" | ||
required: true | ||
- type: string | ||
name: method_id | ||
description: "A unique identifier for the inference method" | ||
required: true | ||
- type: DataFrame | ||
name: prediction | ||
description: "Inferred GRNs in the format of source, target, weight" | ||
required: true | ||
|
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 |
---|---|---|
@@ -1,23 +1,26 @@ | ||
__merge__: ../../api/comp_method.yaml | ||
functionality: | ||
name: negative_control | ||
namespace: control_methods | ||
info: | ||
label: Negative control | ||
summary: Source-target links based on random assignment | ||
description: | | ||
Randomly assigns regulatory links to tf-target links with a given tf and target list. This is to perform near random. | ||
|
||
resources: | ||
- type: python_script | ||
path: script.py | ||
- path: main.py | ||
platforms: | ||
name: negative_control | ||
namespace: control_methods | ||
info: | ||
label: Negative control | ||
summary: Source-target links based on random assignment | ||
description: | | ||
Randomly assigns regulatory links to tf-target links with a given tf and target list. This is to perform near random. | ||
resources: | ||
- type: python_script | ||
path: script.py | ||
- path: main.py | ||
engines: | ||
- type: docker | ||
image: ghcr.io/openproblems-bio/base_python:1.0.4 | ||
__merge__: /src/api/base_requirements.yaml | ||
setup: | ||
- type: python | ||
packages: [ ] | ||
runners: | ||
- type: executable | ||
- type: nextflow | ||
directives: | ||
label: [ midtime, highmem, highcpu ] |
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 |
---|---|---|
@@ -1,31 +1,34 @@ | ||
__merge__: ../../api/comp_method.yaml | ||
|
||
functionality: | ||
name: pearson_corr | ||
namespace: control_methods | ||
info: | ||
label: pearson_corr | ||
summary: "Baseline based on correlation" | ||
arguments: | ||
- name: --normalize | ||
type: boolean | ||
default: True | ||
direction: input | ||
|
||
resources: | ||
- type: python_script | ||
path: script.py | ||
name: pearson_corr | ||
namespace: control_methods | ||
info: | ||
label: pearson_corr | ||
summary: "Baseline based on correlation" | ||
arguments: | ||
- name: --normalize | ||
type: boolean | ||
default: True | ||
direction: input | ||
|
||
- path: /src/utils/util.py | ||
dest: util.py | ||
platforms: | ||
resources: | ||
- type: python_script | ||
path: script.py | ||
|
||
- path: /src/utils/util.py | ||
dest: util.py | ||
engines: | ||
- type: docker | ||
image: ghcr.io/openproblems-bio/base_python:1.0.4 | ||
__merge__: /src/api/base_requirements.yaml | ||
setup: | ||
- type: python | ||
# packages: [ magic-impute ] | ||
packages: [ ] | ||
- type: native | ||
runners: | ||
- type: executable | ||
- type: nextflow | ||
directives: | ||
label: [midtime, midmem, midcpu] |
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 |
---|---|---|
@@ -1,26 +1,29 @@ | ||
__merge__: ../../api/comp_method.yaml | ||
|
||
functionality: | ||
name: positive_control | ||
namespace: control_methods | ||
info: | ||
label: positive_control | ||
summary: "Baseline based on correlation" | ||
|
||
resources: | ||
- type: python_script | ||
path: script.py | ||
- path: /src/utils/util.py | ||
dest: util.py | ||
name: positive_control | ||
namespace: control_methods | ||
info: | ||
label: positive_control | ||
summary: "Baseline based on correlation" | ||
|
||
platforms: | ||
resources: | ||
- type: python_script | ||
path: script.py | ||
- path: /src/utils/util.py | ||
dest: util.py | ||
|
||
engines: | ||
- type: docker | ||
image: ghcr.io/openproblems-bio/base_python:1.0.4 | ||
__merge__: /src/api/base_requirements.yaml | ||
setup: | ||
- type: python | ||
# packages: [ magic-impute ] | ||
packages: [ ] | ||
- type: native | ||
runners: | ||
- type: executable | ||
- type: nextflow | ||
directives: | ||
label: [midtime, midmem, midcpu] |
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.
Oops, something went wrong.