File tree Expand file tree Collapse file tree 2 files changed +11
-12
lines changed Expand file tree Collapse file tree 2 files changed +11
-12
lines changed Original file line number Diff line number Diff line change @@ -72,9 +72,17 @@ def chatgpt() -> object:
72
72
73
73
74
74
@app .command ()
75
- def seqcol () -> object :
76
- from omnipy_examples .seqcol import seqcol_tests
77
- return seqcol_tests .run ()
75
+ def seqcol (owner : str = 'refgenie' ,
76
+ repo : str = 'refget' ,
77
+ branch : str = 'dev' ,
78
+ path : Path = Path ('test_fasta/test_fasta_digests.json' )) -> object :
79
+ from omnipy_examples .seqcol import seqcol_digest_check
80
+ return seqcol_digest_check .run (
81
+ owner = owner ,
82
+ repo = repo ,
83
+ branch = branch ,
84
+ path = path ,
85
+ )
78
86
79
87
80
88
@app .callback ()
Original file line number Diff line number Diff line change @@ -325,12 +325,3 @@ def persist_seqcol_digests_on_target(
325
325
def seqcol_digest_check (owner : str , repo : str , branch : str ,
326
326
path : Path ) -> SeqColDigestTargetDataset :
327
327
...
328
-
329
-
330
- # Running the flow
331
- if __name__ == '__main__' :
332
- seqcol_digest_check .run (
333
- owner = 'refgenie' ,
334
- repo = 'refget' ,
335
- branch = 'dev' ,
336
- path = Path ('test_fasta/test_fasta_digests.json' ))
You can’t perform that action at this time.
0 commit comments