generated from sourmash-bio/sourmash_plugin_template
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
MRG: try using
sourmash_utils
functions. (#15)
* try using new sourmash_utils stuff * add sourmash_utils as a dep * upd sourmash utils usage * refactor around sourmash_utils * bump version * fix CI
- Loading branch information
Showing
6 changed files
with
47 additions
and
58 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -47,4 +47,4 @@ jobs: | |
|
||
- name: build examples | ||
shell: bash -l {0} | ||
run: make cleanrun | ||
run: make cleanall |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,13 +3,13 @@ name = "sourmash_plugin_pangenomics" | |
description = "sourmash plugin to do pangenomics." | ||
readme = "README.md" | ||
requires-python = ">=3.10" | ||
version = "0.2" | ||
version = "0.2.1" | ||
authors = [ | ||
{name = "Colton Baumler", email = "[email protected]"}, | ||
{name = "Titus Brown", email = "[email protected]"}, | ||
] | ||
|
||
dependencies = ["sourmash>=4.8.8,<5"] | ||
dependencies = ["sourmash>=4.8.8,<5", "sourmash_utils>=0.2"] | ||
|
||
[metadata] | ||
license = { text = "BSD 3-Clause License" } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,8 @@ | ||
.PHONY: all clean cleanall | ||
all: | ||
snakemake -c 4 -p | ||
|
||
cleanall: | ||
clean: | ||
snakemake -c 4 --delete-all-output | ||
snakemake -c 4 -p | ||
|
||
cleanall: clean all |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters