Fix input path to s3://omic/eureka/prodigy/*.pdb
Some checks failed
ci / test (3.10) (push) Has been cancelled
ci / test (3.11) (push) Has been cancelled
ci / test (3.12) (push) Has been cancelled
ci / test (3.13) (push) Has been cancelled
ci / test (3.9) (push) Has been cancelled
Close stale issues and PRs / stale (push) Has been cancelled
Some checks failed
ci / test (3.10) (push) Has been cancelled
ci / test (3.11) (push) Has been cancelled
ci / test (3.12) (push) Has been cancelled
ci / test (3.13) (push) Has been cancelled
ci / test (3.9) (push) Has been cancelled
Close stale issues and PRs / stale (push) Has been cancelled
This commit is contained in:
1
.gitignore
vendored
1
.gitignore
vendored
@@ -10,4 +10,3 @@ __pycache__/
|
|||||||
.idea/
|
.idea/
|
||||||
*.tmp
|
*.tmp
|
||||||
*.swp
|
*.swp
|
||||||
tests/test_data/dataset.tgz
|
|
||||||
|
|||||||
2
main.nf
2
main.nf
@@ -3,7 +3,7 @@
|
|||||||
nextflow.enable.dsl=2
|
nextflow.enable.dsl=2
|
||||||
|
|
||||||
// Default parameters
|
// Default parameters
|
||||||
params.pdb = 's3://omic/eureka/prodigy/input/*.pdb'
|
params.pdb = 's3://omic/eureka/prodigy/*.pdb'
|
||||||
params.outdir = 's3://omic/eureka/prodigy/output'
|
params.outdir = 's3://omic/eureka/prodigy/output'
|
||||||
params.distance_cutoff = 5.5
|
params.distance_cutoff = 5.5
|
||||||
params.acc_threshold = 0.05
|
params.acc_threshold = 0.05
|
||||||
|
|||||||
@@ -15,7 +15,7 @@ manifest {
|
|||||||
|
|
||||||
// Global default parameters
|
// Global default parameters
|
||||||
params {
|
params {
|
||||||
pdb = 's3://omic/eureka/prodigy/input/*.pdb'
|
pdb = 's3://omic/eureka/prodigy/*.pdb'
|
||||||
outdir = 's3://omic/eureka/prodigy/output'
|
outdir = 's3://omic/eureka/prodigy/output'
|
||||||
distance_cutoff = 5.5
|
distance_cutoff = 5.5
|
||||||
acc_threshold = 0.05
|
acc_threshold = 0.05
|
||||||
|
|||||||
@@ -3,13 +3,13 @@
|
|||||||
"pdb": {
|
"pdb": {
|
||||||
"type": "file",
|
"type": "file",
|
||||||
"description": "Path to input PDB or mmCIF structure file(s) for binding affinity prediction",
|
"description": "Path to input PDB or mmCIF structure file(s) for binding affinity prediction",
|
||||||
"default": "s3://omic/eureka/prodigy/input/*.pdb",
|
"default": "s3://omic/eureka/prodigy/*.pdb",
|
||||||
"required": true,
|
"required": true,
|
||||||
"pipeline_io": "input",
|
"pipeline_io": "input",
|
||||||
"var_name": "params.pdb",
|
"var_name": "params.pdb",
|
||||||
"examples": [
|
"examples": [
|
||||||
"s3://omic/eureka/prodigy/input/3bzd.pdb",
|
"s3://omic/eureka/prodigy/3bzd.pdb",
|
||||||
"s3://omic/eureka/prodigy/input/*.pdb"
|
"s3://omic/eureka/prodigy/*.pdb"
|
||||||
],
|
],
|
||||||
"pattern": ".*\\.(pdb|cif)$",
|
"pattern": ".*\\.(pdb|cif)$",
|
||||||
"enum": [],
|
"enum": [],
|
||||||
|
|||||||
Reference in New Issue
Block a user