Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
fgvieira committed Jun 15, 2024
1 parent 0928677 commit 37e7e8f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions utils/aria2c/test/Snakefile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ rule test_aria2:
mem_mb=1024,
runtime=30,
wrapper:
"wrapper/utils/aria2c"
"master/utils/aria2c"


rule test_aria2_md5:
Expand All @@ -31,7 +31,7 @@ rule test_aria2_md5:
mem_mb=1024,
runtime=30,
wrapper:
"wrapper/utils/aria2c"
"master/utils/aria2c"


rule test_aria2_file:
Expand All @@ -55,7 +55,7 @@ rule test_aria2_file:
mem_mb=1024,
runtime=30,
wrapper:
"wrapper/utils/aria2c"
"master/utils/aria2c"


### Disabled until there is a way to install 'snakemake-storage-plugin-http' in the test environment
Expand All @@ -77,4 +77,4 @@ rule test_aria2_file:
# mem_mb=1024,
# runtime=30,
# wrapper:
# "wrapper/utils/aria2c"
# "master/utils/aria2c"
2 changes: 1 addition & 1 deletion utils/aria2c/test/common.smk
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ def extract_checksum(infile, **kwargs):

return (
pd.read_csv(infile, sep=" ", index_col=1, header=None, engine="python")
.filter(like=kwargs["file"], axis=0)
.filter(like=kwargs.get("file"), axis=0)
.iloc[0]
.item()
)
Expand Down

0 comments on commit 37e7e8f

Please sign in to comment.