Skip to content

Commit 7c785a6

Browse files
committed
changing default parameters
1 parent 62e72f4 commit 7c785a6

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/methods/scprint/config.vsh.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,14 +64,14 @@ arguments:
6464
- name: --max_len
6565
type: integer
6666
description: The maximum length of the gene sequence.
67-
default: 4000
67+
default: 2000
6868
- name: --infer_matches
6969
type: string
7070
description:
7171
The method to use to infer the matches between the predicted and
7272
true labels.
7373
choices: ["direct", "linear_sum_assignment"]
74-
default: "linear_sum_assignment"
74+
default: "direct"
7575

7676
resources:
7777
- type: python_script
@@ -96,7 +96,7 @@ engines:
9696

9797
runners:
9898
- type: executable
99-
#docker_run_args: --gpus all
99+
# docker_run_args: --gpus all
100100
- type: nextflow
101101
directives:
102102
label: [hightime, highmem, midcpu, gpu, highsharedmem]

src/methods/scprint/script.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"output": "output.h5ad",
2020
"model_name": "v2-medium",
2121
"model": None,
22-
"infer_matches": "linear_sum_assignment",
22+
"infer_matches": "direct",
2323
}
2424
meta = {"name": "scprint"}
2525
## VIASH END

0 commit comments

Comments
 (0)