Skip to content

Commit

Permalink
chore: renaming
Browse files Browse the repository at this point in the history
  • Loading branch information
bilalshaikh42 committed May 30, 2024
1 parent 635108c commit a62828f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
id: release
with:
release-type: python
package-name: snakemake-storage-plugin-s3
package-name: snakemake-storage-plugin-deeporigin

publish:
runs-on: ubuntu-latest
Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
[tool.poetry]
name = "snakemake-storage-plugin-s3"
name = "snakemake-storage-plugin-deeporigin"
version = "0.2.11"
description = "A Snakemake storage plugin for S3 API storage (AWS S3, MinIO, etc.)"
authors = ["Johannes Koester <johannes.koester@uni-due.de>"]
authors = ["Bilal Shaikh <bilalshaikh42@gmail.com>"]
readme = "README.md"
repository = "https://github.com/snakemake/snakemake-storage-plugin-s3"
repository = "https://github.com/formiclabs/snakemake-storage-plugin-deeporigin"
documentation = "https://snakemake.github.io/snakemake-plugin-catalog/plugins/storage/s3.html"
license = "MIT"
keywords = ["snakemake", "plugin", "storage", "s3"]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -353,7 +353,7 @@ def list_candidate_matches(self) -> Iterable[str]:
# The method has to return concretized queries without any remaining wildcards.
prefix = get_constant_prefix(self.query)
if prefix.startswith(self.bucket):
prefix = prefix[len(self.bucket) :]
prefix = prefix[len(self.bucket):]
return (item.key for item in self.s3bucket().objects.filter(Prefix=prefix))
else:
raise WorkflowError(
Expand Down

0 comments on commit a62828f

Please sign in to comment.