Skip to content

Commit 37e7e8f

Browse files
committed
Fix typo
1 parent 0928677 commit 37e7e8f

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

utils/aria2c/test/Snakefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ rule test_aria2:
1515
mem_mb=1024,
1616
runtime=30,
1717
wrapper:
18-
"wrapper/utils/aria2c"
18+
"master/utils/aria2c"
1919

2020

2121
rule test_aria2_md5:
@@ -31,7 +31,7 @@ rule test_aria2_md5:
3131
mem_mb=1024,
3232
runtime=30,
3333
wrapper:
34-
"wrapper/utils/aria2c"
34+
"master/utils/aria2c"
3535

3636

3737
rule test_aria2_file:
@@ -55,7 +55,7 @@ rule test_aria2_file:
5555
mem_mb=1024,
5656
runtime=30,
5757
wrapper:
58-
"wrapper/utils/aria2c"
58+
"master/utils/aria2c"
5959

6060

6161
### Disabled until there is a way to install 'snakemake-storage-plugin-http' in the test environment
@@ -77,4 +77,4 @@ rule test_aria2_file:
7777
# mem_mb=1024,
7878
# runtime=30,
7979
# wrapper:
80-
# "wrapper/utils/aria2c"
80+
# "master/utils/aria2c"

utils/aria2c/test/common.smk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ def extract_checksum(infile, **kwargs):
33

44
return (
55
pd.read_csv(infile, sep=" ", index_col=1, header=None, engine="python")
6-
.filter(like=kwargs["file"], axis=0)
6+
.filter(like=kwargs.get("file"), axis=0)
77
.iloc[0]
88
.item()
99
)

0 commit comments

Comments
 (0)